Merge pull request #95262 from NixOS/haskell-updates

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

authored by Peter Simons and committed by GitHub 00a9d3f2 1f2c19f1

+1735 -901
+1 -1
pkgs/development/compilers/ghc/8.10.1.nix
··· 99 name = "${targetPrefix}ghc-${version}"; 100 101 src = fetchurl { 102 - url = "https://downloads.haskell.org/ghc/8.10.1/ghc-${version}-src.tar.xz"; 103 sha256 = "1xgdl6ig5jzli3bg054vfryfkg0y6wggf68g66c32sr67bw0ffsf"; 104 }; 105
··· 99 name = "${targetPrefix}ghc-${version}"; 100 101 src = fetchurl { 102 + url = "https://downloads.haskell.org/ghc/${version}/ghc-${version}-src.tar.xz"; 103 sha256 = "1xgdl6ig5jzli3bg054vfryfkg0y6wggf68g66c32sr67bw0ffsf"; 104 }; 105
+247
pkgs/development/compilers/ghc/8.10.2.nix
···
··· 1 + { stdenv, pkgsBuildTarget, targetPackages 2 + 3 + # build-tools 4 + , bootPkgs 5 + , autoconf, automake, coreutils, fetchurl, perl, python3, m4, sphinx 6 + , bash 7 + 8 + , libiconv ? null, ncurses 9 + 10 + , # GHC can be built with system libffi or a bundled one. 11 + libffi ? null 12 + 13 + , useLLVM ? !stdenv.targetPlatform.isx86 14 + , # LLVM is conceptually a run-time-only depedendency, but for 15 + # non-x86, we need LLVM to bootstrap later stages, so it becomes a 16 + # build-time dependency too. 17 + buildLlvmPackages, llvmPackages 18 + 19 + , # If enabled, GHC will be built with the GPL-free but slower integer-simple 20 + # library instead of the faster but GPLed integer-gmp library. 21 + enableIntegerSimple ? !(stdenv.lib.any (stdenv.lib.meta.platformMatch stdenv.hostPlatform) gmp.meta.platforms), gmp 22 + 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. 38 + ghcFlavour ? stdenv.lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) 39 + (if useLLVM then "perf-cross" else "perf-cross-ncg") 40 + 41 + , # Whether to disable the large address space allocator 42 + # necessary fix for iOS: https://www.reddit.com/r/haskell/comments/4ttdz1/building_an_osxi386_to_iosarm64_cross_compiler/d5qvd67/ 43 + disableLargeAddressSpace ? stdenv.targetPlatform.isDarwin && stdenv.targetPlatform.isAarch64 44 + }: 45 + 46 + assert !enableIntegerSimple -> gmp != null; 47 + 48 + let 49 + inherit (stdenv) buildPlatform hostPlatform targetPlatform; 50 + 51 + inherit (bootPkgs) ghc; 52 + 53 + # TODO(@Ericson2314) Make unconditional 54 + targetPrefix = stdenv.lib.optionalString 55 + (targetPlatform != hostPlatform) 56 + "${targetPlatform.config}-"; 57 + 58 + buildMK = '' 59 + BuildFlavour = ${ghcFlavour} 60 + ifneq \"\$(BuildFlavour)\" \"\" 61 + include mk/flavours/\$(BuildFlavour).mk 62 + endif 63 + DYNAMIC_GHC_PROGRAMS = ${if enableShared then "YES" else "NO"} 64 + INTEGER_LIBRARY = ${if enableIntegerSimple then "integer-simple" else "integer-gmp"} 65 + '' + stdenv.lib.optionalString (targetPlatform != hostPlatform) '' 66 + Stage1Only = ${if targetPlatform.system == hostPlatform.system then "NO" else "YES"} 67 + CrossCompilePrefix = ${targetPrefix} 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 75 + GhcRtsHcOpts += -fPIC 76 + '' + stdenv.lib.optionalString targetPlatform.useAndroidPrebuilt '' 77 + EXTRA_CC_OPTS += -std=gnu99 78 + ''; 79 + 80 + # Splicer will pull out correct variations 81 + libDeps = platform: stdenv.lib.optional enableTerminfo ncurses 82 + ++ [libffi] 83 + ++ stdenv.lib.optional (!enableIntegerSimple) gmp 84 + ++ stdenv.lib.optional (platform.libc != "glibc" && !targetPlatform.isWindows) libiconv; 85 + 86 + toolsForTarget = [ 87 + pkgsBuildTarget.targetPackages.stdenv.cc 88 + ] ++ stdenv.lib.optional useLLVM buildLlvmPackages.llvm; 89 + 90 + targetCC = builtins.head toolsForTarget; 91 + 92 + # ld.gold is disabled for musl libc due to https://sourceware.org/bugzilla/show_bug.cgi?id=23856 93 + # see #84670 and #49071 for more background. 94 + useLdGold = targetPlatform.isLinux && !(targetPlatform.useLLVM or false) && !targetPlatform.isMusl; 95 + 96 + in 97 + stdenv.mkDerivation (rec { 98 + version = "8.10.2"; 99 + name = "${targetPrefix}ghc-${version}"; 100 + 101 + src = fetchurl { 102 + url = "https://downloads.haskell.org/ghc/${version}/ghc-${version}-src.tar.xz"; 103 + sha256 = "02w8n085bw38vyp694j0lfk5wcnwkdaj7hhp0saj71x74533lmww"; 104 + }; 105 + 106 + enableParallelBuilding = true; 107 + 108 + outputs = [ "out" "doc" ]; 109 + 110 + postPatch = "patchShebangs ."; 111 + 112 + # GHC is a bit confused on its cross terminology. 113 + preConfigure = '' 114 + for env in $(env | grep '^TARGET_' | sed -E 's|\+?=.*||'); do 115 + export "''${env#TARGET_}=''${!env}" 116 + done 117 + # GHC is a bit confused on its cross terminology, as these would normally be 118 + # the *host* tools. 119 + export CC="${targetCC}/bin/${targetCC.targetPrefix}cc" 120 + export CXX="${targetCC}/bin/${targetCC.targetPrefix}cxx" 121 + # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177 122 + export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${stdenv.lib.optionalString useLdGold ".gold"}" 123 + export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as" 124 + export AR="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ar" 125 + export NM="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}nm" 126 + export RANLIB="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ranlib" 127 + export READELF="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}readelf" 128 + export STRIP="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}strip" 129 + 130 + echo -n "${buildMK}" > mk/build.mk 131 + sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure 132 + '' + stdenv.lib.optionalString (!stdenv.isDarwin) '' 133 + export NIX_LDFLAGS+=" -rpath $out/lib/ghc-${version}" 134 + '' + stdenv.lib.optionalString stdenv.isDarwin '' 135 + export NIX_LDFLAGS+=" -no_dtrace_dof" 136 + '' + stdenv.lib.optionalString targetPlatform.useAndroidPrebuilt '' 137 + sed -i -e '5i ,("armv7a-unknown-linux-androideabi", ("e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64", "cortex-a8", ""))' llvm-targets 138 + '' + stdenv.lib.optionalString targetPlatform.isMusl '' 139 + echo "patching llvm-targets for musl targets..." 140 + echo "Cloning these existing '*-linux-gnu*' targets:" 141 + grep linux-gnu llvm-targets | sed 's/^/ /' 142 + echo "(go go gadget sed)" 143 + sed -i 's,\(^.*linux-\)gnu\(.*\)$,\0\n\1musl\2,' llvm-targets 144 + echo "llvm-targets now contains these '*-linux-musl*' targets:" 145 + grep linux-musl llvm-targets | sed 's/^/ /' 146 + 147 + echo "And now patching to preserve '-musleabi' as done with '-gnueabi'" 148 + # (aclocal.m4 is actual source, but patch configure as well since we don't re-gen) 149 + for x in configure aclocal.m4; do 150 + substituteInPlace $x \ 151 + --replace '*-android*|*-gnueabi*)' \ 152 + '*-android*|*-gnueabi*|*-musleabi*)' 153 + done 154 + ''; 155 + 156 + # TODO(@Ericson2314): Always pass "--target" and always prefix. 157 + configurePlatforms = [ "build" "host" ] 158 + ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target"; 159 + 160 + # `--with` flags for libraries needed for RTS linker 161 + configureFlags = [ 162 + "--datadir=$doc/share/doc/ghc" 163 + "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib" 164 + ] ++ stdenv.lib.optionals (libffi != null) [ 165 + "--with-system-libffi" 166 + "--with-ffi-includes=${targetPackages.libffi.dev}/include" 167 + "--with-ffi-libraries=${targetPackages.libffi.out}/lib" 168 + ] ++ stdenv.lib.optionals (targetPlatform == hostPlatform && !enableIntegerSimple) [ 169 + "--with-gmp-includes=${targetPackages.gmp.dev}/include" 170 + "--with-gmp-libraries=${targetPackages.gmp.out}/lib" 171 + ] ++ stdenv.lib.optionals (targetPlatform == hostPlatform && hostPlatform.libc != "glibc" && !targetPlatform.isWindows) [ 172 + "--with-iconv-includes=${libiconv}/include" 173 + "--with-iconv-libraries=${libiconv}/lib" 174 + ] ++ stdenv.lib.optionals (targetPlatform != hostPlatform) [ 175 + "--enable-bootstrap-with-devel-snapshot" 176 + ] ++ stdenv.lib.optionals useLdGold [ 177 + "CFLAGS=-fuse-ld=gold" 178 + "CONF_GCC_LINKER_OPTS_STAGE1=-fuse-ld=gold" 179 + "CONF_GCC_LINKER_OPTS_STAGE2=-fuse-ld=gold" 180 + ] ++ stdenv.lib.optionals (disableLargeAddressSpace) [ 181 + "--disable-large-address-space" 182 + ]; 183 + 184 + # Make sure we never relax`$PATH` and hooks support for compatibility. 185 + strictDeps = true; 186 + 187 + # Don’t add -liconv to LDFLAGS automatically so that GHC will add it itself. 188 + dontAddExtraLibs = true; 189 + 190 + nativeBuildInputs = [ 191 + perl autoconf automake m4 python3 sphinx 192 + ghc bootPkgs.alex bootPkgs.happy bootPkgs.hscolour 193 + ]; 194 + 195 + # For building runtime libs 196 + depsBuildTarget = toolsForTarget; 197 + 198 + buildInputs = [ perl bash ] ++ (libDeps hostPlatform); 199 + 200 + propagatedBuildInputs = [ targetPackages.stdenv.cc ] 201 + ++ stdenv.lib.optional useLLVM llvmPackages.llvm; 202 + 203 + depsTargetTarget = map stdenv.lib.getDev (libDeps targetPlatform); 204 + depsTargetTargetPropagated = map (stdenv.lib.getOutput "out") (libDeps targetPlatform); 205 + 206 + # required, because otherwise all symbols from HSffi.o are stripped, and 207 + # that in turn causes GHCi to abort 208 + stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!targetPlatform.isDarwin) "--keep-file-symbols"; 209 + 210 + checkTarget = "test"; 211 + 212 + hardeningDisable = [ "format" ] ++ stdenv.lib.optional stdenv.targetPlatform.isMusl "pie"; 213 + 214 + postInstall = '' 215 + # Install the bash completion file. 216 + install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/${targetPrefix}ghc 217 + 218 + # Patch scripts to include "readelf" and "cat" in $PATH. 219 + for i in "$out/bin/"*; do 220 + test ! -h $i || continue 221 + egrep --quiet '^#!' <(head -n 1 $i) || continue 222 + sed -i -e '2i export PATH="$PATH:${stdenv.lib.makeBinPath [ targetPackages.stdenv.cc.bintools coreutils ]}"' $i 223 + done 224 + ''; 225 + 226 + passthru = { 227 + inherit bootPkgs targetPrefix; 228 + 229 + inherit llvmPackages; 230 + inherit enableShared; 231 + 232 + # Our Cabal compiler name 233 + haskellCompilerName = "ghc-${version}"; 234 + }; 235 + 236 + meta = { 237 + homepage = "http://haskell.org/ghc"; 238 + description = "The Glasgow Haskell Compiler"; 239 + maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ]; 240 + inherit (ghc.meta) license platforms; 241 + }; 242 + 243 + } // stdenv.lib.optionalAttrs targetPlatform.useAndroidPrebuilt { 244 + dontStrip = true; 245 + dontPatchELF = true; 246 + noAuditTmpdir = true; 247 + })
+1 -1
pkgs/development/compilers/ghc/8.8.2.nix
··· 94 name = "${targetPrefix}ghc-${version}"; 95 96 src = fetchurl { 97 - url = "https://downloads.haskell.org/ghc/8.8.2/ghc-${version}-src.tar.xz"; 98 sha256 = "02qa6wgjpxgakg7hv4zfdlrx9k7zxa5i02wnr6y9fsv8j16sbkh1"; 99 }; 100
··· 94 name = "${targetPrefix}ghc-${version}"; 95 96 src = fetchurl { 97 + url = "https://downloads.haskell.org/ghc/${version}/ghc-${version}-src.tar.xz"; 98 sha256 = "02qa6wgjpxgakg7hv4zfdlrx9k7zxa5i02wnr6y9fsv8j16sbkh1"; 99 }; 100
+5
pkgs/development/compilers/ghc/head.nix
··· 28 , # If enabled, use -fPIC when compiling static libs. 29 enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform 30 31 , # Whether to build dynamic libs for the standard library (on the target 32 # platform). Static libs are always built. 33 enableShared ? !stdenv.targetPlatform.isWindows && !stdenv.targetPlatform.useiOSPrebuilt ··· 71 HADDOCK_DOCS = NO 72 BUILD_SPHINX_HTML = NO 73 BUILD_SPHINX_PDF = NO 74 '' + stdenv.lib.optionalString enableRelocatedStaticLibs '' 75 GhcLibHcOpts += -fPIC 76 GhcRtsHcOpts += -fPIC
··· 28 , # If enabled, use -fPIC when compiling static libs. 29 enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform 30 31 + # aarch64 outputs otherwise exceed 2GB limit 32 + , enableProfiledLibs ? !stdenv.targetPlatform.isAarch64 33 + 34 , # Whether to build dynamic libs for the standard library (on the target 35 # platform). Static libs are always built. 36 enableShared ? !stdenv.targetPlatform.isWindows && !stdenv.targetPlatform.useiOSPrebuilt ··· 74 HADDOCK_DOCS = NO 75 BUILD_SPHINX_HTML = NO 76 BUILD_SPHINX_PDF = NO 77 + '' + stdenv.lib.optionalString (!enableProfiledLibs) '' 78 + GhcLibWays = "v dyn" 79 '' + stdenv.lib.optionalString enableRelocatedStaticLibs '' 80 GhcLibHcOpts += -fPIC 81 GhcRtsHcOpts += -fPIC
+28 -11
pkgs/development/haskell-modules/configuration-common.nix
··· 69 name = "git-annex-${super.git-annex.version}-src"; 70 url = "git://git-annex.branchable.com/"; 71 rev = "refs/tags/" + super.git-annex.version; 72 - sha256 = "vwKcY7Yk+R0YkaXjJ7xKyQWGjySTUPox0xIaurbQZk0="; 73 }; 74 }).override { 75 dbus = if pkgs.stdenv.isLinux then self.dbus else null; ··· 1335 ''; 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 ··· 1355 # use a fork of ghcide 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 1363 policeman = doJailbreak super.policeman; 1364 1365 - # 2020-06-29: These three packages have bumped their dependencies for haskell-gi and haskell-gi-base beyond stack-lts. 1366 - # Choosing a jailbreak, because a version override would rebuild most of the glibverse and the packages still build with the older version. 1367 - gi-javascriptcore = 1368 - # Remove these jailbreaks, when assert fails. 1369 - assert (pkgs.lib.versionOlder super.haskell-gi-base.version "0.24"); 1370 - doJailbreak super.gi-javascriptcore; 1371 - gi-soup = doJailbreak super.gi-soup; 1372 - gi-webkit2 = doJailbreak super.gi-webkit2; 1373 1374 # Missing -Iinclude parameter to doc-tests (pull has been accepted, so should be resolved when 0.5.3 released) 1375 # https://github.com/lehins/massiv/pull/104 ··· 1451 haskeline = self.haskeline_0_8_0_0; 1452 }; 1453 }; 1454 1455 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
··· 69 name = "git-annex-${super.git-annex.version}-src"; 70 url = "git://git-annex.branchable.com/"; 71 rev = "refs/tags/" + super.git-annex.version; 72 + sha256 = "1d24080xh7gl197i0y5bkn3j94hvh8zqyg9gfcnx2qdlxfca1knb"; 73 }; 74 }).override { 75 dbus = if pkgs.stdenv.isLinux then self.dbus else null; ··· 1335 ''; 1336 })).override { 1337 # we are faster than stack here 1338 + hie-bios = dontCheck self.hie-bios_0_6_2; 1339 lsp-test = dontCheck self.lsp-test_0_11_0_4; 1340 }); 1341 ··· 1355 # use a fork of ghcide 1356 ghcide = self.hls-ghcide; 1357 # we are faster than stack here 1358 + hie-bios = dontCheck self.hie-bios_0_6_2; 1359 lsp-test = dontCheck self.lsp-test_0_11_0_4; 1360 }; 1361 1362 # https://github.com/kowainik/policeman/issues/57 1363 policeman = doJailbreak super.policeman; 1364 1365 + # 2020-08-14: gi-pango from stackage is to old for the C libs it links against in nixpkgs. 1366 + # That's why we need to bump a ton of dependency versions to unbreak them. 1367 + gi-pango = assert super.gi-pango.version == "1.0.22"; self.gi-pango_1_0_23; 1368 + haskell-gi-base = assert super.haskell-gi-base.version == "0.23.0"; addBuildDepends (self.haskell-gi-base_0_24_2) [ pkgs.gobject-introspection ]; 1369 + haskell-gi = assert super.haskell-gi.version == "0.23.1"; self.haskell-gi_0_24_4; 1370 + gi-cairo = assert super.gi-cairo.version == "1.0.23"; self.gi-cairo_1_0_24; 1371 + gi-glib = assert super.gi-glib.version == "2.0.23"; self.gi-glib_2_0_24; 1372 + gi-gobject = assert super.gi-gobject.version == "2.0.22"; self.gi-gobject_2_0_24; 1373 + gi-atk = assert super.gi-atk.version == "2.0.21"; self.gi-atk_2_0_22; 1374 + gi-gio = assert super.gi-gio.version == "2.0.26"; self.gi-gio_2_0_27; 1375 + gi-gdk = assert super.gi-gdk.version == "3.0.22"; self.gi-gdk_3_0_23; 1376 + gi-gtk = assert super.gi-gtk.version == "3.0.33"; self.gi-gtk_3_0_35; 1377 + gi-gdkpixbuf = assert super.gi-gdkpixbuf.version == "2.0.23"; self.gi-gdkpixbuf_2_0_24; 1378 + 1379 + # 2020-08-14: Needs some manual patching to be compatible with haskell-gi-base 0.24 1380 + # Created upstream PR @ https://github.com/ghcjs/jsaddle/pull/119 1381 + jsaddle-webkit2gtk = appendPatch super.jsaddle-webkit2gtk (pkgs.fetchpatch { 1382 + url = "https://github.com/ghcjs/jsaddle/compare/9727365...09f44aa.patch"; 1383 + sha256 = "1bkwgmc04544haycb69fqsd97lg24jc7hc1yrin2sgr4l7hz04pf"; 1384 + stripLen = 2; 1385 + extraPrefix = ""; 1386 + }); 1387 1388 # Missing -Iinclude parameter to doc-tests (pull has been accepted, so should be resolved when 0.5.3 released) 1389 # https://github.com/lehins/massiv/pull/104 ··· 1465 haskeline = self.haskeline_0_8_0_0; 1466 }; 1467 }; 1468 + 1469 + # https://github.com/bos/statistics/issues/170 1470 + statistics = dontCheck super.statistics; 1471 1472 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
+67 -65
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.8 76 - abstract-deque ==0.3 77 - abstract-par ==0.3.3 78 - AC-Angle ==1.0 ··· 103 - aeson-yak ==0.1.1.3 104 - aeson-yaml ==1.0.6.0 105 - al ==0.1.4.2 106 - - alarmclock ==0.7.0.4 107 - alerts ==0.1.2.0 108 - alex ==3.2.5 109 - alg ==0.2.13.1 ··· 244 - asn1-parse ==0.9.5 245 - asn1-types ==0.3.4 246 - assert-failure ==0.1.2.3 247 - - assoc ==1.0.1 248 - astro ==0.4.2.1 249 - async ==2.2.2 250 - async-extra ==0.2.0.0 ··· 271 - avers ==0.0.17.1 272 - avro ==0.5.2.0 273 - aws-cloudfront-signed-cookies ==0.2.0.6 274 - - bank-holidays-england ==0.2.0.4 275 - base16 ==0.2.1.0 276 - base16-bytestring ==0.1.1.7 277 - base16-lens ==0.1.2.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 ··· 699 - editor-open ==0.6.0.0 700 - egison ==4.0.3 701 - egison-pattern-src ==0.2.1.0 702 - - egison-pattern-src-th-mode ==0.2.1.0 703 - either ==5.0.1.1 704 - either-both ==0.1.1.1 705 - either-unwrap ==1.1 ··· 777 - feed ==1.3.0.1 778 - FenwickTree ==0.1.2.1 779 - fft ==0.1.8.6 780 - - fgl ==5.7.0.2 781 - filecache ==0.4.1 782 - file-embed ==0.0.11.2 783 - file-embed-lzma ==0 ··· 902 - ghcid ==0.8.7 903 - ghci-hexcalc ==0.1.1.0 904 - ghcjs-codemirror ==0.0.0.2 905 - - ghc-lib ==8.10.1.20200523 906 - - ghc-lib-parser ==8.10.1.20200523 907 - - ghc-lib-parser-ex ==8.10.0.15 908 - ghc-parser ==0.2.2.0 909 - ghc-paths ==0.1.0.12 910 - ghc-prof ==1.4.1.7 ··· 936 - gi-pango ==1.0.22 937 - giphy-api ==0.7.0.0 938 - githash ==0.1.4.0 939 - - github-rest ==1.0.2 940 - github-types ==0.2.1 941 - gitlab-haskell ==0.1.8 942 - gitrev ==1.3.1 ··· 957 - graph-core ==0.3.0.0 958 - graphite ==0.10.0.1 959 - graphs ==0.7.1 960 - - graphviz ==2999.20.0.4 961 - graph-wrapper ==0.2.6.0 962 - gravatar ==0.8.0 963 - greskell ==1.1.0.3 ··· 1027 - hedgehog-fakedata ==0.0.1.3 1028 - hedgehog-fn ==1.0 1029 - hedgehog-quickcheck ==0.1.1 1030 - - hedis ==0.12.13 1031 - here ==1.2.13 1032 - heredoc ==0.2.0.0 1033 - heterocephalus ==1.0.5.3 ··· 1081 - hsebaysdk ==0.4.1.0 1082 - hsemail ==2.2.0 1083 - hset ==2.2.0 1084 - - hs-functors ==0.1.6.0 1085 - hs-GeoIP ==0.3 1086 - hsini ==0.5.1.2 1087 - hsinstall ==2.6 ··· 1103 - hspec-expectations ==0.8.2 1104 - hspec-expectations-lifted ==0.10.0 1105 - hspec-expectations-pretty-diff ==0.7.2.5 1106 - - hspec-golden ==0.1.0.2 1107 - hspec-golden-aeson ==0.7.0.0 1108 - hspec-hedgehog ==0.0.1.2 1109 - hspec-leancheck ==0.0.4 ··· 1229 - intro ==0.7.0.0 1230 - intset-imperative ==0.1.0.0 1231 - invariant ==0.5.3 1232 - - invertible ==0.2.0.6 1233 - - invertible-grammar ==0.1.2 1234 - io-machine ==0.2.0.0 1235 - io-manager ==0.1.0.2 1236 - io-memoize ==1.1.1.0 ··· 1398 - matplotlib ==0.7.5 1399 - matrices ==0.5.0 1400 - matrix ==0.3.6.1 1401 - - matrix-as-xyz ==0.1.1.3 1402 - matrix-market-attoparsec ==0.1.1.3 1403 - matrix-static ==0.3 1404 - maximal-cliques ==0.1.1 ··· 1445 - miso ==1.6.0.0 1446 - missing-foreign ==0.1.1 1447 - MissingH ==1.4.3.0 1448 - - mixed-types-num ==0.4.0.1 1449 - mixpanel-client ==0.2.1 1450 - mltool ==0.2.0.1 1451 - mmap ==0.5.9 ··· 1558 - nonce ==1.0.7 1559 - nondeterminism ==1.4 1560 - non-empty ==0.3.2 1561 - - nonempty-containers ==0.3.3.0 1562 - nonemptymap ==0.0.6.0 1563 - non-empty-sequence ==0.2.0.4 1564 - nonempty-vector ==0.2.0.2 ··· 1589 - OneTuple ==0.2.2.1 1590 - Only ==0.1 1591 - oo-prototypes ==0.1.0.0 1592 - - opaleye ==0.6.7004.2 1593 - OpenAL ==1.7.0.5 1594 - open-browser ==0.2.1.0 1595 - openexr-write ==0.1.0.2 ··· 1628 - pandoc-plot ==0.6.1.0 1629 - pandoc-pyplot ==2.3.0.1 1630 - pandoc-types ==1.20 1631 - - pantry ==0.4.0.1 1632 - papillon ==0.1.1.1 1633 - parallel ==3.2.2.0 1634 - parallel-io ==0.3.3 ··· 1681 - pg-transact ==0.3.1.1 1682 - phantom-state ==0.2.1.2 1683 - pid1 ==0.1.2.0 1684 - - pipes ==4.3.13 1685 - pipes-aeson ==0.4.1.8 1686 - pipes-attoparsec ==0.5.1.5 1687 - pipes-binary ==0.4.2 ··· 1886 - rhine ==0.6.0 1887 - rhine-gloss ==0.6.0.1 1888 - rigel-viz ==0.2.0.0 1889 - - rio ==0.1.17.0 1890 - rio-orphans ==0.1.1.0 1891 - - rio-prettyprint ==0.1.0.0 1892 - roc-id ==0.1.0.0 1893 - rocksdb-haskell ==1.0.1 1894 - rocksdb-query ==0.3.2 ··· 2062 - special-values ==0.1.0.0 2063 - speculate ==0.4.2 2064 - speedy-slice ==0.3.1 2065 - - Spintax ==0.3.4 2066 - splice ==0.6.1.1 2067 - split ==0.2.3.4 2068 - splitmix ==0.0.5 ··· 2123 - structs ==0.1.3 2124 - structured ==0.1 2125 - structured-cli ==2.5.2.0 2126 - - stylish-haskell ==0.11.0.0 2127 - summoner ==2.0.1.1 2128 - summoner-tui ==2.0.1.1 2129 - sum-type-boilerplate ==0.1.1 ··· 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 ··· 2476 - xdg-userdirs ==0.1.0.2 2477 - xeno ==0.4.1 2478 - xls ==0.1.3 2479 - - xlsx ==0.8.0 2480 - xlsx-tabular ==0.2.2.1 2481 - xml ==1.3.14 2482 - xml-basic ==0.1.3.1 ··· 2500 - xxhash-ffi ==0.2.0.0 2501 - yaml ==0.11.4.0 2502 - yamlparse-applicative ==0.1.0.1 2503 - - yesod ==1.6.0.2 2504 - yesod-auth ==1.6.10 2505 - yesod-auth-fb ==1.10.1 2506 - yesod-auth-hashdb ==1.7.1.2 2507 - - yesod-bin ==1.6.0.5 2508 - yesod-core ==1.6.18 2509 - yesod-fb ==0.6.1 2510 - yesod-form ==1.6.7 ··· 2532 - zip-archive ==0.4.1 2533 - zippers ==0.3 2534 - zip-stream ==0.2.0.1 2535 - - zlib ==0.6.2.1 2536 - zlib-bindings ==0.1.1.5 2537 - zlib-lens ==0.1.2.1 2538 - zot ==0.0.3 ··· 2560 - deepseq == 1.3.0.1 # required to build Cabal with GHC 6.12.3 2561 - dhall == 1.29.0 # required for spago 0.14.0. 2562 - doctemplates == 0.8 # required by pandoc-2.9.x 2563 - generic-deriving == 1.10.5.* # new versions don't compile with GHC 7.10.x 2564 - ghc-check == 0.3.0.1 # only version compatible with ghcide 0.2.0 2565 - ghc-tcplugins-extra ==0.3.2 # required for polysemy-plugin 0.2.5.0 ··· 2647 # - pipes-mongodb 2648 - streaming-wai 2649 kiwi: 2650 - glirc 2651 - mattermost-api 2652 - mattermost-api-qc 2653 psibi: ··· 2991 - AMI 2992 - ampersand 2993 - amqp-conduit 2994 - analyze 2995 - analyze-client 2996 - anansi-pandoc ··· 3906 - collections-api 3907 - collections-base-instances 3908 - colonnade 3909 - color-counter 3910 - colorless 3911 - colorless-http-client ··· 4082 - CoreDump 4083 - CoreErlang 4084 - CoreFoundation 4085 - Coroutine 4086 - coroutine-enumerator 4087 - coroutine-iteratee ··· 4162 - crystalfontz 4163 - cse-ghc-plugin 4164 - csg 4165 - CSPM-cspm 4166 - CSPM-FiringRules 4167 - CSPM-Frontend ··· 4190 - curve25519 4191 - curves 4192 - custom-prelude 4193 - CV 4194 - cv-combinators 4195 - cypher ··· 4240 - data-filepath 4241 - data-fin 4242 - data-fin-simple 4243 - data-flagset 4244 - data-forest 4245 - data-ivar ··· 4394 - dgim 4395 - dgs 4396 - dhall-check 4397 - dhall-fly 4398 - dhall-nix 4399 - dhall-text ··· 4711 - EnumMap 4712 - enummapmap 4713 - enummapset-th 4714 - env-parser 4715 - envstatus 4716 - epanet-haskell ··· 4742 - EsounD 4743 - espial 4744 - ess 4745 - - essence-of-live-coding 4746 - - essence-of-live-coding-gloss 4747 - - essence-of-live-coding-pulse 4748 - - essence-of-live-coding-quickcheck 4749 - estimators 4750 - EstProgress 4751 - estreps ··· 4956 - findhttp 4957 - fingertree-psqueue 4958 - fingertree-tf 4959 - - finitary 4960 - finitary-derive 4961 - finitary-optics 4962 - FiniteMap ··· 5307 - ghcprofview 5308 - ght 5309 - gi-cairo-again 5310 - - gi-ggit 5311 - - gi-girepository 5312 - - gi-graphene 5313 - - gi-gsk 5314 - - gi-gst 5315 - - gi-gstaudio 5316 - - gi-gstbase 5317 - - gi-gstpbutils 5318 - - gi-gsttag 5319 - - gi-gstvideo 5320 - - gi-gtkosxapplication 5321 - - gi-gtksource 5322 - - gi-handy 5323 - - gi-harfbuzz 5324 - - gi-ibus 5325 - - gi-notify 5326 - - gi-ostree 5327 - - gi-pangocairo 5328 - - gi-poppler 5329 - - gi-secret 5330 - - gi-vte 5331 - - gi-wnck 5332 - giak 5333 - Gifcurry 5334 - ginsu ··· 5543 - gtfs 5544 - gtfs-realtime 5545 - gtk-serialized-event 5546 - gtk-toy 5547 - gtk2hs-hello 5548 - gtk2hs-rpn ··· 6784 - inilist 6785 - initialize 6786 - inject-function 6787 - inline-java 6788 - inline-r 6789 - inserts ··· 6819 - introduction 6820 - introduction-test 6821 - intset 6822 - - invertible-grammar 6823 - invertible-hlist 6824 - invertible-syntax 6825 - io-capture ··· 7575 - marxup 7576 - masakazu-bot 7577 - MASMGen 7578 - master-plan 7579 - matchable 7580 - matchable-th ··· 7592 - matrix-market 7593 - matrix-sized 7594 - matsuri 7595 - - matterhorn 7596 - maude 7597 - maxent 7598 - maxent-learner-hw ··· 8198 - om-actor 8199 - om-elm 8200 - om-fail 8201 - omaketex 8202 - ombra 8203 - Omega ··· 8494 - pg-store 8495 - pg-transact 8496 - pgdl 8497 - pgsql-simple 8498 - pgstream 8499 - phasechange ··· 8580 - plat 8581 - platinum-parsing 8582 - PlayingCards 8583 - plist 8584 - plist-buddy 8585 - plocketed ··· 9347 - scgi 9348 - schedevr 9349 - schedule-planner 9350 - schedyield 9351 - schema 9352 - schemas ··· 9407 - secure-sockets 9408 - secureUDP 9409 - sednaDBXML 9410 - selectors 9411 - SelectSequencesFromMSA 9412 - selenium ··· 9523 - setoid 9524 - setters 9525 - sexp 9526 - - sexp-grammar 9527 - sexpr-parser 9528 - sext 9529 - SFML ··· 10003 - streamproc 10004 - strelka 10005 - strict-data 10006 - strict-tuple-lens 10007 - StrictBench 10008 - StrictCheck ··· 10081 - swearjure 10082 - swf 10083 - swift-lda 10084 - sws 10085 - syb-extras 10086 - syb-with-class-instances-text ··· 10139 - Tablify 10140 - tabloid 10141 - tabs 10142 - tag-bits 10143 - tag-stream 10144 - tagged-exception-core ··· 10249 - test-simple 10250 - testbench 10251 - testCom 10252 - TestExplode 10253 - testloop 10254 - testpack ··· 10623 - uniform-io 10624 - union 10625 - union-map 10626 - - Unique 10627 - uniqueid 10628 - uniquely-represented-sets 10629 - units-attoparsec
··· 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.9 76 - abstract-deque ==0.3 77 - abstract-par ==0.3.3 78 - AC-Angle ==1.0 ··· 103 - aeson-yak ==0.1.1.3 104 - aeson-yaml ==1.0.6.0 105 - al ==0.1.4.2 106 + - alarmclock ==0.7.0.5 107 - alerts ==0.1.2.0 108 - alex ==3.2.5 109 - alg ==0.2.13.1 ··· 244 - asn1-parse ==0.9.5 245 - asn1-types ==0.3.4 246 - assert-failure ==0.1.2.3 247 + - assoc ==1.0.2 248 - astro ==0.4.2.1 249 - async ==2.2.2 250 - async-extra ==0.2.0.0 ··· 271 - avers ==0.0.17.1 272 - avro ==0.5.2.0 273 - aws-cloudfront-signed-cookies ==0.2.0.6 274 + - bank-holidays-england ==0.2.0.5 275 - base16 ==0.2.1.0 276 - base16-bytestring ==0.1.1.7 277 - base16-lens ==0.1.2.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.8 522 + - core-program ==0.2.4.5 523 + - core-text ==0.2.3.6 524 - countable ==1.0 525 - cpio-conduit ==0.7.0 526 - cpphs ==1.20.9.1 ··· 699 - editor-open ==0.6.0.0 700 - egison ==4.0.3 701 - egison-pattern-src ==0.2.1.0 702 + - egison-pattern-src-th-mode ==0.2.1.1 703 - either ==5.0.1.1 704 - either-both ==0.1.1.1 705 - either-unwrap ==1.1 ··· 777 - feed ==1.3.0.1 778 - FenwickTree ==0.1.2.1 779 - fft ==0.1.8.6 780 + - fgl ==5.7.0.3 781 - filecache ==0.4.1 782 - file-embed ==0.0.11.2 783 - file-embed-lzma ==0 ··· 902 - ghcid ==0.8.7 903 - ghci-hexcalc ==0.1.1.0 904 - ghcjs-codemirror ==0.0.0.2 905 + - ghc-lib ==8.10.2.20200808 906 + - ghc-lib-parser ==8.10.2.20200808 907 + - ghc-lib-parser-ex ==8.10.0.16 908 - ghc-parser ==0.2.2.0 909 - ghc-paths ==0.1.0.12 910 - ghc-prof ==1.4.1.7 ··· 936 - gi-pango ==1.0.22 937 - giphy-api ==0.7.0.0 938 - githash ==0.1.4.0 939 + - github-rest ==1.0.3 940 - github-types ==0.2.1 941 - gitlab-haskell ==0.1.8 942 - gitrev ==1.3.1 ··· 957 - graph-core ==0.3.0.0 958 - graphite ==0.10.0.1 959 - graphs ==0.7.1 960 + - graphviz ==2999.20.1.0 961 - graph-wrapper ==0.2.6.0 962 - gravatar ==0.8.0 963 - greskell ==1.1.0.3 ··· 1027 - hedgehog-fakedata ==0.0.1.3 1028 - hedgehog-fn ==1.0 1029 - hedgehog-quickcheck ==0.1.1 1030 + - hedis ==0.12.14 1031 - here ==1.2.13 1032 - heredoc ==0.2.0.0 1033 - heterocephalus ==1.0.5.3 ··· 1081 - hsebaysdk ==0.4.1.0 1082 - hsemail ==2.2.0 1083 - hset ==2.2.0 1084 + - hs-functors ==0.1.7.1 1085 - hs-GeoIP ==0.3 1086 - hsini ==0.5.1.2 1087 - hsinstall ==2.6 ··· 1103 - hspec-expectations ==0.8.2 1104 - hspec-expectations-lifted ==0.10.0 1105 - hspec-expectations-pretty-diff ==0.7.2.5 1106 + - hspec-golden ==0.1.0.3 1107 - hspec-golden-aeson ==0.7.0.0 1108 - hspec-hedgehog ==0.0.1.2 1109 - hspec-leancheck ==0.0.4 ··· 1229 - intro ==0.7.0.0 1230 - intset-imperative ==0.1.0.0 1231 - invariant ==0.5.3 1232 + - invertible ==0.2.0.7 1233 + - invertible-grammar ==0.1.3 1234 - io-machine ==0.2.0.0 1235 - io-manager ==0.1.0.2 1236 - io-memoize ==1.1.1.0 ··· 1398 - matplotlib ==0.7.5 1399 - matrices ==0.5.0 1400 - matrix ==0.3.6.1 1401 + - matrix-as-xyz ==0.1.2.2 1402 - matrix-market-attoparsec ==0.1.1.3 1403 - matrix-static ==0.3 1404 - maximal-cliques ==0.1.1 ··· 1445 - miso ==1.6.0.0 1446 - missing-foreign ==0.1.1 1447 - MissingH ==1.4.3.0 1448 + - mixed-types-num ==0.4.0.2 1449 - mixpanel-client ==0.2.1 1450 - mltool ==0.2.0.1 1451 - mmap ==0.5.9 ··· 1558 - nonce ==1.0.7 1559 - nondeterminism ==1.4 1560 - non-empty ==0.3.2 1561 + - nonempty-containers ==0.3.4.0 1562 - nonemptymap ==0.0.6.0 1563 - non-empty-sequence ==0.2.0.4 1564 - nonempty-vector ==0.2.0.2 ··· 1589 - OneTuple ==0.2.2.1 1590 - Only ==0.1 1591 - oo-prototypes ==0.1.0.0 1592 + - opaleye ==0.6.7005.0 1593 - OpenAL ==1.7.0.5 1594 - open-browser ==0.2.1.0 1595 - openexr-write ==0.1.0.2 ··· 1628 - pandoc-plot ==0.6.1.0 1629 - pandoc-pyplot ==2.3.0.1 1630 - pandoc-types ==1.20 1631 + - pantry ==0.4.0.2 1632 - papillon ==0.1.1.1 1633 - parallel ==3.2.2.0 1634 - parallel-io ==0.3.3 ··· 1681 - pg-transact ==0.3.1.1 1682 - phantom-state ==0.2.1.2 1683 - pid1 ==0.1.2.0 1684 + - pipes ==4.3.14 1685 - pipes-aeson ==0.4.1.8 1686 - pipes-attoparsec ==0.5.1.5 1687 - pipes-binary ==0.4.2 ··· 1886 - rhine ==0.6.0 1887 - rhine-gloss ==0.6.0.1 1888 - rigel-viz ==0.2.0.0 1889 + - rio ==0.1.18.0 1890 - rio-orphans ==0.1.1.0 1891 + - rio-prettyprint ==0.1.1.0 1892 - roc-id ==0.1.0.0 1893 - rocksdb-haskell ==1.0.1 1894 - rocksdb-query ==0.3.2 ··· 2062 - special-values ==0.1.0.0 2063 - speculate ==0.4.2 2064 - speedy-slice ==0.3.1 2065 + - Spintax ==0.3.5 2066 - splice ==0.6.1.1 2067 - split ==0.2.3.4 2068 - splitmix ==0.0.5 ··· 2123 - structs ==0.1.3 2124 - structured ==0.1 2125 - structured-cli ==2.5.2.0 2126 + - stylish-haskell ==0.11.0.3 2127 - summoner ==2.0.1.1 2128 - summoner-tui ==2.0.1.1 2129 - sum-type-boilerplate ==0.1.1 ··· 2138 - syb ==0.7.1 2139 - symbol ==0.2.4 2140 - symengine ==0.1.2.0 2141 + - symmetry-operations-symbols ==0.0.2.1 2142 - sysinfo ==0.1.1 2143 - system-argv0 ==0.1.1 2144 - systemd ==2.3.0 ··· 2476 - xdg-userdirs ==0.1.0.2 2477 - xeno ==0.4.1 2478 - xls ==0.1.3 2479 + - xlsx ==0.8.1 2480 - xlsx-tabular ==0.2.2.1 2481 - xml ==1.3.14 2482 - xml-basic ==0.1.3.1 ··· 2500 - xxhash-ffi ==0.2.0.0 2501 - yaml ==0.11.4.0 2502 - yamlparse-applicative ==0.1.0.1 2503 + - yesod ==1.6.1.0 2504 - yesod-auth ==1.6.10 2505 - yesod-auth-fb ==1.10.1 2506 - yesod-auth-hashdb ==1.7.1.2 2507 + - yesod-bin ==1.6.0.6 2508 - yesod-core ==1.6.18 2509 - yesod-fb ==0.6.1 2510 - yesod-form ==1.6.7 ··· 2532 - zip-archive ==0.4.1 2533 - zippers ==0.3 2534 - zip-stream ==0.2.0.1 2535 + - zlib ==0.6.2.2 2536 - zlib-bindings ==0.1.1.5 2537 - zlib-lens ==0.1.2.1 2538 - zot ==0.0.3 ··· 2560 - deepseq == 1.3.0.1 # required to build Cabal with GHC 6.12.3 2561 - dhall == 1.29.0 # required for spago 0.14.0. 2562 - doctemplates == 0.8 # required by pandoc-2.9.x 2563 + - gi-gdk == 3.0.23 # required for gi-pango 1.0.23 2564 + - gi-gtk == 3.0.35 # required for gi-pango 1.0.23 2565 - generic-deriving == 1.10.5.* # new versions don't compile with GHC 7.10.x 2566 - ghc-check == 0.3.0.1 # only version compatible with ghcide 0.2.0 2567 - ghc-tcplugins-extra ==0.3.2 # required for polysemy-plugin 0.2.5.0 ··· 2649 # - pipes-mongodb 2650 - streaming-wai 2651 kiwi: 2652 + - Unique 2653 - glirc 2654 + - matterhorn 2655 - mattermost-api 2656 - mattermost-api-qc 2657 psibi: ··· 2995 - AMI 2996 - ampersand 2997 - amqp-conduit 2998 + - amqp-streamly 2999 - analyze 3000 - analyze-client 3001 - anansi-pandoc ··· 3911 - collections-api 3912 - collections-base-instances 3913 - colonnade 3914 + - Color 3915 - color-counter 3916 - colorless 3917 - colorless-http-client ··· 4088 - CoreDump 4089 - CoreErlang 4090 - CoreFoundation 4091 + - corenlp-parser 4092 - Coroutine 4093 - coroutine-enumerator 4094 - coroutine-iteratee ··· 4169 - crystalfontz 4170 - cse-ghc-plugin 4171 - csg 4172 + - csound-catalog 4173 + - csound-expression 4174 + - csound-expression-dynamic 4175 + - csound-expression-opcodes 4176 + - csound-expression-typed 4177 + - csound-sampler 4178 - CSPM-cspm 4179 - CSPM-FiringRules 4180 - CSPM-Frontend ··· 4203 - curve25519 4204 - curves 4205 - custom-prelude 4206 + - cut-the-crap 4207 - CV 4208 - cv-combinators 4209 - cypher ··· 4254 - data-filepath 4255 - data-fin 4256 - data-fin-simple 4257 + - data-fix-cse 4258 - data-flagset 4259 - data-forest 4260 - data-ivar ··· 4409 - dgim 4410 - dgs 4411 - dhall-check 4412 + - dhall-docs 4413 - dhall-fly 4414 - dhall-nix 4415 - dhall-text ··· 4727 - EnumMap 4728 - enummapmap 4729 - enummapset-th 4730 + - env-extra 4731 - env-parser 4732 - envstatus 4733 - epanet-haskell ··· 4759 - EsounD 4760 - espial 4761 - ess 4762 - estimators 4763 - EstProgress 4764 - estreps ··· 4969 - findhttp 4970 - fingertree-psqueue 4971 - fingertree-tf 4972 - finitary-derive 4973 - finitary-optics 4974 - FiniteMap ··· 5319 - ghcprofview 5320 - ght 5321 - gi-cairo-again 5322 - giak 5323 - Gifcurry 5324 - ginsu ··· 5533 - gtfs 5534 - gtfs-realtime 5535 - gtk-serialized-event 5536 + - gtk-sni-tray 5537 + - gtk-strut 5538 - gtk-toy 5539 - gtk2hs-hello 5540 - gtk2hs-rpn ··· 6776 - inilist 6777 - initialize 6778 - inject-function 6779 + - inline-asm 6780 - inline-java 6781 - inline-r 6782 - inserts ··· 6812 - introduction 6813 - introduction-test 6814 - intset 6815 - invertible-hlist 6816 - invertible-syntax 6817 - io-capture ··· 7567 - marxup 7568 - masakazu-bot 7569 - MASMGen 7570 + - massiv 7571 + - massiv-io 7572 + - massiv-test 7573 - master-plan 7574 - matchable 7575 - matchable-th ··· 7587 - matrix-market 7588 - matrix-sized 7589 - matsuri 7590 - maude 7591 - maxent 7592 - maxent-learner-hw ··· 8192 - om-actor 8193 - om-elm 8194 - om-fail 8195 + - om-http-logging 8196 - omaketex 8197 - ombra 8198 - Omega ··· 8489 - pg-store 8490 - pg-transact 8491 - pgdl 8492 + - pgf2 8493 - pgsql-simple 8494 - pgstream 8495 - phasechange ··· 8576 - plat 8577 - platinum-parsing 8578 - PlayingCards 8579 + - plex 8580 - plist 8581 - plist-buddy 8582 - plocketed ··· 9344 - scgi 9345 - schedevr 9346 - schedule-planner 9347 + - scheduler 9348 - schedyield 9349 - schema 9350 - schemas ··· 9405 - secure-sockets 9406 - secureUDP 9407 - sednaDBXML 9408 + - seitz-symbol 9409 - selectors 9410 - SelectSequencesFromMSA 9411 - selenium ··· 9522 - setoid 9523 - setters 9524 - sexp 9525 - sexpr-parser 9526 - sext 9527 - SFML ··· 10001 - streamproc 10002 - strelka 10003 - strict-data 10004 + - strict-lens 10005 + - strict-optics 10006 - strict-tuple-lens 10007 - StrictBench 10008 - StrictCheck ··· 10081 - swearjure 10082 - swf 10083 - swift-lda 10084 + - swiss-ephemeris 10085 - sws 10086 - syb-extras 10087 - syb-with-class-instances-text ··· 10140 - Tablify 10141 - tabloid 10142 - tabs 10143 + - taffybar 10144 - tag-bits 10145 - tag-stream 10146 - tagged-exception-core ··· 10251 - test-simple 10252 - testbench 10253 - testCom 10254 + - testcontainers 10255 - TestExplode 10256 - testloop 10257 - testpack ··· 10626 - uniform-io 10627 - union 10628 - union-map 10629 - uniqueid 10630 - uniquely-represented-sets 10631 - units-attoparsec
+1375 -823
pkgs/development/haskell-modules/hackage-packages.nix
··· 3347 benchmarkHaskellDepends = [ base colour criterion deepseq random ]; 3348 description = "Color spaces and conversions between them"; 3349 license = stdenv.lib.licenses.bsd3; 3350 }) {}; 3351 3352 "Color_0_2_0" = callPackage ··· 3367 description = "Color spaces and conversions between them"; 3368 license = stdenv.lib.licenses.bsd3; 3369 hydraPlatforms = stdenv.lib.platforms.none; 3370 }) {}; 3371 3372 "Combinatorrent" = callPackage ··· 11691 pname = "JuicyPixels-blurhash"; 11692 version = "0.1.0.3"; 11693 sha256 = "0kgl2j7990p8q5yrkn0wgaszc9fzva1pc3277j11k1lbjsymz360"; 11694 - revision = "1"; 11695 - editedCabalFile = "05vnd6a4z0r1dg25r2fc2q5krqcw1k0qdxwbhzc7rcnrnnwn0f2d"; 11696 isLibrary = true; 11697 isExecutable = true; 11698 libraryHaskellDepends = [ ··· 16953 }: 16954 mkDerivation { 16955 pname = "Rattus"; 16956 - version = "0.2"; 16957 - sha256 = "0mz6hwg4barn8iszi01lwrkx4i322r5a738kw7sd9mrmdlzd0fh9"; 16958 setupHaskellDepends = [ base Cabal ]; 16959 libraryHaskellDepends = [ 16960 base containers ghc simple-affine-space ··· 18797 ({ mkDerivation, attoparsec, base, extra, mtl, mwc-random, text }: 18798 mkDerivation { 18799 pname = "Spintax"; 18800 - version = "0.3.4"; 18801 - sha256 = "008b83nnjgpzjr4c2dk1vambzb78dwx59c5cq4p0s8ghp6xl9sk3"; 18802 libraryHaskellDepends = [ 18803 attoparsec base extra mtl mwc-random text 18804 ]; ··· 20241 }: 20242 mkDerivation { 20243 pname = "Unique"; 20244 - version = "0.4.7.7"; 20245 - sha256 = "05klzscyvqd67rcyhkbx046i860vpxlfzp52yalfqrlvyyfgg3m2"; 20246 libraryHaskellDepends = [ 20247 base containers extra hashable unordered-containers 20248 ]; ··· 20252 ]; 20253 description = "It provides the functionality like unix \"uniq\" utility"; 20254 license = stdenv.lib.licenses.bsd3; 20255 - hydraPlatforms = stdenv.lib.platforms.none; 20256 - broken = true; 20257 }) {}; 20258 20259 "Unixutils" = callPackage ··· 24308 sha256 = "1kr3waa46k3619yvif0zh4lx7s0zhyghlr1c5kkrvg432i8wmdm6"; 24309 libraryHaskellDepends = [ aeson base ]; 24310 description = "Compatible generic class names of Aeson"; 24311 license = stdenv.lib.licenses.bsd3; 24312 }) {}; 24313 ··· 24582 license = stdenv.lib.licenses.bsd3; 24583 }) {}; 24584 24585 "aeson-schema" = callPackage 24586 ({ mkDerivation, aeson, attoparsec, base, bytestring, containers 24587 , directory, fail, filepath, ghc-prim, hashable, hint, HUnit, mtl ··· 24810 }) {}; 24811 24812 "aeson-with" = callPackage 24813 - ({ mkDerivation, aeson, base, hashmap, lens, lens-aeson, mtl 24814 - , scientific, text, unordered-containers, vector 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 24823 ]; 24824 description = "withXField combinators for aeson"; 24825 license = stdenv.lib.licenses.mit; ··· 25505 }: 25506 mkDerivation { 25507 pname = "alarmclock"; 25508 - version = "0.7.0.4"; 25509 - sha256 = "0am8q26yj29k82y9bsgrlqxam1wllzdnxjbwqx4cgmjkzr7x802j"; 25510 - libraryHaskellDepends = [ 25511 - async base clock stm time unbounded-delays 25512 - ]; 25513 - testHaskellDepends = [ 25514 - async base clock hspec stm time unbounded-delays 25515 - ]; 25516 - description = "Wake up and perform an action at a certain time"; 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 = [ ··· 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 ··· 29039 ]; 29040 description = "A simple streamly wrapper for amqp"; 29041 license = stdenv.lib.licenses.bsd3; 29042 }) {}; 29043 29044 "amqp-utils" = callPackage ··· 29622 license = stdenv.lib.licenses.bsd3; 29623 }) {}; 29624 29625 "ansi-terminal-game" = callPackage 29626 ({ mkDerivation, ansi-terminal, array, base, bytestring, cereal 29627 , clock, exceptions, hspec, linebreak, mintty, mtl, QuickCheck ··· 29654 pname = "ansi-wl-pprint"; 29655 version = "0.6.9"; 29656 sha256 = "1b2fg8px98dzbaqyns10kvs8kn6cl1hdq5wb9saz40izrpkyicm7"; 29657 - revision = "1"; 29658 - editedCabalFile = "0bb5fzjjc00932pny1fql40dmpmikfqzbrbmpwr09bfw9aynvzgn"; 29659 isLibrary = true; 29660 isExecutable = true; 29661 libraryHaskellDepends = [ ansi-terminal base ]; ··· 33246 license = stdenv.lib.licenses.bsd3; 33247 }) {}; 33248 33249 "assertions" = callPackage 33250 ({ mkDerivation, ansi-terminal, base, containers, interpolate 33251 , process ··· 33312 ({ mkDerivation, base, bifunctors, tagged }: 33313 mkDerivation { 33314 pname = "assoc"; 33315 - version = "1.0.1"; 33316 - sha256 = "1m9n4vp190bvn2wcrd4ggfwa9pi93jp0zgx02mdgywn2zfidw020"; 33317 - revision = "1"; 33318 - editedCabalFile = "1q6sc9v79p2pdm7aa6mfbn824vc01wj267saf2gp86b3wzgp0mrh"; 33319 libraryHaskellDepends = [ base bifunctors tagged ]; 33320 description = "swap and assoc: Symmetric and Semigroupy Bifunctors"; 33321 license = stdenv.lib.licenses.bsd3; ··· 34792 broken = true; 34793 }) {}; 34794 34795 "authenticate" = callPackage 34796 ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring 34797 , case-insensitive, conduit, containers, html-conduit, http-conduit ··· 34844 pname = "authenticate-oauth"; 34845 version = "1.6.0.1"; 34846 sha256 = "1hry1zbi7gbyfi94w9cyg6m7ii7xm68jnsph63zxdj2s4ns0ylp0"; 34847 - revision = "1"; 34848 - editedCabalFile = "0pyivmsmlzhpnzpi3jcmqyjjx5a1p7cl1grjyw8571pmxz6735w3"; 34849 libraryHaskellDepends = [ 34850 base base64-bytestring blaze-builder bytestring crypto-pubkey-types 34851 data-default http-client http-types random RSA SHA time ··· 36230 }: 36231 mkDerivation { 36232 pname = "azimuth-hs"; 36233 - version = "0.1.1"; 36234 - sha256 = "123an5smr2kzxaagnpshh3vcz51p3njkp5hrjcm3x37vr8qrla3x"; 36235 enableSeparateDataOutput = true; 36236 libraryHaskellDepends = [ 36237 base data-default-class exceptions haskoin-core memory mtl text ··· 36928 ({ mkDerivation, base, containers, hspec, QuickCheck, time }: 36929 mkDerivation { 36930 pname = "bank-holidays-england"; 36931 - version = "0.2.0.4"; 36932 - sha256 = "1lqjcpxacjkvgy0900av004xsshyjqx1hq1q0ig42f8r6r4cnf3m"; 36933 - libraryHaskellDepends = [ base containers time ]; 36934 - testHaskellDepends = [ base containers hspec QuickCheck time ]; 36935 - description = "Calculation of bank holidays in England and Wales"; 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 ··· 36976 }: 36977 mkDerivation { 36978 pname = "barbies"; 36979 - version = "2.0.1.0"; 36980 - sha256 = "0d2a1d9w8xlviarlrrnlrfs82zf6gzxv09i6sa4ci1bl8df64wmj"; 36981 libraryHaskellDepends = [ base distributive transformers ]; 36982 testHaskellDepends = [ 36983 base distributive QuickCheck tasty tasty-hunit tasty-quickcheck ··· 37659 license = stdenv.lib.licenses.bsd3; 37660 }) {}; 37661 37662 - "base64-bytestring_1_1_0_0" = callPackage 37663 ({ mkDerivation, base, bytestring, containers, criterion, deepseq 37664 , HUnit, QuickCheck, split, test-framework, test-framework-hunit 37665 , test-framework-quickcheck2 37666 }: 37667 mkDerivation { 37668 pname = "base64-bytestring"; 37669 - version = "1.1.0.0"; 37670 - sha256 = "1adcnkcx4nh3d59k94bkndj0wkgbvchz576qwlpaa7148a86q391"; 37671 libraryHaskellDepends = [ base bytestring ]; 37672 testHaskellDepends = [ 37673 base bytestring containers HUnit QuickCheck split test-framework ··· 38056 38057 "battleplace" = callPackage 38058 ({ mkDerivation, aeson, base, bytestring, cereal, data-default 38059 - , hashable, memory, servant, text, vector 38060 }: 38061 mkDerivation { 38062 pname = "battleplace"; 38063 - version = "0.1.0.9"; 38064 - sha256 = "1m6nk9zjsckd3s27hmmr2jy6v28bp7n1d6wriqfmhzw7rzydrgjl"; 38065 libraryHaskellDepends = [ 38066 aeson base bytestring cereal data-default hashable memory servant 38067 - text vector 38068 ]; 38069 description = "Core definitions for BattlePlace.io service"; 38070 license = stdenv.lib.licenses.mit; ··· 41483 }: 41484 mkDerivation { 41485 pname = "bishbosh"; 41486 - version = "0.0.0.5"; 41487 - sha256 = "0i05xbld89ws9bzp9ynr9ly2jy0gw3nvikpbj61i669n9yazps90"; 41488 isLibrary = true; 41489 isExecutable = true; 41490 enableSeparateDataOutput = true; ··· 42535 pname = "blank-canvas"; 42536 version = "0.7.1"; 42537 sha256 = "02w428jpb49yaqzw93121lf1m4pjxi8wniqhnrvqh2zh63gsfws1"; 42538 - revision = "2"; 42539 - editedCabalFile = "0rvdgsmlfkk135qx0y0df5r7sw9xv5i89r84q5ylf32icsivlrr7"; 42540 enableSeparateDataOutput = true; 42541 libraryHaskellDepends = [ 42542 aeson base base-compat-batteries base64-bytestring bytestring ··· 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 ··· 43362 }: 43363 mkDerivation { 43364 pname = "bludigon"; 43365 - version = "0.1.0.1"; 43366 - sha256 = "1c0a6a6ir09vxdjv6nx94c73q381c1wbyf4s7p13cah2zh0y4gw4"; 43367 isLibrary = true; 43368 isExecutable = true; 43369 libraryHaskellDepends = [ ··· 44695 pname = "brick"; 44696 version = "0.55"; 44697 sha256 = "0n51vh8j75a2b6qbfah9k9zrp15m4rkq7fywpp811v93h8zf02fy"; 44698 isLibrary = true; 44699 isExecutable = true; 44700 libraryHaskellDepends = [ ··· 45274 ({ mkDerivation, base, bson, ghc-prim, text }: 45275 mkDerivation { 45276 pname = "bson-generic"; 45277 - version = "0.0.8.1"; 45278 - sha256 = "0zl74si1cxpdj3sl7mmrdsdjk8iqpy14y6bgjhj350bx1hb8v7wv"; 45279 libraryHaskellDepends = [ base bson ghc-prim text ]; 45280 description = "Generic functionality for BSON"; 45281 license = stdenv.lib.licenses.bsd3; ··· 45692 pname = "bugzilla-redhat"; 45693 version = "0.3.0"; 45694 sha256 = "1d751f1219ivx9bfdl7xb89w2vns07ciqp4cqcykixnllx2jx18y"; 45695 isLibrary = true; 45696 isExecutable = true; 45697 libraryHaskellDepends = [ ··· 52257 }: 52258 mkDerivation { 52259 pname = "chart-svg-various"; 52260 - version = "0.0.1"; 52261 - sha256 = "0ajmm6xhzxay715c4zds6lcjnhp8l9qf78rzhymd4hc6vz9v0pi1"; 52262 isLibrary = true; 52263 isExecutable = true; 52264 libraryHaskellDepends = [ ··· 57914 broken = true; 57915 }) {}; 57916 57917 "compact-socket" = callPackage 57918 ({ mkDerivation, base, binary, bytestring, compact, deepseq 57919 , directory, filepath, network, unix ··· 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 62303 - vector 62304 - ]; 62305 - description = "Convenience wrappers around common data structures and encodings"; 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 = [ ··· 62322 ]; 62323 description = "Convenience wrappers around common data structures and encodings"; 62324 license = stdenv.lib.licenses.bsd3; 62325 - hydraPlatforms = stdenv.lib.platforms.none; 62326 }) {}; 62327 62328 "core-haskell" = callPackage ··· 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 62359 - prettyprinter-ansi-terminal safe-exceptions stm template-haskell 62360 - terminal-size text text-short transformers unix 62361 - ]; 62362 - description = "Opinionated Haskell Interoperability"; 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 62370 - , safe-exceptions, stm, template-haskell, terminal-size, text 62371 - , text-short, transformers, unix 62372 - }: 62373 - mkDerivation { 62374 - pname = "core-program"; 62375 version = "0.2.4.5"; 62376 sha256 = "1a2zjdywmgniwcj649f43hri55bh30vz2s00r3yqj3gvhhighi86"; 62377 libraryHaskellDepends = [ ··· 62382 ]; 62383 description = "Opinionated Haskell Interoperability"; 62384 license = stdenv.lib.licenses.bsd3; 62385 - hydraPlatforms = stdenv.lib.platforms.none; 62386 }) {}; 62387 62388 "core-text" = callPackage ··· 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 62400 - ]; 62401 - description = "A rope type based on a finger tree over UTF-8 fragments"; 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 = [ ··· 62417 ]; 62418 description = "A rope type based on a finger tree over UTF-8 fragments"; 62419 license = stdenv.lib.licenses.bsd3; 62420 - hydraPlatforms = stdenv.lib.platforms.none; 62421 }) {}; 62422 62423 "corebot-bliki" = callPackage ··· 62483 librarySystemDepends = [ rocksdb ]; 62484 description = "Launches CoreNLP and parses the JSON output"; 62485 license = stdenv.lib.licenses.bsd3; 62486 }) {inherit (pkgs) rocksdb;}; 62487 62488 "cornea" = callPackage ··· 65001 ]; 65002 description = "a gallery of Csound instruments"; 65003 license = stdenv.lib.licenses.bsd3; 65004 }) {}; 65005 65006 "csound-expression" = callPackage ··· 65020 ]; 65021 description = "library to make electronic music"; 65022 license = stdenv.lib.licenses.bsd3; 65023 }) {}; 65024 65025 "csound-expression-dynamic" = callPackage ··· 65037 ]; 65038 description = "dynamic core for csound-expression library"; 65039 license = stdenv.lib.licenses.bsd3; 65040 }) {}; 65041 65042 "csound-expression-opcodes" = callPackage ··· 65052 ]; 65053 description = "opcodes for the library csound-expression"; 65054 license = stdenv.lib.licenses.bsd3; 65055 }) {}; 65056 65057 "csound-expression-typed" = callPackage ··· 65072 ]; 65073 description = "typed core for the library csound-expression"; 65074 license = stdenv.lib.licenses.bsd3; 65075 }) {}; 65076 65077 "csound-sampler" = callPackage ··· 65083 libraryHaskellDepends = [ base csound-expression transformers ]; 65084 description = "A musical sampler based on Csound"; 65085 license = stdenv.lib.licenses.bsd3; 65086 }) {}; 65087 65088 "csp" = callPackage ··· 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 ··· 66438 66439 "darcs" = callPackage 66440 ({ mkDerivation, array, async, attoparsec, base, base16-bytestring 66441 - , binary, bytestring, Cabal, cmdargs, containers, cryptohash, curl 66442 - , data-ordlist, directory, fgl, filepath, FindBin, graphviz 66443 - , hashable, haskeline, html, HTTP, HUnit, mmap, mtl, network 66444 - , network-uri, old-time, parsec, process, QuickCheck, random 66445 - , regex-applicative, regex-compat-tdfa, sandi, shelly, split, stm 66446 - , tar, terminfo, test-framework, test-framework-hunit 66447 - , test-framework-quickcheck2, text, time, transformers, unix 66448 - , unix-compat, utf8-string, vector, zip-archive, zlib 66449 }: 66450 mkDerivation { 66451 pname = "darcs"; 66452 - version = "2.14.4"; 66453 - sha256 = "0qk70a2i5p69lai0vzrckjql3rz8sfiq5vnpafmscmq8018i2wp7"; 66454 configureFlags = [ "-fforce-char8-encoding" "-flibrary" ]; 66455 isLibrary = true; 66456 isExecutable = true; 66457 setupHaskellDepends = [ base Cabal directory filepath process ]; 66458 libraryHaskellDepends = [ 66459 array async attoparsec base base16-bytestring binary bytestring 66460 - containers cryptohash data-ordlist directory fgl filepath graphviz 66461 - hashable haskeline html HTTP mmap mtl network network-uri old-time 66462 - parsec process random regex-applicative regex-compat-tdfa sandi stm 66463 - tar terminfo text time transformers unix unix-compat utf8-string 66464 - vector zip-archive zlib 66465 ]; 66466 - librarySystemDepends = [ curl ]; 66467 executableHaskellDepends = [ base ]; 66468 testHaskellDepends = [ 66469 - array base bytestring cmdargs containers directory filepath FindBin 66470 - HUnit mtl QuickCheck shelly split test-framework 66471 - test-framework-hunit test-framework-quickcheck2 text transformers 66472 - zip-archive 66473 ]; 66474 doCheck = false; 66475 postInstall = '' ··· 66477 mv contrib/darcs_completion $out/etc/bash_completion.d/darcs 66478 ''; 66479 description = "a distributed, interactive, smart revision control system"; 66480 - license = stdenv.lib.licenses.gpl2; 66481 - }) {inherit (pkgs) curl;}; 66482 66483 "darcs-benchmark" = callPackage 66484 ({ mkDerivation, base, bytestring, cmdargs, containers, datetime ··· 67675 libraryHaskellDepends = [ base containers data-fix transformers ]; 67676 description = "Common subexpression elimination for the fixploint types"; 67677 license = stdenv.lib.licenses.bsd3; 67678 }) {}; 67679 67680 "data-flags" = callPackage ··· 71945 pname = "dhall"; 71946 version = "1.34.0"; 71947 sha256 = "0rqvzvcqbhs9gvga7api6jjblnypm4a33z8kxi578ps63mhn3g0d"; 71948 isLibrary = true; 71949 isExecutable = true; 71950 enableSeparateDataOutput = true; ··· 72070 ]; 72071 description = "Generate HTML docs from a dhall package"; 72072 license = stdenv.lib.licenses.bsd3; 72073 }) {}; 72074 72075 "dhall-fly" = callPackage ··· 72148 pname = "dhall-json"; 72149 version = "1.7.1"; 72150 sha256 = "158c9vhxa124r1xqn365wvwqhby5rngkip08ghy8rnjs5ijcxzgf"; 72151 isLibrary = true; 72152 isExecutable = true; 72153 libraryHaskellDepends = [ ··· 72227 pname = "dhall-lsp-server"; 72228 version = "1.0.9"; 72229 sha256 = "0zf53pc8rxapmdm9fvp04gfnw2910yv1gm5sm5v5wb606njzk0xn"; 72230 isLibrary = true; 72231 isExecutable = true; 72232 libraryHaskellDepends = [ ··· 72380 pname = "dhall-yaml"; 72381 version = "1.2.1"; 72382 sha256 = "18p8a92wiz2zi4q7v5fjvdallxrl21scmwwv706g3mm5dgfgcs5a"; 72383 isLibrary = true; 72384 isExecutable = true; 72385 libraryHaskellDepends = [ ··· 75711 pname = "dlist-nonempty"; 75712 version = "0.1.1"; 75713 sha256 = "0csbspdy43pzvasb5mhs5pz2f49ws78pi253cx7pp84wjx6ads20"; 75714 - revision = "8"; 75715 - editedCabalFile = "134fcrv7lmbhzmgp07vp3fdjbbjrkkracvjf6ma5k2fwcw0wfkff"; 75716 libraryHaskellDepends = [ 75717 base base-compat deepseq dlist semigroupoids 75718 ]; ··· 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 ]; ··· 76887 license = stdenv.lib.licenses.mit; 76888 }) {}; 76889 76890 "dotfs" = callPackage 76891 ({ mkDerivation, base, bytestring, containers, directory, filepath 76892 , haskell-src, HFuse, HUnit, parsec, process, QuickCheck ··· 79846 }) {}; 79847 79848 "egison-pattern-src-th-mode" = callPackage 79849 - ({ mkDerivation, base, egison-pattern-src, haskell-src-exts 79850 - , haskell-src-meta, mtl, pretty, tasty, tasty-discover, tasty-hunit 79851 - , template-haskell, text 79852 - }: 79853 - mkDerivation { 79854 - pname = "egison-pattern-src-th-mode"; 79855 - version = "0.2.1.0"; 79856 - sha256 = "0libfs39irdnqfvynmpji21p6nyk2s3zsxhlmsz763aya51ymxpy"; 79857 - revision = "2"; 79858 - editedCabalFile = "1ad2iii6csindqy9kd47zs1c04qj9fyg93iji5fxrb4wgmc90l2a"; 79859 - libraryHaskellDepends = [ 79860 - base egison-pattern-src haskell-src-exts haskell-src-meta mtl 79861 - pretty template-haskell text 79862 - ]; 79863 - testHaskellDepends = [ 79864 - base egison-pattern-src haskell-src-exts mtl tasty tasty-hunit 79865 - template-haskell text 79866 - ]; 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 ··· 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 ··· 82166 ]; 82167 description = "Safe helpers for accessing and modifying environment variables"; 82168 license = stdenv.lib.licenses.mit; 82169 }) {}; 82170 82171 "env-locale" = callPackage ··· 83154 ]; 83155 description = "General purpose live coding framework"; 83156 license = stdenv.lib.licenses.bsd3; 83157 hydraPlatforms = stdenv.lib.platforms.none; 83158 - broken = true; 83159 }) {}; 83160 83161 "essence-of-live-coding-gloss" = callPackage ··· 83171 ]; 83172 description = "General purpose live coding framework - Gloss backend"; 83173 license = stdenv.lib.licenses.bsd3; 83174 hydraPlatforms = stdenv.lib.platforms.none; 83175 - broken = true; 83176 }) {}; 83177 83178 "essence-of-live-coding-pulse" = callPackage ··· 83188 ]; 83189 description = "General purpose live coding framework - pulse backend"; 83190 license = stdenv.lib.licenses.bsd3; 83191 hydraPlatforms = stdenv.lib.platforms.none; 83192 - broken = true; 83193 }) {}; 83194 83195 "essence-of-live-coding-quickcheck" = callPackage ··· 83206 ]; 83207 description = "General purpose live coding framework - QuickCheck integration"; 83208 license = stdenv.lib.licenses.bsd3; 83209 hydraPlatforms = stdenv.lib.platforms.none; 83210 - broken = true; 83211 }) {}; 83212 83213 "estimator" = callPackage ··· 85623 license = stdenv.lib.licenses.bsd3; 85624 }) {}; 85625 85626 "extract-dependencies" = callPackage 85627 ({ mkDerivation, async, base, Cabal, containers 85628 , package-description-remote ··· 86134 }) {}; 86135 86136 "fakefs" = callPackage 86137 - ({ mkDerivation, base, containers, hspec, mtl, QuickCheck }: 86138 mkDerivation { 86139 pname = "fakefs"; 86140 - version = "0.2.0.1"; 86141 - sha256 = "0szdjrc4m87h9dsb7qg5rpp5avnyzv47mymyihgvmxc22wiyf1c1"; 86142 - libraryHaskellDepends = [ base containers mtl ]; 86143 - testHaskellDepends = [ base containers hspec QuickCheck ]; 86144 description = "Extensible fake file system for testing"; 86145 license = stdenv.lib.licenses.asl20; 86146 }) {}; ··· 87948 }: 87949 mkDerivation { 87950 pname = "ffunctor"; 87951 - version = "1.2.0"; 87952 - sha256 = "0rq60a7ximvqdxqvijw1isd1d5gwqbjagmws91y0jvxlwmsgzf6w"; 87953 - revision = "2"; 87954 - editedCabalFile = "1mwddp63jdgfzhdcyqs77nv5lsbaw4gj63gcihimfmj5qxlx7zpk"; 87955 libraryHaskellDepends = [ base transformers ]; 87956 testHaskellDepends = [ 87957 aeson base exceptions generic-lens http-client mtl servant ··· 87970 }: 87971 mkDerivation { 87972 pname = "fgl"; 87973 - version = "5.7.0.2"; 87974 - sha256 = "13zqdwj6j2y5827w3dcx8kl1gini4x938bfh4c5g5jc3b37rlnll"; 87975 - libraryHaskellDepends = [ 87976 - array base containers deepseq transformers 87977 - ]; 87978 - testHaskellDepends = [ base containers hspec QuickCheck ]; 87979 - benchmarkHaskellDepends = [ base deepseq microbench ]; 87980 - description = "Martin Erwig's Functional Graph Library"; 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 = [ ··· 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 ··· 88898 ]; 88899 description = "A better, more type-safe Enum"; 88900 license = stdenv.lib.licenses.gpl3Plus; 88901 - hydraPlatforms = stdenv.lib.platforms.none; 88902 - broken = true; 88903 }) {}; 88904 88905 "finitary-derive" = callPackage ··· 89144 }: 89145 mkDerivation { 89146 pname = "fishfood"; 89147 - version = "0.0.1.10"; 89148 - sha256 = "075hqpp4jmhl57a6y5vgnmxc3264mby2xpcmskxpcrqf6isbljah"; 89149 isLibrary = true; 89150 isExecutable = true; 89151 libraryHaskellDepends = [ ··· 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 ··· 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 ··· 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 ··· 98253 }: 98254 mkDerivation { 98255 pname = "ghc-lib"; 98256 - version = "8.10.1.20200523"; 98257 - sha256 = "0qqcygmndgpmjm7hdr81bj298mc0gmnswm4i14r0fwnyc00zr4yy"; 98258 - revision = "1"; 98259 - editedCabalFile = "1hs46w2h5wz2gvdmhqvkyl413jryba8gbpbg23hjrsz5c1divym7"; 98260 enableSeparateDataOutput = true; 98261 libraryHaskellDepends = [ 98262 array base binary bytestring containers deepseq directory filepath ··· 98274 }: 98275 mkDerivation { 98276 pname = "ghc-lib-parser"; 98277 - version = "8.10.1.20200523"; 98278 - sha256 = "1g2jki7f1in5c2y80zhz3hxrm4c7m063slxpg1lrvqrgrlwag5cb"; 98279 - revision = "1"; 98280 - editedCabalFile = "18q82c1iixph91kaypa2dzbcjf1dl46w1i5ckifgmdqh9zxibs9c"; 98281 enableSeparateDataOutput = true; 98282 libraryHaskellDepends = [ 98283 array base binary bytestring containers deepseq directory filepath ··· 98294 }: 98295 mkDerivation { 98296 pname = "ghc-lib-parser-ex"; 98297 - version = "8.10.0.15"; 98298 - sha256 = "1i4xslw53bijvbvba4h0b8c9cy0zr2d4gzm3dfxizss1bz8qcscn"; 98299 libraryHaskellDepends = [ 98300 base bytestring containers ghc-lib-parser uniplate 98301 ]; ··· 98748 }: 98749 mkDerivation { 98750 pname = "ghc-tags-core"; 98751 - version = "0.2.2.0"; 98752 - sha256 = "1hnknqqswn3w1l6bk70b44vhbyf43yh0zjfcgsjj1sc2864jikpb"; 98753 libraryHaskellDepends = [ 98754 attoparsec base bytestring directory filepath-bytestring ghc mtl 98755 pipes pipes-attoparsec pipes-bytestring text transformers ··· 98778 }: 98779 mkDerivation { 98780 pname = "ghc-tags-plugin"; 98781 - version = "0.2.2.0"; 98782 - sha256 = "0gsvhljr8q2a8w8va4c3ggghpvhny3ip2vh2vaizl9806126i7q7"; 98783 isLibrary = true; 98784 isExecutable = true; 98785 libraryHaskellDepends = [ ··· 99829 license = stdenv.lib.licenses.lgpl21; 99830 }) {inherit (pkgs) gtk3;}; 99831 99832 "gi-gdk_4_0_2" = callPackage 99833 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 99834 , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk4 ··· 99961 libraryPkgconfigDepends = [ libgit2-glib ]; 99962 description = "libgit2-glib bindings"; 99963 license = stdenv.lib.licenses.lgpl21; 99964 - hydraPlatforms = stdenv.lib.platforms.none; 99965 - broken = true; 99966 }) {inherit (pkgs) libgit2-glib;}; 99967 99968 "gi-gio" = callPackage ··· 100021 libraryPkgconfigDepends = [ gobject-introspection ]; 100022 description = "GIRepository (gobject-introspection) bindings"; 100023 license = stdenv.lib.licenses.lgpl21; 100024 - hydraPlatforms = stdenv.lib.platforms.none; 100025 - broken = true; 100026 }) {inherit (pkgs) gobject-introspection;}; 100027 100028 "gi-glib" = callPackage ··· 100120 libraryPkgconfigDepends = [ graphene-gobject ]; 100121 description = "Graphene bindings"; 100122 license = stdenv.lib.licenses.lgpl21; 100123 - hydraPlatforms = stdenv.lib.platforms.none; 100124 - broken = true; 100125 }) {graphene-gobject = null;}; 100126 100127 "gi-graphene_1_0_2" = callPackage ··· 100142 description = "Graphene bindings"; 100143 license = stdenv.lib.licenses.lgpl21; 100144 hydraPlatforms = stdenv.lib.platforms.none; 100145 - broken = true; 100146 }) {graphene-gobject = null;}; 100147 100148 "gi-gsk" = callPackage ··· 100167 libraryPkgconfigDepends = [ gtk4 ]; 100168 description = "Gsk bindings"; 100169 license = stdenv.lib.licenses.lgpl21; 100170 - hydraPlatforms = stdenv.lib.platforms.none; 100171 - broken = true; 100172 }) {gtk4 = null;}; 100173 100174 "gi-gst" = callPackage ··· 100188 libraryPkgconfigDepends = [ gstreamer ]; 100189 description = "GStreamer bindings"; 100190 license = stdenv.lib.licenses.lgpl21; 100191 - hydraPlatforms = stdenv.lib.platforms.none; 100192 - broken = true; 100193 }) {inherit (pkgs.gst_all_1) gstreamer;}; 100194 100195 "gi-gstaudio" = callPackage ··· 100211 libraryPkgconfigDepends = [ gst-plugins-base ]; 100212 description = "GStreamerAudio bindings"; 100213 license = stdenv.lib.licenses.lgpl21; 100214 - hydraPlatforms = stdenv.lib.platforms.none; 100215 - broken = true; 100216 }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; 100217 100218 "gi-gstbase" = callPackage ··· 100234 libraryPkgconfigDepends = [ gst-plugins-base ]; 100235 description = "GStreamerBase bindings"; 100236 license = stdenv.lib.licenses.lgpl21; 100237 - hydraPlatforms = stdenv.lib.platforms.none; 100238 - broken = true; 100239 }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; 100240 100241 "gi-gstpbutils" = callPackage ··· 100260 libraryPkgconfigDepends = [ gstreamer-pbutils ]; 100261 description = "GStreamer Plugins Base Utils bindings"; 100262 license = stdenv.lib.licenses.lgpl21; 100263 - hydraPlatforms = stdenv.lib.platforms.none; 100264 - broken = true; 100265 }) {gstreamer-pbutils = null;}; 100266 100267 "gi-gsttag" = callPackage ··· 100283 libraryPkgconfigDepends = [ gstreamer-tag ]; 100284 description = "GStreamer Tag bindings"; 100285 license = stdenv.lib.licenses.lgpl21; 100286 - hydraPlatforms = stdenv.lib.platforms.none; 100287 - broken = true; 100288 }) {gstreamer-tag = null;}; 100289 100290 "gi-gstvideo" = callPackage ··· 100306 libraryPkgconfigDepends = [ gst-plugins-base ]; 100307 description = "GStreamerVideo bindings"; 100308 license = stdenv.lib.licenses.lgpl21; 100309 - hydraPlatforms = stdenv.lib.platforms.none; 100310 - broken = true; 100311 }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; 100312 100313 "gi-gtk" = callPackage ··· 100334 license = stdenv.lib.licenses.lgpl21; 100335 }) {inherit (pkgs) gtk3;}; 100336 100337 "gi-gtk_4_0_2" = callPackage 100338 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 100339 , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject ··· 100455 libraryPkgconfigDepends = [ gtk-mac-integration-gtk3 ]; 100456 description = "GtkosxApplication bindings"; 100457 license = stdenv.lib.licenses.lgpl21; 100458 - hydraPlatforms = stdenv.lib.platforms.none; 100459 - broken = true; 100460 }) {gtk-mac-integration-gtk3 = null;}; 100461 100462 "gi-gtksource" = callPackage ··· 100481 libraryPkgconfigDepends = [ gtksourceview3 ]; 100482 description = "GtkSource bindings"; 100483 license = stdenv.lib.licenses.lgpl21; 100484 - hydraPlatforms = stdenv.lib.platforms.none; 100485 - broken = true; 100486 }) {inherit (pkgs) gtksourceview3;}; 100487 100488 "gi-handy" = callPackage ··· 100507 libraryPkgconfigDepends = [ libhandy ]; 100508 description = "libhandy bindings"; 100509 license = stdenv.lib.licenses.lgpl21; 100510 - hydraPlatforms = stdenv.lib.platforms.none; 100511 - broken = true; 100512 }) {inherit (pkgs) libhandy;}; 100513 100514 "gi-harfbuzz" = callPackage ··· 100528 libraryPkgconfigDepends = [ harfbuzz harfbuzz-gobject ]; 100529 description = "HarfBuzz bindings"; 100530 license = stdenv.lib.licenses.lgpl21; 100531 - hydraPlatforms = stdenv.lib.platforms.none; 100532 - broken = true; 100533 }) {inherit (pkgs) harfbuzz; harfbuzz-gobject = null;}; 100534 100535 "gi-ibus" = callPackage ··· 100551 libraryPkgconfigDepends = [ ibus ]; 100552 description = "IBus bindings"; 100553 license = stdenv.lib.licenses.lgpl21; 100554 - hydraPlatforms = stdenv.lib.platforms.none; 100555 - broken = true; 100556 }) {inherit (pkgs) ibus;}; 100557 100558 "gi-javascriptcore" = callPackage ··· 100594 libraryPkgconfigDepends = [ libnotify ]; 100595 description = "Libnotify bindings"; 100596 license = stdenv.lib.licenses.lgpl21; 100597 - hydraPlatforms = stdenv.lib.platforms.none; 100598 - broken = true; 100599 }) {inherit (pkgs) libnotify;}; 100600 100601 "gi-ostree" = callPackage ··· 100618 description = "OSTree bindings"; 100619 license = stdenv.lib.licenses.lgpl21; 100620 platforms = [ "i686-linux" "x86_64-linux" ]; 100621 - hydraPlatforms = stdenv.lib.platforms.none; 100622 - broken = true; 100623 }) {inherit (pkgs) ostree;}; 100624 100625 "gi-pango" = callPackage ··· 100695 ''; 100696 description = "PangoCairo bindings"; 100697 license = stdenv.lib.licenses.lgpl21; 100698 - hydraPlatforms = stdenv.lib.platforms.none; 100699 - broken = true; 100700 }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; 100701 100702 "gi-poppler" = callPackage ··· 100718 libraryPkgconfigDepends = [ poppler ]; 100719 description = "Poppler bindings"; 100720 license = stdenv.lib.licenses.lgpl21; 100721 - hydraPlatforms = stdenv.lib.platforms.none; 100722 - broken = true; 100723 }) {inherit (pkgs) poppler;}; 100724 100725 "gi-secret" = callPackage ··· 100741 libraryPkgconfigDepends = [ libsecret ]; 100742 description = "Libsecret bindings"; 100743 license = stdenv.lib.licenses.lgpl21; 100744 - hydraPlatforms = stdenv.lib.platforms.none; 100745 - broken = true; 100746 }) {inherit (pkgs) libsecret;}; 100747 100748 "gi-soup" = callPackage ··· 100788 libraryPkgconfigDepends = [ vte_291 ]; 100789 description = "Vte bindings"; 100790 license = stdenv.lib.licenses.lgpl21; 100791 - hydraPlatforms = stdenv.lib.platforms.none; 100792 - broken = true; 100793 }) {vte_291 = pkgs.vte;}; 100794 100795 "gi-webkit" = callPackage ··· 100886 libraryPkgconfigDepends = [ libwnck ]; 100887 description = "Wnck bindings"; 100888 license = stdenv.lib.licenses.lgpl21; 100889 - hydraPlatforms = stdenv.lib.platforms.none; 100890 - broken = true; 100891 }) {inherit (pkgs) libwnck;}; 100892 100893 "gi-xlib" = callPackage ··· 101195 }: 101196 mkDerivation { 101197 pname = "git-annex"; 101198 - version = "8.20200720.1"; 101199 - sha256 = "0g4wlfkwr9w21hvdywc7sk077rxlnigdr4m4yz41rc0s2nbjc9fn"; 101200 configureFlags = [ 101201 "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" 101202 "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" ··· 101252 }: 101253 mkDerivation { 101254 pname = "git-brunch"; 101255 - version = "1.3.1.0"; 101256 - sha256 = "0k1q3f9hyyagv67mpaj1159vic4kc44nk10nswg0pql38ai5bqvx"; 101257 isLibrary = false; 101258 isExecutable = true; 101259 executableHaskellDepends = [ ··· 101852 }: 101853 mkDerivation { 101854 pname = "github-rest"; 101855 - version = "1.0.2"; 101856 - sha256 = "0q4dxr0080pkszq9vv3j2wx89yhy15jjbk5m7wd1mwirgwxv214m"; 101857 - revision = "2"; 101858 - editedCabalFile = "02brididamvd9g938vqirp6d0vmw7cs9w1yk05ic89kxcl55n8mx"; 101859 - libraryHaskellDepends = [ 101860 - aeson base bytestring http-client http-client-tls http-types jwt 101861 - mtl scientific text time transformers unliftio unliftio-core 101862 - ]; 101863 - testHaskellDepends = [ 101864 - aeson aeson-qq base bytestring http-client http-client-tls 101865 - http-types jwt mtl scientific tasty tasty-golden tasty-hunit 101866 - tasty-quickcheck text time transformers unliftio unliftio-core 101867 - ]; 101868 - description = "Query the GitHub REST API programmatically"; 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 = [ ··· 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 ··· 107651 }: 107652 mkDerivation { 107653 pname = "graphviz"; 107654 - version = "2999.20.0.4"; 107655 - sha256 = "047f6sa5rp0f2npgvdrj5irylh0raf01a6nrjj2vsf1mzb1q83xr"; 107656 - isLibrary = true; 107657 - isExecutable = true; 107658 - libraryHaskellDepends = [ 107659 - base bytestring colour containers directory dlist fgl filepath mtl 107660 - polyparse process temporary text wl-pprint-text 107661 - ]; 107662 - testHaskellDepends = [ 107663 - base containers fgl fgl-arbitrary filepath hspec QuickCheck text 107664 - ]; 107665 - testSystemDepends = [ graphviz ]; 107666 - testToolDepends = [ hspec-discover ]; 107667 - benchmarkHaskellDepends = [ base criterion deepseq text ]; 107668 - description = "Bindings to Graphviz for graph visualisation"; 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; ··· 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 ··· 108987 ]; 108988 description = "A standalone StatusNotifierItem/AppIndicator tray"; 108989 license = stdenv.lib.licenses.bsd3; 108990 }) {inherit (pkgs) gtk3;}; 108991 108992 "gtk-strut" = callPackage ··· 108998 libraryHaskellDepends = [ base gi-gdk gi-gtk text transformers ]; 108999 description = "Libary for creating strut windows with gi-gtk"; 109000 license = stdenv.lib.licenses.bsd3; 109001 }) {}; 109002 109003 "gtk-toggle-button-list" = callPackage ··· 112956 broken = true; 112957 }) {}; 112958 112959 "happindicator" = callPackage 112960 ({ mkDerivation, array, base, bytestring, containers, glib, gtk 112961 , gtk2hs-buildtools, libappindicator-gtk2, mtl ··· 115166 }: 115167 mkDerivation { 115168 pname = "haskell-ci"; 115169 - version = "0.10.2"; 115170 - sha256 = "07yqgwacz1qll2nvwdq1w4n35yca1k569i947s310pb22asbd5w2"; 115171 isLibrary = false; 115172 isExecutable = true; 115173 libraryHaskellDepends = [ ··· 115523 license = stdenv.lib.licenses.lgpl21; 115524 }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; 115525 115526 - "haskell-gi_0_24_3" = callPackage 115527 ({ mkDerivation, ansi-terminal, attoparsec, base, bytestring, Cabal 115528 , cabal-doctest, containers, directory, doctest, filepath, glib 115529 , gobject-introspection, haskell-gi-base, mtl, pretty-show, process ··· 115531 }: 115532 mkDerivation { 115533 pname = "haskell-gi"; 115534 - version = "0.24.3"; 115535 - sha256 = "1bzbb0hbk0hz265rbh4dsypwiqxcjn0gy0sql287bm57rj0mvnn0"; 115536 setupHaskellDepends = [ base Cabal cabal-doctest ]; 115537 libraryHaskellDepends = [ 115538 ansi-terminal attoparsec base bytestring Cabal containers directory ··· 119124 broken = true; 119125 }) {}; 119126 119127 "hasql-pool" = callPackage 119128 ({ mkDerivation, base-prelude, hasql, hspec, resource-pool, time }: 119129 mkDerivation { ··· 121613 }: 121614 mkDerivation { 121615 pname = "hedis"; 121616 - version = "0.12.13"; 121617 - sha256 = "1axsv81r1q393m178x89km49pi7w7dci0l48cnjdskdz99jwvywq"; 121618 libraryHaskellDepends = [ 121619 async base bytestring bytestring-lexing deepseq errors exceptions 121620 HTTP mtl network network-uri resource-pool scanner stm text time ··· 124217 license = stdenv.lib.licenses.bsd3; 124218 }) {}; 124219 124220 - "hie-bios_0_6_1" = callPackage 124221 ({ mkDerivation, aeson, base, base16-bytestring, bytestring 124222 , conduit, conduit-extra, containers, cryptohash-sha1, deepseq 124223 , directory, extra, file-embed, filepath, ghc, hslogger ··· 124227 }: 124228 mkDerivation { 124229 pname = "hie-bios"; 124230 - version = "0.6.1"; 124231 - sha256 = "0lvsfhv2ahzzqh9jv7837akcy5c4mnyfwrb5k2jlkpq3ywr13x8c"; 124232 isLibrary = true; 124233 isExecutable = true; 124234 libraryHaskellDepends = [ ··· 129619 pname = "hpc-lcov"; 129620 version = "1.0.1"; 129621 sha256 = "01ws5y2vavgm7151dcabw3jwny1prrnzn5b04q76m5gc6a36wivl"; 129622 isLibrary = true; 129623 isExecutable = true; 129624 libraryHaskellDepends = [ base containers hpc ]; ··· 130628 , text, time, unordered-containers, uuid, vector 130629 130630 , text, time, unordered-containers, uuid, vector 130631 - , text, time, unordered-containers, uuid, vector 130632 - mkDerivation { 130633 - , text, time, unordered-containers, uuid, vector 130634 - version = "0.1.6.0"; 130635 - , text, time, unordered-containers, uuid, vector 130636 - revision = "1"; 130637 - , text, time, unordered-containers, uuid, vector 130638 - , text, time, unordered-containers, uuid, vector 130639 - , text, time, unordered-containers, uuid, vector 130640 - license = stdenv.lib.licenses.bsd3; 130641 - }) {}; 130642 - 130643 - , text, time, unordered-containers, uuid, vector 130644 , text, time, unordered-containers, uuid, vector 130645 mkDerivation { 130646 , text, time, unordered-containers, uuid, vector ··· 130649 , text, time, unordered-containers, uuid, vector 130650 , text, time, unordered-containers, uuid, vector 130651 license = stdenv.lib.licenses.bsd3; 130652 - hydraPlatforms = stdenv.lib.platforms.none; 130653 }) {}; 130654 130655 , text, time, unordered-containers, uuid, vector ··· 133426 license = stdenv.lib.licenses.mit; 133427 }) {}; 133428 133429 , text, time, unordered-containers, uuid, vector 133430 , text, time, unordered-containers, uuid, vector 133431 , text, time, unordered-containers, uuid, vector ··· 133510 license = stdenv.lib.licenses.mit; 133511 }) {}; 133512 133513 , text, time, unordered-containers, uuid, vector 133514 , text, time, unordered-containers, uuid, vector 133515 , text, time, unordered-containers, uuid, vector ··· 133547 license = stdenv.lib.licenses.mit; 133548 }) {}; 133549 133550 , text, time, unordered-containers, uuid, vector 133551 , text, time, unordered-containers, uuid, vector 133552 mkDerivation { ··· 133674 }: 133675 mkDerivation { 133676 , text, time, unordered-containers, uuid, vector 133677 - version = "0.1.0.2"; 133678 - , text, time, unordered-containers, uuid, vector 133679 - isLibrary = true; 133680 - isExecutable = true; 133681 - , text, time, unordered-containers, uuid, vector 133682 - , text, time, unordered-containers, uuid, vector 133683 - , text, time, unordered-containers, uuid, vector 133684 - , text, time, unordered-containers, uuid, vector 133685 - license = stdenv.lib.licenses.mit; 133686 - }) {}; 133687 - 133688 - , text, time, unordered-containers, uuid, vector 133689 - , text, time, unordered-containers, uuid, vector 133690 - , text, time, unordered-containers, uuid, vector 133691 - }: 133692 - mkDerivation { 133693 - , text, time, unordered-containers, uuid, vector 133694 version = "0.1.0.3"; 133695 , text, time, unordered-containers, uuid, vector 133696 isLibrary = true; ··· 133700 , text, time, unordered-containers, uuid, vector 133701 , text, time, unordered-containers, uuid, vector 133702 license = stdenv.lib.licenses.mit; 133703 - hydraPlatforms = stdenv.lib.platforms.none; 133704 }) {}; 133705 133706 , text, time, unordered-containers, uuid, vector ··· 143118 ]; 143119 description = "Inline some Assembly in ur Haskell!"; 143120 license = stdenv.lib.licenses.bsd3; 143121 }) {}; 143122 143123 "inline-c_0_5_6_1" = callPackage ··· 144278 broken = true; 144279 }) {}; 144280 144281 "interval-functor" = callPackage 144282 ({ mkDerivation, base, hedgehog, transformers }: 144283 mkDerivation { ··· 144527 }: 144528 mkDerivation { 144529 pname = "invertible"; 144530 - version = "0.2.0.6"; 144531 - sha256 = "1z53i81i8w3hxq0869l2i74s7k6sizbc3i4z0j5s7m412i119amd"; 144532 libraryHaskellDepends = [ 144533 base haskell-src-meta invariant lens partial-isomorphisms 144534 semigroupoids template-haskell transformers ··· 144545 }: 144546 mkDerivation { 144547 pname = "invertible-grammar"; 144548 - version = "0.1.2"; 144549 - sha256 = "1nf7dchcxs8wwd2hgfpf04qd63ws22pafjwb5911lq7da8k1y57j"; 144550 - revision = "4"; 144551 - editedCabalFile = "1574py7cbgig031kh2v52m0w2af0sr0lyaj20makwrm9g8g6k9k8"; 144552 libraryHaskellDepends = [ 144553 base bifunctors containers mtl prettyprinter profunctors semigroups 144554 tagged template-haskell text transformers 144555 ]; 144556 description = "Invertible parsing combinators framework"; 144557 license = stdenv.lib.licenses.bsd3; 144558 - hydraPlatforms = stdenv.lib.platforms.none; 144559 - broken = true; 144560 }) {}; 144561 144562 "invertible-hlist" = callPackage ··· 144966 ({ mkDerivation, base, binary, bytestring, iproute }: 144967 mkDerivation { 144968 pname = "ip2proxy"; 144969 - version = "2.2.1"; 144970 - sha256 = "08ywvg39n59i8p66fpapcpj722lkam7pyd38525p3w4z735d8842"; 144971 libraryHaskellDepends = [ base binary bytestring iproute ]; 144972 description = "IP2Proxy Haskell package for proxy detection"; 144973 license = stdenv.lib.licenses.mit; ··· 145049 }: 145050 mkDerivation { 145051 pname = "ipfs"; 145052 - version = "1.1.0"; 145053 - sha256 = "0qya888h0bf1d1mah3vn5kidv89j5lh0fra9r3i4x0837y7bh5bv"; 145054 libraryHaskellDepends = [ 145055 aeson base bytestring envy flow Glob ip lens monad-logger 145056 regex-compat rio servant-client servant-server swagger2 text vector ··· 146616 }: 146617 mkDerivation { 146618 pname = "ixset-typed-conversions"; 146619 - version = "0.1.0.0"; 146620 - sha256 = "1ls2hd748pacrdr5w5w3dl9byxas8rhn52rhrs3937l6czmynji0"; 146621 libraryHaskellDepends = [ 146622 base exceptions hashable ixset-typed unordered-containers 146623 zipper-extra ··· 149238 }: 149239 mkDerivation { 149240 pname = "jukebox"; 149241 - version = "0.5.1"; 149242 - sha256 = "0f74mml9qpxlfxxvldz9qz89bscj7qwmc5gb42rgfgbkfin6zrdk"; 149243 isLibrary = true; 149244 isExecutable = true; 149245 libraryHaskellDepends = [ ··· 150466 }: 150467 mkDerivation { 150468 pname = "keera-hails-i18n"; 150469 - version = "0.6.0"; 150470 - sha256 = "0xal6xq60yljn53qrxcgsm4jc630za8jfcqxxvlrr9g53kganmpc"; 150471 libraryHaskellDepends = [ 150472 base directory filepath glib hgettext MissingK setlocale 150473 utf8-string ··· 150482 ({ mkDerivation, base }: 150483 mkDerivation { 150484 pname = "keera-hails-mvc-controller"; 150485 - version = "0.6.0"; 150486 - sha256 = "0k1i443mmw2lrpsrh8dzfzcydfzs305b4np45bfc0hlb6czkc4p6"; 150487 libraryHaskellDepends = [ base ]; 150488 description = "Haskell on Gtk rails - Gtk-based controller for MVC applications"; 150489 license = stdenv.lib.licenses.bsd3; ··· 150495 }: 150496 mkDerivation { 150497 pname = "keera-hails-mvc-environment-gtk"; 150498 - version = "0.6.0"; 150499 - sha256 = "0acrafqcjq01qbd68c8ch510ggz3x581jrfx411xh8y0ngk3ydjv"; 150500 libraryHaskellDepends = [ 150501 base keera-hails-mvc-model-protectedmodel keera-hails-mvc-view 150502 keera-hails-mvc-view-gtk ··· 150513 }: 150514 mkDerivation { 150515 pname = "keera-hails-mvc-model-lightmodel"; 150516 - version = "0.6.0"; 150517 - sha256 = "0m2v5dsvjrx42m5psb2yw9jgwzn14yw4l3yswpm469wfdyli88n4"; 150518 libraryHaskellDepends = [ 150519 base containers keera-hails-reactivevalues MissingK stm 150520 template-haskell ··· 150531 }: 150532 mkDerivation { 150533 pname = "keera-hails-mvc-model-protectedmodel"; 150534 - version = "0.6.0"; 150535 - sha256 = "19lb7yxfgrv074z0qcdqa7fdpjx1mgl1djcl6vaz8ydf69qqdyfn"; 150536 libraryHaskellDepends = [ 150537 base containers keera-hails-reactivevalues MissingK stm 150538 template-haskell ··· 150607 }: 150608 mkDerivation { 150609 pname = "keera-hails-reactive-cbmvar"; 150610 - version = "0.6.0"; 150611 - sha256 = "0g9fb8h1japh0hp6bn02lcsm5cls1lk4hhyk7rbxfkrfiln1khqi"; 150612 libraryHaskellDepends = [ 150613 base keera-callbacks keera-hails-reactivevalues lens 150614 ]; ··· 150644 }: 150645 mkDerivation { 150646 pname = "keera-hails-reactive-gtk"; 150647 - version = "0.6.0"; 150648 - sha256 = "1vr0dy8a44fdh4ilwgzm8g5vjdcq9ll145v47ghpn7z7dhlmbgki"; 150649 libraryHaskellDepends = [ 150650 base bytestring cairo glib gtk gtk-helpers 150651 keera-hails-reactivevalues mtl transformers ··· 150663 }: 150664 mkDerivation { 150665 pname = "keera-hails-reactive-htmldom"; 150666 - version = "0.6.0"; 150667 - sha256 = "1hpkmxdhvvwjly860n4kk4ghw47a0yc92dn1ajkz0fc849zp2mpa"; 150668 libraryHaskellDepends = [ 150669 base ghcjs-dom keera-callbacks keera-hails-reactive-cbmvar 150670 keera-hails-reactivevalues mtl transformers ··· 150681 }: 150682 mkDerivation { 150683 pname = "keera-hails-reactive-network"; 150684 - version = "0.6.0"; 150685 - sha256 = "0k0qfh10wv4rabvi2zgwsv97mz7nbvg3rvxfddh6i2hsa48cjvcf"; 150686 libraryHaskellDepends = [ 150687 base bytestring keera-hails-reactivevalues network network-bsd 150688 ]; ··· 150712 ({ mkDerivation, base, keera-hails-reactivevalues, wx, wxcore }: 150713 mkDerivation { 150714 pname = "keera-hails-reactive-wx"; 150715 - version = "0.6.0"; 150716 - sha256 = "1yspys7vqg3xm86j4k0wcih5f9iqi0n7f6vnc83gjl84c8w8zac1"; 150717 libraryHaskellDepends = [ 150718 base keera-hails-reactivevalues wx wxcore 150719 ]; ··· 150729 }: 150730 mkDerivation { 150731 pname = "keera-hails-reactive-yampa"; 150732 - version = "0.6.0"; 150733 - sha256 = "19zxpl9wypy31nwn2ghjcbkvn5xwqfpp9rprkx5ilax3rjagcqcc"; 150734 libraryHaskellDepends = [ 150735 base keera-callbacks keera-hails-reactivevalues time Yampa 150736 ]; ··· 150760 }: 150761 mkDerivation { 150762 pname = "keera-hails-reactivevalues"; 150763 - version = "0.6.0"; 150764 - sha256 = "1fji0axzj0558dczvzgkwpxnkszfdk3zgky933pdkpcq1cnjz0d3"; 150765 libraryHaskellDepends = [ base contravariant ]; 150766 testHaskellDepends = [ 150767 base directory filepath hlint HUnit mtl process QuickCheck ··· 151587 }: 151588 mkDerivation { 151589 pname = "kontrakcja-templates"; 151590 - version = "0.11"; 151591 - sha256 = "09fivafr368kfj5pp0g9r13jvrihhcwhx9ay2f45qilcpv4qbb1r"; 151592 libraryHaskellDepends = [ 151593 base containers directory exceptions HStringTemplate html json 151594 monad-control mtl time transformers transformers-base ··· 151889 ]; 151890 description = "Create Kubernetes Admission Webhooks in Haskell"; 151891 license = stdenv.lib.licenses.mit; 151892 }) {}; 151893 151894 "kuifje" = callPackage ··· 153127 }: 153128 mkDerivation { 153129 pname = "language-ats"; 153130 - version = "1.7.10.1"; 153131 - sha256 = "19m9qalh9xiaw6n60zbhs8yqhd0acq08bkx42i44vfmm0917jys3"; 153132 - revision = "1"; 153133 - editedCabalFile = "1g1dqii5hrr016g1n8sjz7qyzrnmy46zsfd9cp7hmkxqgjk35p8k"; 153134 enableSeparateDataOutput = true; 153135 libraryHaskellDepends = [ 153136 ansi-wl-pprint array base composition-prelude containers deepseq ··· 153406 }: 153407 mkDerivation { 153408 pname = "language-dickinson"; 153409 - version = "1.1.0.2"; 153410 - sha256 = "1g2d32535vmgjiy1ld4hq8g5il98c3h6ykfdl34fq8329qf9gxxr"; 153411 isLibrary = true; 153412 isExecutable = true; 153413 enableSeparateDataOutput = true; ··· 165498 ]; 165499 description = "Massiv (Массив) is an Array Library"; 165500 license = stdenv.lib.licenses.bsd3; 165501 }) {}; 165502 165503 "massiv-io" = callPackage ··· 165523 ]; 165524 description = "Import/export of Image files into massiv Arrays"; 165525 license = stdenv.lib.licenses.bsd3; 165526 }) {}; 165527 165528 "massiv-io_0_3_0_1" = callPackage ··· 165546 description = "Import/export of Image files into massiv Arrays"; 165547 license = stdenv.lib.licenses.bsd3; 165548 hydraPlatforms = stdenv.lib.platforms.none; 165549 }) {}; 165550 165551 "massiv-scheduler" = callPackage ··· 165588 ]; 165589 description = "Library that contains generators, properties and tests for Massiv Array Library"; 165590 license = stdenv.lib.licenses.bsd3; 165591 }) {}; 165592 165593 "master-plan" = callPackage ··· 165728 ]; 165729 description = "Collection of tools for numeric computations"; 165730 license = stdenv.lib.licenses.bsd2; 165731 }) {}; 165732 165733 "math-grads" = callPackage ··· 166040 }: 166041 mkDerivation { 166042 pname = "matrix-as-xyz"; 166043 - version = "0.1.1.3"; 166044 - sha256 = "1wrc9605w3wswx14dx8qfsc5a5pyg0mh2f7bkr6hca2a8c59dlym"; 166045 libraryHaskellDepends = [ base matrix parsec ]; 166046 - testHaskellDepends = [ 166047 - base doctest hspec matrix parsec QuickCheck 166048 - ]; 166049 - description = "Read and Display representation of matrix like \"x,y,z\""; 166050 - license = stdenv.lib.licenses.bsd3; 166051 - hydraPlatforms = stdenv.lib.platforms.none; 166052 - broken = true; 166053 - }) {}; 166054 - 166055 - "matrix-as-xyz_0_1_2_1" = callPackage 166056 - ({ mkDerivation, base, doctest, hspec, matrix, parsec, QuickCheck 166057 - }: 166058 - mkDerivation { 166059 - pname = "matrix-as-xyz"; 166060 - version = "0.1.2.1"; 166061 - sha256 = "0k49k16mxp7izkanan0yrrlkzvblw1w7bvfrh486fys83gvkb3x8"; 166062 - libraryHaskellDepends = [ base doctest hspec matrix parsec ]; 166063 testHaskellDepends = [ 166064 base doctest hspec matrix parsec QuickCheck 166065 ]; ··· 166210 }: 166211 mkDerivation { 166212 pname = "matterhorn"; 166213 - version = "50200.9.0"; 166214 - sha256 = "1ky022msmh1ashhw8kwxwj4lcswa6xin2537q4bx8miii07cfvaw"; 166215 isLibrary = false; 166216 isExecutable = true; 166217 enableSeparateDataOutput = true; ··· 166236 ]; 166237 description = "Terminal client for the Mattermost chat system"; 166238 license = stdenv.lib.licenses.bsd3; 166239 - hydraPlatforms = stdenv.lib.platforms.none; 166240 - broken = true; 166241 }) {}; 166242 166243 "mattermost-api" = callPackage ··· 166250 }: 166251 mkDerivation { 166252 pname = "mattermost-api"; 166253 - version = "50200.6.0"; 166254 - sha256 = "0p03r9hss1xrg4a542l2pyacm49ahkkqkr3afcwgdyb0m65ra620"; 166255 isLibrary = true; 166256 isExecutable = true; 166257 libraryHaskellDepends = [ ··· 166275 }: 166276 mkDerivation { 166277 pname = "mattermost-api-qc"; 166278 - version = "50200.6.0"; 166279 - sha256 = "11j1bli553n59j54qn9ka1a5d37jk1ijgbwaa3001gmxhj526r62"; 166280 libraryHaskellDepends = [ 166281 base containers mattermost-api QuickCheck text time 166282 ]; ··· 168214 broken = true; 168215 }) {}; 168216 168217 "metronome" = callPackage 168218 ({ mkDerivation, base, data-lens, data-lens-template, hosc, stm }: 168219 mkDerivation { ··· 170074 }: 170075 mkDerivation { 170076 pname = "mixed-types-num"; 170077 - version = "0.4.0.1"; 170078 - sha256 = "10fkqb4d534nr5yqdybmvrbg3alfjvki4qxg20ma8mwxyiz4wc5g"; 170079 - libraryHaskellDepends = [ 170080 - base hspec hspec-smallcheck mtl QuickCheck smallcheck 170081 - template-haskell 170082 - ]; 170083 - testHaskellDepends = [ base hspec hspec-smallcheck QuickCheck ]; 170084 - description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; 170085 - license = stdenv.lib.licenses.bsd3; 170086 - }) {}; 170087 - 170088 - "mixed-types-num_0_4_0_2" = callPackage 170089 - ({ mkDerivation, base, hspec, hspec-smallcheck, mtl, QuickCheck 170090 - , smallcheck, template-haskell 170091 - }: 170092 - mkDerivation { 170093 - pname = "mixed-types-num"; 170094 version = "0.4.0.2"; 170095 sha256 = "0kirxpnmwwnbxamwpzrxyx69n482xhifqpr5id73pfni7lrd126p"; 170096 libraryHaskellDepends = [ ··· 170100 testHaskellDepends = [ base hspec hspec-smallcheck QuickCheck ]; 170101 description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; 170102 license = stdenv.lib.licenses.bsd3; 170103 - hydraPlatforms = stdenv.lib.platforms.none; 170104 }) {}; 170105 170106 "mixpanel-client" = callPackage ··· 171444 broken = true; 171445 }) {}; 171446 171447 "monad-io-adapter" = callPackage 171448 ({ mkDerivation, base, exceptions, hspec, monad-control 171449 , monad-logger, mtl, transformers, transformers-base ··· 171555 license = stdenv.lib.licenses.mit; 171556 }) {}; 171557 171558 "monad-logger-json" = callPackage 171559 ({ mkDerivation, aeson, base, monad-logger, template-haskell, text 171560 }: ··· 171596 pname = "monad-logger-syslog"; 171597 version = "0.1.6.0"; 171598 sha256 = "1n4r0fl043r18683ym3k03sdm3b9wlxfzjgmnxi804kwna639rj3"; 171599 libraryHaskellDepends = [ 171600 base bytestring fast-logger hsyslog monad-logger text transformers 171601 ]; ··· 176476 license = stdenv.lib.licenses.bsd3; 176477 }) {}; 176478 176479 - "mwc-random_0_15_0_0" = callPackage 176480 ({ mkDerivation, base, bytestring, doctest, gauge, math-functions 176481 , mersenne-random, primitive, QuickCheck, random, tasty 176482 , tasty-hunit, tasty-quickcheck, time, vector 176483 }: 176484 mkDerivation { 176485 pname = "mwc-random"; 176486 - version = "0.15.0.0"; 176487 - sha256 = "1hyqyakm9kbrbgr247n72rp90hcrwhak2p90bldkd2himmfaskxk"; 176488 libraryHaskellDepends = [ 176489 base math-functions primitive random time vector 176490 ]; ··· 177014 }) {}; 177015 177016 "myxine-client" = callPackage 177017 - ({ mkDerivation, aeson, base, bytestring, dependent-map 177018 - , dependent-sum, file-embed, hashable, http-client, http-types, req 177019 - , template-haskell, text, transformers, unordered-containers 177020 }: 177021 mkDerivation { 177022 pname = "myxine-client"; 177023 - version = "0.0.0.2"; 177024 - sha256 = "1pfvkdc7pa7x16skdcx355l20qk6574nhkjyzpk9jb7i0wqjqsf8"; 177025 libraryHaskellDepends = [ 177026 - aeson base bytestring dependent-map dependent-sum file-embed 177027 - hashable http-client http-types req template-haskell text 177028 transformers unordered-containers 177029 ]; 177030 testHaskellDepends = [ bytestring text ]; ··· 180793 }: 180794 mkDerivation { 180795 pname = "ngx-export-tools-extra"; 180796 - version = "0.5.5.0"; 180797 - sha256 = "1w7vm0sic1v4zy10m8rkzrgbkvn3wnb4320gkl2dclsfdk70d5b3"; 180798 libraryHaskellDepends = [ 180799 aeson ansi-wl-pprint array base base64 binary bytestring 180800 case-insensitive containers ede enclosed-exceptions http-client ··· 181028 }: 181029 mkDerivation { 181030 pname = "niv"; 181031 - version = "0.2.14"; 181032 - sha256 = "10iyddplwwfbvj8m3fv0kzjbjnv8yhp17b3xi23dv5pyxzmacp6l"; 181033 isLibrary = true; 181034 isExecutable = true; 181035 enableSeparateDataOutput = true; ··· 181655 }: 181656 mkDerivation { 181657 pname = "nom"; 181658 - version = "0.1.0.1"; 181659 - sha256 = "01dg6h98pdzhrwryzhcmjrynxv6674pjpklkxkrpaymy29a9c9a0"; 181660 setupHaskellDepends = [ base Cabal cabal-doctest ]; 181661 libraryHaskellDepends = [ 181662 algebra base containers data-default extra finite-typelits flow ··· 181938 }) {}; 181939 181940 "nonempty-containers" = callPackage 181941 - ({ mkDerivation, base, comonad, containers, deepseq, hedgehog 181942 - , hedgehog-fn, nonempty-vector, semigroupoids, tasty 181943 - , tasty-hedgehog, text, these, vector 181944 - }: 181945 - mkDerivation { 181946 - pname = "nonempty-containers"; 181947 - version = "0.3.3.0"; 181948 - sha256 = "11mrv2vzdqxjx3xn93zlwfxh7z2d5ca5cbsr25y4zv34brn114g2"; 181949 - libraryHaskellDepends = [ 181950 - base comonad containers deepseq nonempty-vector semigroupoids these 181951 - vector 181952 - ]; 181953 - testHaskellDepends = [ 181954 - base comonad containers hedgehog hedgehog-fn nonempty-vector 181955 - semigroupoids tasty tasty-hedgehog text these vector 181956 - ]; 181957 - description = "Non-empty variants of containers data types, with full API"; 181958 - license = stdenv.lib.licenses.bsd3; 181959 - }) {}; 181960 - 181961 - "nonempty-containers_0_3_4_0" = callPackage 181962 ({ mkDerivation, aeson, base, comonad, containers, deepseq 181963 , hedgehog, hedgehog-fn, nonempty-vector, semigroupoids, tasty 181964 , tasty-hedgehog, text, these, vector ··· 181977 ]; 181978 description = "Non-empty variants of containers data types, with full API"; 181979 license = stdenv.lib.licenses.bsd3; 181980 - hydraPlatforms = stdenv.lib.platforms.none; 181981 }) {}; 181982 181983 "nonempty-lift" = callPackage ··· 184293 broken = true; 184294 }) {}; 184295 184296 "omaketex" = callPackage 184297 ({ mkDerivation, base, optparse-applicative, shakespeare-text 184298 , shelly, text ··· 184676 }: 184677 mkDerivation { 184678 pname = "opaleye"; 184679 - version = "0.6.7004.2"; 184680 - sha256 = "0lmfpbrfy6l7nlkjn26smmv3n992b54xnplwm67jjpryaz7psdz1"; 184681 - revision = "1"; 184682 - editedCabalFile = "1gnig6gdpcz6zkzp9x97m9blhgha2z4ksd9pyqpvm6qrdsjpqsfp"; 184683 - libraryHaskellDepends = [ 184684 - aeson base base16-bytestring bytestring case-insensitive 184685 - contravariant postgresql-simple pretty product-profunctors 184686 - profunctors scientific semigroups text time time-locale-compat 184687 - transformers uuid void 184688 - ]; 184689 - testHaskellDepends = [ 184690 - aeson base containers contravariant dotenv hspec hspec-discover 184691 - multiset postgresql-simple product-profunctors profunctors 184692 - QuickCheck semigroups text time transformers uuid 184693 - ]; 184694 - testToolDepends = [ hspec-discover ]; 184695 - description = "An SQL-generating DSL targeting PostgreSQL"; 184696 - license = stdenv.lib.licenses.bsd3; 184697 - }) {}; 184698 - 184699 - "opaleye_0_6_7005_0" = callPackage 184700 - ({ mkDerivation, aeson, base, base16-bytestring, bytestring 184701 - , case-insensitive, containers, contravariant, dotenv, hspec 184702 - , hspec-discover, multiset, postgresql-simple, pretty 184703 - , product-profunctors, profunctors, QuickCheck, scientific 184704 - , semigroups, text, time, time-locale-compat, transformers, uuid 184705 - , void 184706 - }: 184707 - mkDerivation { 184708 - pname = "opaleye"; 184709 version = "0.6.7005.0"; 184710 sha256 = "0i5lwfvj7382ayxzdbip1nwjiiy7jn58g7qa33s44x3pnjv3wssy"; 184711 revision = "1"; ··· 184724 testToolDepends = [ hspec-discover ]; 184725 description = "An SQL-generating DSL targeting PostgreSQL"; 184726 license = stdenv.lib.licenses.bsd3; 184727 - hydraPlatforms = stdenv.lib.platforms.none; 184728 }) {}; 184729 184730 "opaleye-classy" = callPackage ··· 186314 }: 186315 mkDerivation { 186316 pname = "optima"; 186317 - version = "0.4"; 186318 - sha256 = "0ryrz9739g1zql9ldll2ilfiyazgz5xixk31wajdqz0xdzqg3bbl"; 186319 libraryHaskellDepends = [ 186320 attoparsec attoparsec-data base optparse-applicative text 186321 text-builder ··· 186495 license = stdenv.lib.licenses.bsd3; 186496 }) {}; 186497 186498 "optparse-applicative-simple" = callPackage 186499 ({ mkDerivation, attoparsec, attoparsec-data, base-prelude 186500 , optparse-applicative, rerebase, text ··· 187577 pname = "packdeps"; 187578 version = "0.6.0.0"; 187579 sha256 = "10hrsshzljs6yjzgpw6kpdc4fx4xrbafwicpapcmmj1y66rj00dz"; 187580 isLibrary = true; 187581 isExecutable = true; 187582 libraryHaskellDepends = [ ··· 188681 pname = "pandoc-types"; 188682 version = "1.20"; 188683 sha256 = "0wz89ywyhvxz8daw4ia132kg6ynx5y4wva4g899wvq4kyjy1dixa"; 188684 libraryHaskellDepends = [ 188685 aeson base bytestring containers deepseq ghc-prim QuickCheck syb 188686 text transformers ··· 188991 }: 188992 mkDerivation { 188993 pname = "pantry"; 188994 - version = "0.4.0.1"; 188995 - sha256 = "182aiwwgrsdj9f4x71q1grj674d91djp4q6bz2l51ly5dsjy5wbf"; 188996 libraryHaskellDepends = [ 188997 aeson ansi-terminal base bytestring Cabal casa-client casa-types 188998 conduit conduit-extra containers cryptonite cryptonite-conduit ··· 192641 broken = true; 192642 }) {}; 192643 192644 "periodic-polynomials" = callPackage 192645 ({ mkDerivation, base, vector }: 192646 mkDerivation { ··· 192652 license = stdenv.lib.licenses.mit; 192653 }) {}; 192654 192655 "perm" = callPackage 192656 ({ mkDerivation, base, catch-fd, HUnit, mtl, test-framework 192657 , test-framework-hunit, transformers ··· 193914 librarySystemDepends = [ gu pgf ]; 193915 description = "Bindings to the C version of the PGF runtime"; 193916 license = stdenv.lib.licenses.lgpl3; 193917 }) {gu = null; inherit (pkgs) pgf;}; 193918 193919 "pgm" = callPackage ··· 194933 194934 "pipes" = callPackage 194935 ({ mkDerivation, base, criterion, exceptions, mmorph, mtl 194936 - , optparse-applicative, QuickCheck, semigroups, test-framework 194937 - , test-framework-quickcheck2, transformers, void 194938 - }: 194939 - mkDerivation { 194940 - pname = "pipes"; 194941 - version = "4.3.13"; 194942 - sha256 = "1ch3xr5f5if0psd3lsyrpkwrgh36synnzqcpimghprys68l4zfkn"; 194943 - libraryHaskellDepends = [ 194944 - base exceptions mmorph mtl semigroups transformers void 194945 - ]; 194946 - testHaskellDepends = [ 194947 - base mtl QuickCheck test-framework test-framework-quickcheck2 194948 - transformers 194949 - ]; 194950 - benchmarkHaskellDepends = [ 194951 - base criterion mtl optparse-applicative transformers 194952 - ]; 194953 - description = "Compositional pipelines"; 194954 - license = stdenv.lib.licenses.bsd3; 194955 - }) {}; 194956 - 194957 - "pipes_4_3_14" = callPackage 194958 - ({ mkDerivation, base, criterion, exceptions, mmorph, mtl 194959 , optparse-applicative, QuickCheck, test-framework 194960 , test-framework-quickcheck2, transformers, void 194961 }: ··· 194975 ]; 194976 description = "Compositional pipelines"; 194977 license = stdenv.lib.licenses.bsd3; 194978 - hydraPlatforms = stdenv.lib.platforms.none; 194979 }) {}; 194980 194981 "pipes-aeson" = callPackage ··· 196671 ]; 196672 description = "run a subprocess, combining stdout and stderr"; 196673 license = stdenv.lib.licenses.mit; 196674 }) {}; 196675 196676 "plist" = callPackage ··· 197853 }: 197854 mkDerivation { 197855 pname = "polysemy-webserver"; 197856 - version = "0.2.0.0"; 197857 - sha256 = "0ld1ncal2isibzjbq72jk3dp8rgvz32zyvisjdd79wxwxg1z1nad"; 197858 libraryHaskellDepends = [ 197859 base bytestring http-types polysemy polysemy-plugin wai 197860 wai-websockets warp websockets ··· 198888 }) {}; 198889 198890 "postgres-websockets" = callPackage 198891 - ({ mkDerivation, aeson, alarmclock, auto-update, base 198892 , base64-bytestring, bytestring, contravariant, either, envparse 198893 , hasql, hasql-notifications, hasql-pool, hspec, hspec-wai 198894 - , hspec-wai-json, http-types, jose, lens, postgresql-libpq 198895 - , protolude, retry, stm, stm-containers, stringsearch, text, time 198896 - , transformers, unordered-containers, wai, wai-app-static 198897 - , wai-extra, wai-websockets, warp, websockets 198898 }: 198899 mkDerivation { 198900 pname = "postgres-websockets"; 198901 - version = "0.7.0.0"; 198902 - sha256 = "0kjwj81ccn29iflx3sszb8sjap9zvi22sm1dm4vg7qv33n0jgfmp"; 198903 isLibrary = true; 198904 isExecutable = true; 198905 libraryHaskellDepends = [ 198906 - aeson alarmclock base bytestring contravariant either hasql 198907 - hasql-notifications hasql-pool http-types jose lens 198908 - postgresql-libpq protolude retry stm stm-containers stringsearch 198909 - text time unordered-containers wai wai-websockets websockets 198910 - ]; 198911 - executableHaskellDepends = [ 198912 - auto-update base base64-bytestring bytestring envparse hasql 198913 - hasql-pool http-types protolude text time transformers wai 198914 - wai-app-static wai-extra warp 198915 ]; 198916 testHaskellDepends = [ 198917 aeson base hasql hasql-notifications hasql-pool hspec hspec-wai 198918 - hspec-wai-json http-types protolude stm time unordered-containers 198919 - wai-extra 198920 ]; 198921 description = "Middleware to map LISTEN/NOTIFY messages to Websockets"; 198922 license = stdenv.lib.licenses.bsd3; ··· 200436 }) {}; 200437 200438 "predicate-typed" = callPackage 200439 - ({ mkDerivation, aeson, base, binary, bytestring, comonad 200440 - , containers, deepseq, directory, doctest, hashable, lens, mtl 200441 - , pcre-heavy, pcre-light, pretty, pretty-terminal, QuickCheck, safe 200442 - , stm, tasty, tasty-hunit, tasty-quickcheck, template-haskell, text 200443 - , th-lift, these, time, tree-view 200444 }: 200445 mkDerivation { 200446 pname = "predicate-typed"; 200447 - version = "0.7.2.0"; 200448 - sha256 = "0ikgar72pc1cracqfswzajr2razv98iyanmf7vwd9nkqxkwyqkpk"; 200449 libraryHaskellDepends = [ 200450 - aeson base binary bytestring comonad containers deepseq directory 200451 - hashable lens mtl pcre-heavy pcre-light pretty pretty-terminal 200452 - QuickCheck safe template-haskell text th-lift these time tree-view 200453 ]; 200454 testHaskellDepends = [ 200455 - aeson base binary bytestring comonad containers deepseq directory 200456 - doctest hashable lens mtl pcre-heavy pcre-light pretty 200457 - pretty-terminal QuickCheck safe stm tasty tasty-hunit 200458 - tasty-quickcheck template-haskell text th-lift these time tree-view 200459 ]; 200460 description = "Predicates, Refinement types and Dsl"; 200461 license = stdenv.lib.licenses.bsd3; ··· 203721 license = stdenv.lib.licenses.asl20; 203722 }) {}; 203723 203724 "protobuf" = callPackage 203725 ({ mkDerivation, base, base-orphans, bytestring, cereal, containers 203726 , data-binary-ieee754, deepseq, hex, HUnit, mtl, QuickCheck, tagged ··· 205650 broken = true; 205651 }) {}; 205652 205653 "qm-interpolated-string" = callPackage 205654 ({ mkDerivation, base, bytestring, haskell-src-meta, hspec 205655 , template-haskell, text ··· 205797 license = stdenv.lib.licenses.mit; 205798 }) {}; 205799 205800 "qsem" = callPackage 205801 ({ mkDerivation, base, ghc-prim }: 205802 mkDerivation { ··· 210412 license = stdenv.lib.licenses.bsd3; 210413 }) {}; 210414 210415 "record-encode" = callPackage 210416 ({ mkDerivation, base, doctest, generics-sop, hspec, QuickCheck 210417 , vector ··· 214311 license = stdenv.lib.licenses.bsd3; 214312 }) {}; 214313 214314 - "req_3_4_0" = callPackage 214315 ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder 214316 , bytestring, case-insensitive, connection, exceptions, hspec 214317 , hspec-core, hspec-discover, http-api-data, http-client 214318 , http-client-tls, http-types, modern-uri, monad-control, mtl 214319 , QuickCheck, retry, template-haskell, text, time, transformers 214320 - , transformers-base, unordered-containers 214321 }: 214322 mkDerivation { 214323 pname = "req"; 214324 - version = "3.4.0"; 214325 - sha256 = "1ffgrk45fa3knrl9cp01n7yl9gakd27mvyy1zq2j67h82bqz9qqa"; 214326 enableSeparateDataOutput = true; 214327 libraryHaskellDepends = [ 214328 aeson authenticate-oauth base blaze-builder bytestring 214329 case-insensitive connection exceptions http-api-data http-client 214330 http-client-tls http-types modern-uri monad-control mtl retry 214331 template-haskell text time transformers transformers-base 214332 ]; 214333 testHaskellDepends = [ 214334 aeson base blaze-builder bytestring case-insensitive hspec ··· 214567 }: 214568 mkDerivation { 214569 pname = "rescue"; 214570 - version = "0.2.0"; 214571 - sha256 = "09mlamir7n2jjm50qxlws8w9qa5xzrm6fr21vsh9gpwf8pkd98qw"; 214572 libraryHaskellDepends = [ 214573 base exceptions ghc mtl text transformers world-peace 214574 ]; ··· 216252 }: 216253 mkDerivation { 216254 pname = "rio"; 216255 - version = "0.1.17.0"; 216256 - sha256 = "0zs7s67fk1g1hckxk2iii2ad2hhsl9l1j3dkcdb7imzdha13q9rd"; 216257 - libraryHaskellDepends = [ 216258 - base bytestring containers deepseq directory exceptions filepath 216259 - hashable microlens microlens-mtl mtl primitive process text time 216260 - typed-process unix unliftio unliftio-core unordered-containers 216261 - vector 216262 - ]; 216263 - testHaskellDepends = [ 216264 - base bytestring containers deepseq directory exceptions filepath 216265 - hashable hspec microlens microlens-mtl mtl primitive process 216266 - QuickCheck text time typed-process unix unliftio unliftio-core 216267 - unordered-containers vector 216268 - ]; 216269 - description = "A standard library for Haskell"; 216270 - license = stdenv.lib.licenses.mit; 216271 - }) {}; 216272 - 216273 - "rio_0_1_18_0" = callPackage 216274 - ({ mkDerivation, base, bytestring, containers, deepseq, directory 216275 - , exceptions, filepath, hashable, hspec, microlens, microlens-mtl 216276 - , mtl, primitive, process, QuickCheck, text, time, typed-process 216277 - , unix, unliftio, unliftio-core, unordered-containers, vector 216278 - }: 216279 - mkDerivation { 216280 - pname = "rio"; 216281 version = "0.1.18.0"; 216282 sha256 = "11f1cxa9c90d7hgqn9bl08l499n2dzdj31f9pw9acb1nrlx5hik8"; 216283 libraryHaskellDepends = [ ··· 216294 ]; 216295 description = "A standard library for Haskell"; 216296 license = stdenv.lib.licenses.mit; 216297 - hydraPlatforms = stdenv.lib.platforms.none; 216298 }) {}; 216299 216300 "rio-orphans" = callPackage ··· 216323 }: 216324 mkDerivation { 216325 pname = "rio-prettyprint"; 216326 - version = "0.1.0.0"; 216327 - sha256 = "0n8ldc73i0954c6s8jh0hibxrisp84yh5pcxv3x3q0wg4v2xvr0m"; 216328 - revision = "2"; 216329 - editedCabalFile = "1hvhjqy7kfk7fglx1rw8axscy0dfzqwd1564awnwdhvmf8silkkn"; 216330 - libraryHaskellDepends = [ 216331 - aeson annotated-wl-pprint ansi-terminal array base Cabal colour mtl 216332 - path rio text 216333 - ]; 216334 - description = "Pretty-printing for RIO"; 216335 - license = stdenv.lib.licenses.bsd3; 216336 - }) {}; 216337 - 216338 - "rio-prettyprint_0_1_1_0" = callPackage 216339 - ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal, array 216340 - , base, Cabal, colour, mtl, path, rio, text 216341 - }: 216342 - mkDerivation { 216343 - pname = "rio-prettyprint"; 216344 version = "0.1.1.0"; 216345 sha256 = "1h092l46pfm6k3n0vb6c67gb64kahzc97qv45rhvp0cq2y5bqykf"; 216346 libraryHaskellDepends = [ ··· 216349 ]; 216350 description = "Pretty-printing for RIO"; 216351 license = stdenv.lib.licenses.bsd3; 216352 - hydraPlatforms = stdenv.lib.platforms.none; 216353 }) {}; 216354 216355 "riot" = callPackage ··· 219196 }) {}; 219197 219198 "sak" = callPackage 219199 - ({ mkDerivation, base, brotli, bytestring, bz2, cpphs, directory 219200 - , filepath, lz4-hs, lzlib, lzma, lzo, optparse-applicative 219201 - , parallel-io, snappy-lazy, zlib, zstd 219202 }: 219203 mkDerivation { 219204 pname = "sak"; 219205 - version = "0.1.2.5"; 219206 - sha256 = "1xz3g7ksq1v8239xq2cddprlq4g8imid002w7wak15kv8aqvil1l"; 219207 isLibrary = false; 219208 isExecutable = true; 219209 enableSeparateDataOutput = true; 219210 executableHaskellDepends = [ 219211 - base brotli bytestring bz2 directory filepath lz4-hs lzlib lzma lzo 219212 - optparse-applicative parallel-io snappy-lazy zlib zstd 219213 ]; 219214 executableToolDepends = [ cpphs ]; 219215 description = "Compression command-line tool"; ··· 220502 ]; 220503 description = "Work stealing scheduler"; 220504 license = stdenv.lib.licenses.bsd3; 220505 }) {}; 220506 220507 "schedyield" = callPackage ··· 222282 broken = true; 222283 }) {sedna = null;}; 222284 222285 "selda" = callPackage 222286 ({ mkDerivation, base, bytestring, containers, exceptions, mtl 222287 , random, text, time, uuid-types ··· 224944 ({ mkDerivation, aeson, base, servant }: 224945 mkDerivation { 224946 pname = "servant-jsonrpc"; 224947 - version = "1.0.1"; 224948 - sha256 = "0hizazwng0pcxd8p0n04xlgrx3vbr7nwc2k9s143q6yc6hp0dlj4"; 224949 libraryHaskellDepends = [ aeson base servant ]; 224950 description = "JSON-RPC messages and endpoints"; 224951 license = stdenv.lib.licenses.bsd3; ··· 224959 }: 224960 mkDerivation { 224961 pname = "servant-jsonrpc-client"; 224962 - version = "1.0.1"; 224963 - sha256 = "0s9ii02mfgyissyq4dbs9cqm3shrgiysjkhwgs6c0s30qqakjald"; 224964 libraryHaskellDepends = [ 224965 aeson base servant servant-client-core servant-jsonrpc 224966 ]; ··· 224976 }: 224977 mkDerivation { 224978 pname = "servant-jsonrpc-server"; 224979 - version = "2.0.0"; 224980 - sha256 = "0svnbsxzwfxdbyjhgq1hxxpjv96dzqkwg44bnq24lc5jk7j244sk"; 224981 libraryHaskellDepends = [ 224982 aeson base containers mtl servant servant-jsonrpc servant-server 224983 ]; ··· 226493 pname = "serversession"; 226494 version = "1.0.1"; 226495 sha256 = "08j8v6a2018bmvwsb7crdg0ajak74jggb073pdpx9s0pf3cfzyrz"; 226496 - revision = "1"; 226497 - editedCabalFile = "0sxr4c7nk16n51y53qwwjnvgqjdqjm1ybaqkf0r8y91fac8x47b5"; 226498 libraryHaskellDepends = [ 226499 aeson base base64-bytestring bytestring data-default hashable nonce 226500 path-pieces text time transformers unordered-containers ··· 227093 ]; 227094 description = "Invertible grammar combinators for S-expressions"; 227095 license = stdenv.lib.licenses.bsd3; 227096 hydraPlatforms = stdenv.lib.platforms.none; 227097 - broken = true; 227098 }) {}; 227099 227100 "sexp-show" = callPackage ··· 227778 license = stdenv.lib.licenses.mit; 227779 }) {}; 227780 227781 - "shake-plus_0_3_1_0" = callPackage 227782 ({ mkDerivation, base, extra, path, rio, shake }: 227783 mkDerivation { 227784 pname = "shake-plus"; 227785 - version = "0.3.1.0"; 227786 - sha256 = "1a1dj61sl0acil3bfw84nlvsi64f6bmlxbb4vb6q5rqarnhvk5qj"; 227787 libraryHaskellDepends = [ base extra path rio shake ]; 227788 description = "Re-export of Shake using well-typed paths and ReaderT"; 227789 license = stdenv.lib.licenses.mit; ··· 228544 pname = "shh"; 228545 version = "0.7.0.8"; 228546 sha256 = "1f8r8wymdbv8j2m3apdw75xqq2c1s4wr694qhxljvwa9r0s326wf"; 228547 isLibrary = true; 228548 isExecutable = true; 228549 libraryHaskellDepends = [ ··· 236806 }: 236807 mkDerivation { 236808 pname = "squeeze"; 236809 - version = "1.0.4.18"; 236810 - sha256 = "0s10k1fyh8xrsf0cbj32r8f7clcj6pfyc39b9bmgsixg1qngjbdj"; 236811 isLibrary = true; 236812 isExecutable = true; 236813 libraryHaskellDepends = [ ··· 241034 license = stdenv.lib.licenses.bsd3; 241035 }) {}; 241036 241037 "strict-concurrency" = callPackage 241038 ({ mkDerivation, base, deepseq }: 241039 mkDerivation { ··· 241115 libraryHaskellDepends = [ base lens strict ]; 241116 description = "Lenses for types in strict package"; 241117 license = stdenv.lib.licenses.bsd3; 241118 }) {}; 241119 241120 "strict-list" = callPackage ··· 241143 libraryHaskellDepends = [ base optics-core strict ]; 241144 description = "Optics for types in strict package"; 241145 license = stdenv.lib.licenses.bsd3; 241146 }) {}; 241147 241148 "strict-tuple" = callPackage ··· 242215 }: 242216 mkDerivation { 242217 pname = "stylish-haskell"; 242218 - version = "0.11.0.0"; 242219 - sha256 = "124dn46ddxfcjyrmwjwijqan0dd55zzx9nwckg1df8b6al6k0x3j"; 242220 - isLibrary = true; 242221 - isExecutable = true; 242222 - libraryHaskellDepends = [ 242223 - aeson base bytestring Cabal containers directory file-embed 242224 - filepath haskell-src-exts HsYAML HsYAML-aeson mtl semigroups syb 242225 - text 242226 - ]; 242227 - executableHaskellDepends = [ 242228 - aeson base bytestring Cabal containers directory file-embed 242229 - filepath haskell-src-exts HsYAML HsYAML-aeson mtl 242230 - optparse-applicative strict syb 242231 - ]; 242232 - testHaskellDepends = [ 242233 - aeson base bytestring Cabal containers directory file-embed 242234 - filepath haskell-src-exts HsYAML HsYAML-aeson HUnit mtl random syb 242235 - test-framework test-framework-hunit text 242236 - ]; 242237 - description = "Haskell code prettifier"; 242238 - license = stdenv.lib.licenses.bsd3; 242239 - }) {}; 242240 - 242241 - "stylish-haskell_0_11_0_3" = callPackage 242242 - ({ mkDerivation, aeson, base, bytestring, Cabal, containers 242243 - , directory, file-embed, filepath, haskell-src-exts, HsYAML 242244 - , HsYAML-aeson, HUnit, mtl, optparse-applicative, random 242245 - , semigroups, strict, syb, test-framework, test-framework-hunit 242246 - , text 242247 - }: 242248 - mkDerivation { 242249 - pname = "stylish-haskell"; 242250 version = "0.11.0.3"; 242251 sha256 = "10svl5q95n9i76rqvlxibi784qzvdyg8qfl1xwk7c32y84nyfibn"; 242252 isLibrary = true; ··· 242268 ]; 242269 description = "Haskell code prettifier"; 242270 license = stdenv.lib.licenses.bsd3; 242271 - hydraPlatforms = stdenv.lib.platforms.none; 242272 }) {}; 242273 242274 "stylist" = callPackage ··· 242656 license = stdenv.lib.licenses.mit; 242657 }) {}; 242658 242659 "summoner" = callPackage 242660 ({ mkDerivation, aeson, base, colourista, containers, directory 242661 , filepath, generic-data, gitrev, hedgehog, hspec, hspec-hedgehog ··· 243676 license = stdenv.lib.licenses.lgpl21; 243677 }) {}; 243678 243679 "sws" = callPackage 243680 ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring 243681 , containers, cryptonite, directory, filepath, hourglass ··· 244216 }: 244217 mkDerivation { 244218 pname = "symmetry-operations-symbols"; 244219 - version = "0.0.1.4"; 244220 - sha256 = "0ki9cmxpwds48chdb2mp4ysn6wh8qmmh5srspmjf4s0knaapzk2j"; 244221 libraryHaskellDepends = [ base matrix matrix-as-xyz parsec ]; 244222 testHaskellDepends = [ 244223 base doctest hspec matrix matrix-as-xyz parsec QuickCheck ··· 245492 executablePkgconfigDepends = [ gtk3 ]; 245493 description = "A desktop bar similar to xmobar, but with more GUI"; 245494 license = stdenv.lib.licenses.bsd3; 245495 }) {inherit (pkgs) gtk3;}; 245496 245497 "tag-bits" = callPackage ··· 246453 }: 246454 mkDerivation { 246455 pname = "taskell"; 246456 - version = "1.9.3.0"; 246457 - sha256 = "06pdfi5bw2ga0pizq01x35gp8f90c8gr4ivbm5k4a7xv6pwr8mf0"; 246458 isLibrary = true; 246459 isExecutable = true; 246460 libraryHaskellDepends = [ ··· 249514 testToolDepends = [ hspec-discover tasty-discover ]; 249515 description = "Docker containers for your integration tests"; 249516 license = stdenv.lib.licenses.mit; 249517 }) {}; 249518 249519 "testing-feat" = callPackage ··· 251710 license = stdenv.lib.licenses.mit; 251711 }) {}; 251712 251713 "threadPool" = callPackage 251714 ({ mkDerivation, base, process }: 251715 mkDerivation { ··· 253159 }: 253160 mkDerivation { 253161 pname = "timers"; 253162 - version = "0.2.0.3"; 253163 - sha256 = "0q4w41jdhf5ildcdl94lgfn06fg275hf04dpah3l6vva24d8alj5"; 253164 libraryHaskellDepends = [ 253165 base lifted-base monad-control suspend transformers-base 253166 ]; ··· 253735 broken = true; 253736 }) {}; 253737 253738 - "tldr_0_7_1" = callPackage 253739 ({ mkDerivation, ansi-terminal, base, bytestring, cmark, containers 253740 , directory, filepath, optparse-applicative, semigroups, tasty 253741 , tasty-golden, text, typed-process 253742 }: 253743 mkDerivation { 253744 pname = "tldr"; 253745 - version = "0.7.1"; 253746 - sha256 = "1vc9rxyxczs7kswrjq2c4lziwvnwri53ng8yq4724hpjvybiqs57"; 253747 isLibrary = true; 253748 isExecutable = true; 253749 libraryHaskellDepends = [ 253750 - ansi-terminal base bytestring cmark text 253751 ]; 253752 - executableHaskellDepends = [ 253753 - base containers directory filepath optparse-applicative semigroups 253754 - typed-process 253755 - ]; 253756 testHaskellDepends = [ base tasty tasty-golden ]; 253757 description = "Haskell tldr client"; 253758 license = stdenv.lib.licenses.bsd3; ··· 256770 pname = "trifecta"; 256771 version = "2.1"; 256772 sha256 = "0fr326lzf38m20h2g4189nsyml9w3128924zbd3cd93cgfqcc9bs"; 256773 - revision = "1"; 256774 - editedCabalFile = "17s7wrc7zmvh1lf0ky96j7797rdgxrc10man8kf1nr24907pxw91"; 256775 setupHaskellDepends = [ base Cabal cabal-doctest ]; 256776 libraryHaskellDepends = [ 256777 ansi-terminal array base blaze-builder blaze-html blaze-markup ··· 257740 benchmarkHaskellDepends = [ base criterion text ]; 257741 description = "Shell programming, Haskell-style"; 257742 license = stdenv.lib.licenses.bsd3; 257743 }) {}; 257744 257745 "turtle-options" = callPackage ··· 266818 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 266819 mkDerivation { 266820 pname = "vulkan"; 266821 - version = "3.6.3"; 266822 - sha256 = "0w0887xrkai5xhky245gnjjfq7d8cw43l90rmfvhqxwdf7jkkxc8"; 266823 libraryHaskellDepends = [ base bytestring transformers vector ]; 266824 librarySystemDepends = [ vulkan ]; 266825 description = "Bindings to the Vulkan graphics API"; ··· 267047 license = stdenv.lib.licenses.mit; 267048 }) {}; 267049 267050 "wai-cli" = callPackage 267051 ({ mkDerivation, ansi-terminal, base, http-types, iproute 267052 , monads-tf, network, options, socket-activation, stm ··· 270497 }: 270498 mkDerivation { 270499 pname = "weekdaze"; 270500 - version = "0.0.0.2"; 270501 - sha256 = "17i8pq4xfc6mxdphc7xiiwlnqw3m70sh7d3pjnql33m1083kbkxb"; 270502 isLibrary = true; 270503 isExecutable = true; 270504 enableSeparateDataOutput = true; ··· 273856 }) {}; 273857 273858 "xlsx" = callPackage 273859 - ({ mkDerivation, attoparsec, base, base64-bytestring, binary-search 273860 - , bytestring, conduit, containers, criterion, data-default, deepseq 273861 - , Diff, errors, extra, filepath, groom, lens, mtl, network-uri 273862 - , old-locale, raw-strings-qq, safe, smallcheck, tasty, tasty-hunit 273863 - , tasty-smallcheck, text, time, transformers, vector, xeno 273864 - , xml-conduit, zip-archive, zlib 273865 - }: 273866 - mkDerivation { 273867 - pname = "xlsx"; 273868 - version = "0.8.0"; 273869 - sha256 = "1wp2ybkf5z4x87a73yygi3g1nqjy6pfb1wdwyvmjqk64ibjz0p7d"; 273870 - libraryHaskellDepends = [ 273871 - attoparsec base base64-bytestring binary-search bytestring conduit 273872 - containers data-default deepseq errors extra filepath lens mtl 273873 - network-uri old-locale safe text time transformers vector xeno 273874 - xml-conduit zip-archive zlib 273875 - ]; 273876 - testHaskellDepends = [ 273877 - base bytestring containers Diff groom lens mtl raw-strings-qq 273878 - smallcheck tasty tasty-hunit tasty-smallcheck text time vector 273879 - xml-conduit 273880 - ]; 273881 - benchmarkHaskellDepends = [ base bytestring criterion ]; 273882 - description = "Simple and incomplete Excel file parser/writer"; 273883 - license = stdenv.lib.licenses.mit; 273884 - hydraPlatforms = stdenv.lib.platforms.none; 273885 - broken = true; 273886 - }) {}; 273887 - 273888 - "xlsx_0_8_1" = callPackage 273889 ({ mkDerivation, attoparsec, base, base64-bytestring, binary-search 273890 , bytestring, conduit, containers, criterion, data-default, deepseq 273891 , Diff, errors, extra, filepath, groom, lens, mtl, network-uri ··· 276842 276843 "yesod" = callPackage 276844 ({ mkDerivation, aeson, base, bytestring, conduit 276845 - , data-default-class, directory, fast-logger, monad-logger 276846 - , semigroups, shakespeare, streaming-commons, template-haskell 276847 , text, unix, unordered-containers, wai, wai-extra, wai-logger 276848 , warp, yaml, yesod-core, yesod-form, yesod-persistent 276849 }: 276850 mkDerivation { 276851 pname = "yesod"; 276852 - version = "1.6.0.2"; 276853 - sha256 = "0dkaa7kzhdnqryfn8sbcbw5i1plkfckz1664gb1734fqadia32gq"; 276854 libraryHaskellDepends = [ 276855 aeson base bytestring conduit data-default-class directory 276856 - fast-logger monad-logger semigroups shakespeare streaming-commons 276857 template-haskell text unix unordered-containers wai wai-extra 276858 wai-logger warp yaml yesod-core yesod-form yesod-persistent 276859 ]; ··· 277019 277020 "yesod-auth-basic" = callPackage 277021 ({ mkDerivation, base, base64-bytestring, bytestring, exceptions 277022 - , hlint, hspec, text, wai, word8, yesod, yesod-test 277023 }: 277024 mkDerivation { 277025 pname = "yesod-auth-basic"; 277026 - version = "0.1.0.2"; 277027 - sha256 = "0b4vyf731wb7idmbqz7n8zm4p7i7y66x94ph7kaxv1jvq05k7bxa"; 277028 libraryHaskellDepends = [ 277029 - base base64-bytestring bytestring exceptions text wai word8 yesod 277030 ]; 277031 - testHaskellDepends = [ base hlint hspec text yesod yesod-test ]; 277032 description = "Yesod Middleware for HTTP Basic Authentication"; 277033 license = stdenv.lib.licenses.bsd3; 277034 hydraPlatforms = stdenv.lib.platforms.none; ··· 277354 }: 277355 mkDerivation { 277356 pname = "yesod-bin"; 277357 - version = "1.6.0.5"; 277358 - sha256 = "06klixw5qi12bxpll1bvyc5lngpkzd48qvq4r3v4vlppninsj2cd"; 277359 - isLibrary = false; 277360 - isExecutable = true; 277361 - executableHaskellDepends = [ 277362 - base bytestring Cabal conduit conduit-extra containers 277363 - data-default-class directory file-embed filepath fsnotify 277364 - http-client http-client-tls http-reverse-proxy http-types network 277365 - optparse-applicative process project-template say split stm 277366 - streaming-commons tar text time transformers transformers-compat 277367 - unliftio unordered-containers wai wai-extra warp warp-tls yaml zlib 277368 - ]; 277369 - description = "The yesod helper executable"; 277370 - license = stdenv.lib.licenses.mit; 277371 - }) {}; 277372 - 277373 - "yesod-bin_1_6_0_6" = callPackage 277374 - ({ mkDerivation, base, bytestring, Cabal, conduit, conduit-extra 277375 - , containers, data-default-class, directory, file-embed, filepath 277376 - , fsnotify, http-client, http-client-tls, http-reverse-proxy 277377 - , http-types, network, optparse-applicative, process 277378 - , project-template, say, split, stm, streaming-commons, tar, text 277379 - , time, transformers, transformers-compat, unliftio 277380 - , unordered-containers, wai, wai-extra, warp, warp-tls, yaml, zlib 277381 - }: 277382 - mkDerivation { 277383 - pname = "yesod-bin"; 277384 version = "1.6.0.6"; 277385 sha256 = "044xk75pymw6limz08zicxp4lw8jqf6f2ilj8i2qw2h419w3ry9f"; 277386 isLibrary = false; ··· 277395 ]; 277396 description = "The yesod helper executable"; 277397 license = stdenv.lib.licenses.mit; 277398 - hydraPlatforms = stdenv.lib.platforms.none; 277399 }) {}; 277400 277401 "yesod-bootstrap" = callPackage ··· 280138 license = stdenv.lib.licenses.bsd3; 280139 }) {}; 280140 280141 "zenc" = callPackage 280142 ({ mkDerivation, base }: 280143 mkDerivation { ··· 280977 }: 280978 mkDerivation { 280979 pname = "zlib"; 280980 - version = "0.6.2.1"; 280981 - sha256 = "1l11jraslcrp9d4wnhwfyhwk4fsiq1aq8i6vj81vcq1m2zzi1y7h"; 280982 - revision = "1"; 280983 - editedCabalFile = "0i9g71jvdw22bi9bi8dm5khwzcsv6cv8yadmf7afklg4xigxykfk"; 280984 - libraryHaskellDepends = [ base bytestring ]; 280985 - librarySystemDepends = [ zlib ]; 280986 - testHaskellDepends = [ 280987 - base bytestring QuickCheck tasty tasty-hunit tasty-quickcheck 280988 - ]; 280989 - description = "Compression and decompression in the gzip and zlib formats"; 280990 - license = stdenv.lib.licenses.bsd3; 280991 - }) {inherit (pkgs) zlib;}; 280992 - 280993 - "zlib_0_6_2_2" = callPackage 280994 - ({ mkDerivation, base, bytestring, QuickCheck, tasty, tasty-hunit 280995 - , tasty-quickcheck, zlib 280996 - }: 280997 - mkDerivation { 280998 - pname = "zlib"; 280999 version = "0.6.2.2"; 281000 sha256 = "1fii0qfc60lfp93vwb78p2fv3jjyklgdhw4ms262z6cysq6qkd84"; 281001 libraryHaskellDepends = [ base bytestring ]; ··· 281005 ]; 281006 description = "Compression and decompression in the gzip and zlib formats"; 281007 license = stdenv.lib.licenses.bsd3; 281008 - hydraPlatforms = stdenv.lib.platforms.none; 281009 }) {inherit (pkgs) zlib;}; 281010 281011 "zlib-bindings" = callPackage
··· 3347 benchmarkHaskellDepends = [ base colour criterion deepseq random ]; 3348 description = "Color spaces and conversions between them"; 3349 license = stdenv.lib.licenses.bsd3; 3350 + hydraPlatforms = stdenv.lib.platforms.none; 3351 + broken = true; 3352 }) {}; 3353 3354 "Color_0_2_0" = callPackage ··· 3369 description = "Color spaces and conversions between them"; 3370 license = stdenv.lib.licenses.bsd3; 3371 hydraPlatforms = stdenv.lib.platforms.none; 3372 + broken = true; 3373 }) {}; 3374 3375 "Combinatorrent" = callPackage ··· 11694 pname = "JuicyPixels-blurhash"; 11695 version = "0.1.0.3"; 11696 sha256 = "0kgl2j7990p8q5yrkn0wgaszc9fzva1pc3277j11k1lbjsymz360"; 11697 + revision = "2"; 11698 + editedCabalFile = "0phffs6r83sny6zr4zsrppzqy1lgybm6lqgfmbfgwhyvmd544qx6"; 11699 isLibrary = true; 11700 isExecutable = true; 11701 libraryHaskellDepends = [ ··· 16956 }: 16957 mkDerivation { 16958 pname = "Rattus"; 16959 + version = "0.3"; 16960 + sha256 = "1ks05nn9g6gp3l61bzmphxm9d0ajvlkzaws04fzz73rfv4nb97wg"; 16961 setupHaskellDepends = [ base Cabal ]; 16962 libraryHaskellDepends = [ 16963 base containers ghc simple-affine-space ··· 18800 ({ mkDerivation, attoparsec, base, extra, mtl, mwc-random, text }: 18801 mkDerivation { 18802 pname = "Spintax"; 18803 + version = "0.3.5"; 18804 + sha256 = "1z5sv03h07bf8z6pzxsia9hgf879cmiqdajvx212dk47lysfnm8v"; 18805 libraryHaskellDepends = [ 18806 attoparsec base extra mtl mwc-random text 18807 ]; ··· 20244 }: 20245 mkDerivation { 20246 pname = "Unique"; 20247 + version = "0.4.7.8"; 20248 + sha256 = "0w82pa6r2a6969w251fbrx0sr1ws8mkg2lwdyjl4qjhl5s28k43i"; 20249 libraryHaskellDepends = [ 20250 base containers extra hashable unordered-containers 20251 ]; ··· 20255 ]; 20256 description = "It provides the functionality like unix \"uniq\" utility"; 20257 license = stdenv.lib.licenses.bsd3; 20258 + maintainers = with stdenv.lib.maintainers; [ kiwi ]; 20259 }) {}; 20260 20261 "Unixutils" = callPackage ··· 24310 sha256 = "1kr3waa46k3619yvif0zh4lx7s0zhyghlr1c5kkrvg432i8wmdm6"; 24311 libraryHaskellDepends = [ aeson base ]; 24312 description = "Compatible generic class names of Aeson"; 24313 + license = stdenv.lib.licenses.bsd3; 24314 + }) {}; 24315 + 24316 + "aeson-helper" = callPackage 24317 + ({ mkDerivation, aeson, base, text, unordered-containers, vector }: 24318 + mkDerivation { 24319 + pname = "aeson-helper"; 24320 + version = "0.1.0.0"; 24321 + sha256 = "0s4gq827i2wyflcaxbhlr8f8svlw8szzmwax9d7vnxk9wy9fw8w0"; 24322 + libraryHaskellDepends = [ 24323 + aeson base text unordered-containers vector 24324 + ]; 24325 + description = "Aeson helper func"; 24326 license = stdenv.lib.licenses.bsd3; 24327 }) {}; 24328 ··· 24597 license = stdenv.lib.licenses.bsd3; 24598 }) {}; 24599 24600 + "aeson-result" = callPackage 24601 + ({ mkDerivation, aeson, aeson-helper, base, text }: 24602 + mkDerivation { 24603 + pname = "aeson-result"; 24604 + version = "0.1.0.0"; 24605 + sha256 = "10bnzh7vlh42sip0z7mvx5jxrsi7p2s3vqy55pfg2pb17czzly2y"; 24606 + libraryHaskellDepends = [ aeson aeson-helper base text ]; 24607 + description = "API Result for aeson"; 24608 + license = stdenv.lib.licenses.bsd3; 24609 + }) {}; 24610 + 24611 "aeson-schema" = callPackage 24612 ({ mkDerivation, aeson, attoparsec, base, bytestring, containers 24613 , directory, fail, filepath, ghc-prim, hashable, hint, HUnit, mtl ··· 24836 }) {}; 24837 24838 "aeson-with" = callPackage 24839 + ({ mkDerivation, aeson, base, lens, lens-aeson, scientific, text 24840 + , unordered-containers, vector 24841 }: 24842 mkDerivation { 24843 pname = "aeson-with"; 24844 + version = "0.1.2.0"; 24845 + sha256 = "0zj8jjsq26i6k8m3zfszpjxnnkar3gmvdw1adl9rxlgha2v5kfz8"; 24846 libraryHaskellDepends = [ 24847 + aeson base lens lens-aeson scientific text unordered-containers 24848 + vector 24849 ]; 24850 description = "withXField combinators for aeson"; 24851 license = stdenv.lib.licenses.mit; ··· 25531 }: 25532 mkDerivation { 25533 pname = "alarmclock"; 25534 version = "0.7.0.5"; 25535 sha256 = "0197phsc4rn5mn155hbmxplxi2ymra1x6lxq16xs6a8zrk4gfkj9"; 25536 libraryHaskellDepends = [ ··· 25541 ]; 25542 description = "Wake up and perform an action at a certain time"; 25543 license = stdenv.lib.licenses.bsd3; 25544 }) {}; 25545 25546 "alea" = callPackage ··· 29046 ]; 29047 description = "A simple streamly wrapper for amqp"; 29048 license = stdenv.lib.licenses.bsd3; 29049 + hydraPlatforms = stdenv.lib.platforms.none; 29050 + broken = true; 29051 }) {}; 29052 29053 "amqp-utils" = callPackage ··· 29631 license = stdenv.lib.licenses.bsd3; 29632 }) {}; 29633 29634 + "ansi-terminal_0_11" = callPackage 29635 + ({ mkDerivation, base, colour }: 29636 + mkDerivation { 29637 + pname = "ansi-terminal"; 29638 + version = "0.11"; 29639 + sha256 = "14rp62c7y79n9dmmi7m0l9n3mcq6dh331b4yyyrivm5da6g1nqf6"; 29640 + isLibrary = true; 29641 + isExecutable = true; 29642 + libraryHaskellDepends = [ base colour ]; 29643 + description = "Simple ANSI terminal support, with Windows compatibility"; 29644 + license = stdenv.lib.licenses.bsd3; 29645 + hydraPlatforms = stdenv.lib.platforms.none; 29646 + }) {}; 29647 + 29648 "ansi-terminal-game" = callPackage 29649 ({ mkDerivation, ansi-terminal, array, base, bytestring, cereal 29650 , clock, exceptions, hspec, linebreak, mintty, mtl, QuickCheck ··· 29677 pname = "ansi-wl-pprint"; 29678 version = "0.6.9"; 29679 sha256 = "1b2fg8px98dzbaqyns10kvs8kn6cl1hdq5wb9saz40izrpkyicm7"; 29680 + revision = "2"; 29681 + editedCabalFile = "1xrv66v5hqchjhj8a0g3awy1qpsswk2jqb4w4yh3mm1py5s0dlr0"; 29682 isLibrary = true; 29683 isExecutable = true; 29684 libraryHaskellDepends = [ ansi-terminal base ]; ··· 33269 license = stdenv.lib.licenses.bsd3; 33270 }) {}; 33271 33272 + "assert-failure_0_1_2_4" = callPackage 33273 + ({ mkDerivation, base, pretty-show, text }: 33274 + mkDerivation { 33275 + pname = "assert-failure"; 33276 + version = "0.1.2.4"; 33277 + sha256 = "0q4kaaxvz89qrw7j9kgh57nzyn6a8rh2w1hjb1h7ymdnznhr3cj4"; 33278 + enableSeparateDataOutput = true; 33279 + libraryHaskellDepends = [ base pretty-show text ]; 33280 + description = "Syntactic sugar improving 'assert' and 'error'"; 33281 + license = stdenv.lib.licenses.bsd3; 33282 + hydraPlatforms = stdenv.lib.platforms.none; 33283 + }) {}; 33284 + 33285 "assertions" = callPackage 33286 ({ mkDerivation, ansi-terminal, base, containers, interpolate 33287 , process ··· 33348 ({ mkDerivation, base, bifunctors, tagged }: 33349 mkDerivation { 33350 pname = "assoc"; 33351 + version = "1.0.2"; 33352 + sha256 = "0kqlizznjy94fm8zr1ng633yxbinjff7cnsiaqs7m33ix338v66q"; 33353 libraryHaskellDepends = [ base bifunctors tagged ]; 33354 description = "swap and assoc: Symmetric and Semigroupy Bifunctors"; 33355 license = stdenv.lib.licenses.bsd3; ··· 34826 broken = true; 34827 }) {}; 34828 34829 + "aura_3_1_7" = callPackage 34830 + ({ mkDerivation, aeson, algebraic-graphs, aur, base, bytestring 34831 + , containers, filepath, hashable, http-client, http-client-tls 34832 + , http-types, language-bash, megaparsec, network-uri 34833 + , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal 34834 + , rio, scheduler, stm, tasty, tasty-hunit, text, time, transformers 34835 + , typed-process, versions 34836 + }: 34837 + mkDerivation { 34838 + pname = "aura"; 34839 + version = "3.1.7"; 34840 + sha256 = "0w7m65bh38gdq186b16pcnq7k2nakiy749m7z092cv4k5w72gal5"; 34841 + isLibrary = true; 34842 + isExecutable = true; 34843 + libraryHaskellDepends = [ 34844 + aeson algebraic-graphs aur base bytestring containers filepath 34845 + hashable http-client http-types language-bash megaparsec 34846 + network-uri prettyprinter prettyprinter-ansi-terminal rio scheduler 34847 + stm text time transformers typed-process versions 34848 + ]; 34849 + executableHaskellDepends = [ 34850 + aeson aur base bytestring containers http-client http-client-tls 34851 + megaparsec optparse-applicative prettyprinter 34852 + prettyprinter-ansi-terminal rio scheduler text transformers 34853 + typed-process versions 34854 + ]; 34855 + testHaskellDepends = [ 34856 + base bytestring containers megaparsec rio tasty tasty-hunit text 34857 + versions 34858 + ]; 34859 + description = "A secure package manager for Arch Linux and the AUR"; 34860 + license = stdenv.lib.licenses.gpl3; 34861 + hydraPlatforms = stdenv.lib.platforms.none; 34862 + broken = true; 34863 + }) {}; 34864 + 34865 "authenticate" = callPackage 34866 ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring 34867 , case-insensitive, conduit, containers, html-conduit, http-conduit ··· 34914 pname = "authenticate-oauth"; 34915 version = "1.6.0.1"; 34916 sha256 = "1hry1zbi7gbyfi94w9cyg6m7ii7xm68jnsph63zxdj2s4ns0ylp0"; 34917 + revision = "2"; 34918 + editedCabalFile = "08i6mmk2jqlrd1aksjx02arly7dfpkwc0dwxpr7hs4rbxajbckyr"; 34919 libraryHaskellDepends = [ 34920 base base64-bytestring blaze-builder bytestring crypto-pubkey-types 34921 data-default http-client http-types random RSA SHA time ··· 36300 }: 36301 mkDerivation { 36302 pname = "azimuth-hs"; 36303 + version = "0.2.1"; 36304 + sha256 = "0gr852mqzd05jhhmszf69r1kk5ja2syq15ac0hdnqzhfzlbq2nrl"; 36305 enableSeparateDataOutput = true; 36306 libraryHaskellDepends = [ 36307 base data-default-class exceptions haskoin-core memory mtl text ··· 36998 ({ mkDerivation, base, containers, hspec, QuickCheck, time }: 36999 mkDerivation { 37000 pname = "bank-holidays-england"; 37001 version = "0.2.0.5"; 37002 sha256 = "0n7q9s1vsmh5adkhpgycz8y6q49xqf77fpmm73cw0iqgjly4x9hp"; 37003 libraryHaskellDepends = [ base containers time ]; 37004 testHaskellDepends = [ base containers hspec QuickCheck time ]; 37005 description = "Calculation of bank holidays in England and Wales"; 37006 license = stdenv.lib.licenses.bsd3; 37007 }) {}; 37008 37009 "banwords" = callPackage ··· 37033 }: 37034 mkDerivation { 37035 pname = "barbies"; 37036 + version = "2.0.2.0"; 37037 + sha256 = "0x9wn7whn36b4vsaq008zpcw47rs78dfqcysk8x7yhprxbzn7mi2"; 37038 libraryHaskellDepends = [ base distributive transformers ]; 37039 testHaskellDepends = [ 37040 base distributive QuickCheck tasty tasty-hunit tasty-quickcheck ··· 37716 license = stdenv.lib.licenses.bsd3; 37717 }) {}; 37718 37719 + "base64-bytestring_1_2_0_0" = callPackage 37720 ({ mkDerivation, base, bytestring, containers, criterion, deepseq 37721 , HUnit, QuickCheck, split, test-framework, test-framework-hunit 37722 , test-framework-quickcheck2 37723 }: 37724 mkDerivation { 37725 pname = "base64-bytestring"; 37726 + version = "1.2.0.0"; 37727 + sha256 = "1vz4dbbsymjrw5dmb62yw41v126narlb3dpa037hgldlw1fw2iip"; 37728 libraryHaskellDepends = [ base bytestring ]; 37729 testHaskellDepends = [ 37730 base bytestring containers HUnit QuickCheck split test-framework ··· 38113 38114 "battleplace" = callPackage 38115 ({ mkDerivation, aeson, base, bytestring, cereal, data-default 38116 + , hashable, memory, servant, swagger2, template-haskell, text 38117 + , vector 38118 }: 38119 mkDerivation { 38120 pname = "battleplace"; 38121 + version = "0.1.0.10"; 38122 + sha256 = "0a1a7bw30wz0hv5n78l58h5qmr6k5x58dnijll7dgksm51g7c3j8"; 38123 libraryHaskellDepends = [ 38124 aeson base bytestring cereal data-default hashable memory servant 38125 + swagger2 template-haskell text vector 38126 ]; 38127 description = "Core definitions for BattlePlace.io service"; 38128 license = stdenv.lib.licenses.mit; ··· 41541 }: 41542 mkDerivation { 41543 pname = "bishbosh"; 41544 + version = "0.0.0.6"; 41545 + sha256 = "0gax0q1i86m0zb3gwfwmy59z8jnpri96dd9y73xbjyy4cjnwc32m"; 41546 isLibrary = true; 41547 isExecutable = true; 41548 enableSeparateDataOutput = true; ··· 42593 pname = "blank-canvas"; 42594 version = "0.7.1"; 42595 sha256 = "02w428jpb49yaqzw93121lf1m4pjxi8wniqhnrvqh2zh63gsfws1"; 42596 + revision = "3"; 42597 + editedCabalFile = "1l2xcvms2jw10c4jvnc3kldk21vqcchckms0bawrcf908yhq525g"; 42598 enableSeparateDataOutput = true; 42599 libraryHaskellDepends = [ 42600 aeson base base-compat-batteries base64-bytestring bytestring ··· 43412 broken = true; 43413 }) {}; 43414 43415 + "blucontrol" = callPackage 43416 + ({ mkDerivation, base, containers, data-default, deepseq, directory 43417 + , filepath, finite-typelits, hspec, libX11, libXrandr, lifted-base 43418 + , monad-control, mtl, process, QuickCheck, text, time, transformers 43419 + , transformers-base, unix, X11 43420 + }: 43421 + mkDerivation { 43422 + pname = "blucontrol"; 43423 + version = "0.2.1.1"; 43424 + sha256 = "087bk9fxjgavrprba7ffyb91jv7ms8k7mlq9s5963lkpdf5636n7"; 43425 + isLibrary = true; 43426 + isExecutable = true; 43427 + libraryHaskellDepends = [ 43428 + base containers data-default deepseq directory filepath 43429 + finite-typelits lifted-base monad-control mtl process text time 43430 + transformers transformers-base unix X11 43431 + ]; 43432 + librarySystemDepends = [ libX11 libXrandr ]; 43433 + executableHaskellDepends = [ base ]; 43434 + testHaskellDepends = [ 43435 + base data-default deepseq hspec mtl QuickCheck time 43436 + ]; 43437 + description = "Configurable blue light filter"; 43438 + license = stdenv.lib.licenses.bsd3; 43439 + }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXrandr;}; 43440 + 43441 "bludigon" = callPackage 43442 ({ mkDerivation, base, containers, data-default, deepseq, directory 43443 , filepath, finite-typelits, hspec, libX11, libXrandr, lifted-base ··· 43446 }: 43447 mkDerivation { 43448 pname = "bludigon"; 43449 + version = "0.1.1.0"; 43450 + sha256 = "1l6rc79wb9822qjrs9zvm53qp6dd0h8lp5sln55wqa0qzq5xq9mk"; 43451 isLibrary = true; 43452 isExecutable = true; 43453 libraryHaskellDepends = [ ··· 44779 pname = "brick"; 44780 version = "0.55"; 44781 sha256 = "0n51vh8j75a2b6qbfah9k9zrp15m4rkq7fywpp811v93h8zf02fy"; 44782 + revision = "1"; 44783 + editedCabalFile = "1kn5nksvds8njy8zv7bq7gankngfam3dl1if0qvlhsfdl3n3d1zr"; 44784 isLibrary = true; 44785 isExecutable = true; 44786 libraryHaskellDepends = [ ··· 45360 ({ mkDerivation, base, bson, ghc-prim, text }: 45361 mkDerivation { 45362 pname = "bson-generic"; 45363 + version = "0.0.9"; 45364 + sha256 = "11a8k6rngz5rdgccwnifiydsfc87hlgy4mp6chi30m2jvdq92imb"; 45365 libraryHaskellDepends = [ base bson ghc-prim text ]; 45366 description = "Generic functionality for BSON"; 45367 license = stdenv.lib.licenses.bsd3; ··· 45778 pname = "bugzilla-redhat"; 45779 version = "0.3.0"; 45780 sha256 = "1d751f1219ivx9bfdl7xb89w2vns07ciqp4cqcykixnllx2jx18y"; 45781 + revision = "1"; 45782 + editedCabalFile = "145sdnk28sxwz4s1gh0qq6vzm9q6s5433q6w1199cv9585b53kcx"; 45783 isLibrary = true; 45784 isExecutable = true; 45785 libraryHaskellDepends = [ ··· 52345 }: 52346 mkDerivation { 52347 pname = "chart-svg-various"; 52348 + version = "0.0.2"; 52349 + sha256 = "0ckh66pm4f3wp2w08z8bfjbwbxssp74g5chwpk9q9n786iaq9x90"; 52350 isLibrary = true; 52351 isExecutable = true; 52352 libraryHaskellDepends = [ ··· 58002 broken = true; 58003 }) {}; 58004 58005 + "compact-sequences" = callPackage 58006 + ({ mkDerivation, base, containers, primitive, transformers }: 58007 + mkDerivation { 58008 + pname = "compact-sequences"; 58009 + version = "0.1.0.0"; 58010 + sha256 = "148zjnnnn82vgn4ybs5z6nx9xv2wd73q2cavaa2nyjn1kcqqw7a8"; 58011 + libraryHaskellDepends = [ base containers primitive transformers ]; 58012 + testHaskellDepends = [ base ]; 58013 + description = "Stacks and queues with compact representations"; 58014 + license = stdenv.lib.licenses.bsd3; 58015 + }) {}; 58016 + 58017 "compact-socket" = callPackage 58018 ({ mkDerivation, base, binary, bytestring, compact, deepseq 58019 , directory, filepath, network, unix ··· 62395 }: 62396 mkDerivation { 62397 pname = "core-data"; 62398 version = "0.2.1.8"; 62399 sha256 = "1hgvvkk3m3ykdndmf2hbm59v0pim68jwgl2a6n5hw1dv4xwd3fay"; 62400 libraryHaskellDepends = [ ··· 62404 ]; 62405 description = "Convenience wrappers around common data structures and encodings"; 62406 license = stdenv.lib.licenses.bsd3; 62407 }) {}; 62408 62409 "core-haskell" = callPackage ··· 62432 }: 62433 mkDerivation { 62434 pname = "core-program"; 62435 version = "0.2.4.5"; 62436 sha256 = "1a2zjdywmgniwcj649f43hri55bh30vz2s00r3yqj3gvhhighi86"; 62437 libraryHaskellDepends = [ ··· 62442 ]; 62443 description = "Opinionated Haskell Interoperability"; 62444 license = stdenv.lib.licenses.bsd3; 62445 }) {}; 62446 62447 "core-text" = callPackage ··· 62451 }: 62452 mkDerivation { 62453 pname = "core-text"; 62454 version = "0.2.3.6"; 62455 sha256 = "13sdgym8xhljpc465bq1h066mrcvk77568viklhib255skjl56gn"; 62456 libraryHaskellDepends = [ ··· 62459 ]; 62460 description = "A rope type based on a finger tree over UTF-8 fragments"; 62461 license = stdenv.lib.licenses.bsd3; 62462 }) {}; 62463 62464 "corebot-bliki" = callPackage ··· 62524 librarySystemDepends = [ rocksdb ]; 62525 description = "Launches CoreNLP and parses the JSON output"; 62526 license = stdenv.lib.licenses.bsd3; 62527 + hydraPlatforms = stdenv.lib.platforms.none; 62528 + broken = true; 62529 }) {inherit (pkgs) rocksdb;}; 62530 62531 "cornea" = callPackage ··· 65044 ]; 65045 description = "a gallery of Csound instruments"; 65046 license = stdenv.lib.licenses.bsd3; 65047 + hydraPlatforms = stdenv.lib.platforms.none; 65048 + broken = true; 65049 }) {}; 65050 65051 "csound-expression" = callPackage ··· 65065 ]; 65066 description = "library to make electronic music"; 65067 license = stdenv.lib.licenses.bsd3; 65068 + hydraPlatforms = stdenv.lib.platforms.none; 65069 + broken = true; 65070 }) {}; 65071 65072 "csound-expression-dynamic" = callPackage ··· 65084 ]; 65085 description = "dynamic core for csound-expression library"; 65086 license = stdenv.lib.licenses.bsd3; 65087 + hydraPlatforms = stdenv.lib.platforms.none; 65088 + broken = true; 65089 }) {}; 65090 65091 "csound-expression-opcodes" = callPackage ··· 65101 ]; 65102 description = "opcodes for the library csound-expression"; 65103 license = stdenv.lib.licenses.bsd3; 65104 + hydraPlatforms = stdenv.lib.platforms.none; 65105 + broken = true; 65106 }) {}; 65107 65108 "csound-expression-typed" = callPackage ··· 65123 ]; 65124 description = "typed core for the library csound-expression"; 65125 license = stdenv.lib.licenses.bsd3; 65126 + hydraPlatforms = stdenv.lib.platforms.none; 65127 + broken = true; 65128 }) {}; 65129 65130 "csound-sampler" = callPackage ··· 65136 libraryHaskellDepends = [ base csound-expression transformers ]; 65137 description = "A musical sampler based on Csound"; 65138 license = stdenv.lib.licenses.bsd3; 65139 + hydraPlatforms = stdenv.lib.platforms.none; 65140 + broken = true; 65141 }) {}; 65142 65143 "csp" = callPackage ··· 66155 testPkgconfigDepends = [ pocketsphinx sphinxbase ]; 66156 description = "Cuts out uninteresting parts of videos by detecting silences"; 66157 license = stdenv.lib.licenses.mit; 66158 + hydraPlatforms = stdenv.lib.platforms.none; 66159 + broken = true; 66160 }) {inherit (pkgs) pocketsphinx; inherit (pkgs) sphinxbase;}; 66161 66162 "cutter" = callPackage ··· 66495 66496 "darcs" = callPackage 66497 ({ mkDerivation, array, async, attoparsec, base, base16-bytestring 66498 + , binary, bytestring, Cabal, cmdargs, conduit, constraints 66499 + , containers, cryptonite, data-ordlist, directory, fgl, filepath 66500 + , FindBin, hashable, haskeline, html, http-conduit, http-types 66501 + , HUnit, leancheck, memory, mmap, mtl, network, network-uri 66502 + , old-time, parsec, process, QuickCheck, regex-applicative 66503 + , regex-compat-tdfa, sandi, shelly, split, stm, tar, temporary 66504 + , terminfo, test-framework, test-framework-hunit 66505 + , test-framework-leancheck, test-framework-quickcheck2, text, time 66506 + , transformers, unix, unix-compat, utf8-string, vector, zip-archive 66507 + , zlib 66508 }: 66509 mkDerivation { 66510 pname = "darcs"; 66511 + version = "2.16.1"; 66512 + sha256 = "1q837ibf97f3fm6gcr5l6cc4kb554gm1fhzc2a22fkkj15axivq0"; 66513 configureFlags = [ "-fforce-char8-encoding" "-flibrary" ]; 66514 isLibrary = true; 66515 isExecutable = true; 66516 setupHaskellDepends = [ base Cabal directory filepath process ]; 66517 libraryHaskellDepends = [ 66518 array async attoparsec base base16-bytestring binary bytestring 66519 + conduit constraints containers cryptonite data-ordlist directory 66520 + fgl filepath hashable haskeline html http-conduit http-types memory 66521 + mmap mtl network network-uri old-time parsec process 66522 + regex-applicative regex-compat-tdfa sandi stm tar temporary 66523 + terminfo text time transformers unix unix-compat utf8-string vector 66524 + zip-archive zlib 66525 ]; 66526 executableHaskellDepends = [ base ]; 66527 testHaskellDepends = [ 66528 + array base bytestring cmdargs constraints containers directory 66529 + filepath FindBin HUnit leancheck mtl QuickCheck shelly split 66530 + test-framework test-framework-hunit test-framework-leancheck 66531 + test-framework-quickcheck2 text transformers vector zip-archive 66532 ]; 66533 doCheck = false; 66534 postInstall = '' ··· 66536 mv contrib/darcs_completion $out/etc/bash_completion.d/darcs 66537 ''; 66538 description = "a distributed, interactive, smart revision control system"; 66539 + license = stdenv.lib.licenses.gpl2Plus; 66540 + }) {}; 66541 66542 "darcs-benchmark" = callPackage 66543 ({ mkDerivation, base, bytestring, cmdargs, containers, datetime ··· 67734 libraryHaskellDepends = [ base containers data-fix transformers ]; 67735 description = "Common subexpression elimination for the fixploint types"; 67736 license = stdenv.lib.licenses.bsd3; 67737 + hydraPlatforms = stdenv.lib.platforms.none; 67738 + broken = true; 67739 }) {}; 67740 67741 "data-flags" = callPackage ··· 72006 pname = "dhall"; 72007 version = "1.34.0"; 72008 sha256 = "0rqvzvcqbhs9gvga7api6jjblnypm4a33z8kxi578ps63mhn3g0d"; 72009 + revision = "1"; 72010 + editedCabalFile = "0d5rqjalz6clvbmnqmpsy4dl9zj1magwmd1gdl2vzkf5qnhp6n7r"; 72011 isLibrary = true; 72012 isExecutable = true; 72013 enableSeparateDataOutput = true; ··· 72133 ]; 72134 description = "Generate HTML docs from a dhall package"; 72135 license = stdenv.lib.licenses.bsd3; 72136 + hydraPlatforms = stdenv.lib.platforms.none; 72137 + broken = true; 72138 }) {}; 72139 72140 "dhall-fly" = callPackage ··· 72213 pname = "dhall-json"; 72214 version = "1.7.1"; 72215 sha256 = "158c9vhxa124r1xqn365wvwqhby5rngkip08ghy8rnjs5ijcxzgf"; 72216 + revision = "2"; 72217 + editedCabalFile = "12piijva2szd08c6pgr6qca4kmf48il8934iv0k51jfyfd1m01ic"; 72218 isLibrary = true; 72219 isExecutable = true; 72220 libraryHaskellDepends = [ ··· 72294 pname = "dhall-lsp-server"; 72295 version = "1.0.9"; 72296 sha256 = "0zf53pc8rxapmdm9fvp04gfnw2910yv1gm5sm5v5wb606njzk0xn"; 72297 + revision = "1"; 72298 + editedCabalFile = "1ml2yhwwbwwdv13266fgjk39pk04hg0ak82y08aixcryaldfhgwi"; 72299 isLibrary = true; 72300 isExecutable = true; 72301 libraryHaskellDepends = [ ··· 72449 pname = "dhall-yaml"; 72450 version = "1.2.1"; 72451 sha256 = "18p8a92wiz2zi4q7v5fjvdallxrl21scmwwv706g3mm5dgfgcs5a"; 72452 + revision = "1"; 72453 + editedCabalFile = "037zg3ick95pwsk2g0znhfdvwphw3yxv5kp8zj5czc6df97id8xj"; 72454 isLibrary = true; 72455 isExecutable = true; 72456 libraryHaskellDepends = [ ··· 75782 pname = "dlist-nonempty"; 75783 version = "0.1.1"; 75784 sha256 = "0csbspdy43pzvasb5mhs5pz2f49ws78pi253cx7pp84wjx6ads20"; 75785 + revision = "9"; 75786 + editedCabalFile = "09qgsqzjnkr5d2lwdz86q3zrikd5hacd62hvvfdqy39kh5wrqn4y"; 75787 libraryHaskellDepends = [ 75788 base base-compat deepseq dlist semigroupoids 75789 ]; ··· 76072 ({ mkDerivation, base, mmsyn3, mmsyn6ukr, mmsyn7s, vector }: 76073 mkDerivation { 76074 pname = "dobutokO-poetry"; 76075 + version = "0.10.0.0"; 76076 + sha256 = "1lrdlgn49im8rgvsj61k2n3g2ham2gizbv0r95nv4ga71z54lyhj"; 76077 isLibrary = true; 76078 isExecutable = true; 76079 libraryHaskellDepends = [ base mmsyn3 mmsyn6ukr mmsyn7s vector ]; ··· 76958 license = stdenv.lib.licenses.mit; 76959 }) {}; 76960 76961 + "dotenv_0_8_0_6" = callPackage 76962 + ({ mkDerivation, base, base-compat, containers, directory 76963 + , exceptions, hspec, hspec-megaparsec, megaparsec 76964 + , optparse-applicative, process, text, transformers, yaml 76965 + }: 76966 + mkDerivation { 76967 + pname = "dotenv"; 76968 + version = "0.8.0.6"; 76969 + sha256 = "0ndgsjjcpmhxaxjn4mmw4cyd6i2y67zpx9ap099k5jw9ad0lbwb0"; 76970 + isLibrary = true; 76971 + isExecutable = true; 76972 + enableSeparateDataOutput = true; 76973 + libraryHaskellDepends = [ 76974 + base base-compat containers directory exceptions megaparsec process 76975 + text transformers yaml 76976 + ]; 76977 + executableHaskellDepends = [ 76978 + base base-compat megaparsec optparse-applicative process text 76979 + transformers yaml 76980 + ]; 76981 + testHaskellDepends = [ 76982 + base base-compat containers directory exceptions hspec 76983 + hspec-megaparsec megaparsec process text transformers yaml 76984 + ]; 76985 + description = "Loads environment variables from dotenv files"; 76986 + license = stdenv.lib.licenses.mit; 76987 + hydraPlatforms = stdenv.lib.platforms.none; 76988 + }) {}; 76989 + 76990 "dotfs" = callPackage 76991 ({ mkDerivation, base, bytestring, containers, directory, filepath 76992 , haskell-src, HFuse, HUnit, parsec, process, QuickCheck ··· 79946 }) {}; 79947 79948 "egison-pattern-src-th-mode" = callPackage 79949 ({ mkDerivation, base, egison-pattern-src, haskell-src-exts 79950 , haskell-src-meta, mtl, pretty, tasty, tasty-discover, tasty-hunit 79951 , template-haskell, text ··· 79965 testToolDepends = [ tasty-discover ]; 79966 description = "Parser and pretty printer for Egison pattern expressions to use with TH"; 79967 license = stdenv.lib.licenses.bsd3; 79968 }) {}; 79969 79970 "egison-quote" = callPackage ··· 82241 ]; 82242 description = "Safe helpers for accessing and modifying environment variables"; 82243 license = stdenv.lib.licenses.mit; 82244 + hydraPlatforms = stdenv.lib.platforms.none; 82245 + broken = true; 82246 }) {}; 82247 82248 "env-locale" = callPackage ··· 83231 ]; 83232 description = "General purpose live coding framework"; 83233 license = stdenv.lib.licenses.bsd3; 83234 + }) {}; 83235 + 83236 + "essence-of-live-coding_0_2_1" = callPackage 83237 + ({ mkDerivation, base, containers, foreign-store, mtl, QuickCheck 83238 + , syb, test-framework, test-framework-quickcheck2, transformers 83239 + , vector-sized 83240 + }: 83241 + mkDerivation { 83242 + pname = "essence-of-live-coding"; 83243 + version = "0.2.1"; 83244 + sha256 = "1bjpzz5ph2n4ljhckn2p88pg6c49phigw2f1y9l83wgnvdavdz83"; 83245 + isLibrary = true; 83246 + isExecutable = true; 83247 + libraryHaskellDepends = [ 83248 + base containers foreign-store syb transformers vector-sized 83249 + ]; 83250 + executableHaskellDepends = [ base transformers ]; 83251 + testHaskellDepends = [ 83252 + base containers mtl QuickCheck syb test-framework 83253 + test-framework-quickcheck2 transformers 83254 + ]; 83255 + description = "General purpose live coding framework"; 83256 + license = stdenv.lib.licenses.bsd3; 83257 hydraPlatforms = stdenv.lib.platforms.none; 83258 }) {}; 83259 83260 "essence-of-live-coding-gloss" = callPackage ··· 83270 ]; 83271 description = "General purpose live coding framework - Gloss backend"; 83272 license = stdenv.lib.licenses.bsd3; 83273 + }) {}; 83274 + 83275 + "essence-of-live-coding-gloss_0_2_1" = callPackage 83276 + ({ mkDerivation, base, essence-of-live-coding, foreign-store, gloss 83277 + , syb, transformers 83278 + }: 83279 + mkDerivation { 83280 + pname = "essence-of-live-coding-gloss"; 83281 + version = "0.2.1"; 83282 + sha256 = "0pgkzfy7w8lylx0bb3vs1d8a2hgaavn2m9rj0v1f6hl193hnimz7"; 83283 + libraryHaskellDepends = [ 83284 + base essence-of-live-coding foreign-store gloss syb transformers 83285 + ]; 83286 + description = "General purpose live coding framework - Gloss backend"; 83287 + license = stdenv.lib.licenses.bsd3; 83288 hydraPlatforms = stdenv.lib.platforms.none; 83289 + }) {}; 83290 + 83291 + "essence-of-live-coding-gloss-example" = callPackage 83292 + ({ mkDerivation, base, essence-of-live-coding 83293 + , essence-of-live-coding-gloss, gloss, syb, transformers 83294 + }: 83295 + mkDerivation { 83296 + pname = "essence-of-live-coding-gloss-example"; 83297 + version = "0.2.1"; 83298 + sha256 = "0rfpl2y6dga86qpq3sfc1kvwsb55d3aw0ckkfn8yflfnad6k884l"; 83299 + isLibrary = false; 83300 + isExecutable = true; 83301 + executableHaskellDepends = [ 83302 + base essence-of-live-coding essence-of-live-coding-gloss gloss syb 83303 + transformers 83304 + ]; 83305 + description = "General purpose live coding framework - Gloss example"; 83306 + license = stdenv.lib.licenses.bsd3; 83307 }) {}; 83308 83309 "essence-of-live-coding-pulse" = callPackage ··· 83319 ]; 83320 description = "General purpose live coding framework - pulse backend"; 83321 license = stdenv.lib.licenses.bsd3; 83322 + }) {}; 83323 + 83324 + "essence-of-live-coding-pulse_0_2_1" = callPackage 83325 + ({ mkDerivation, base, essence-of-live-coding, foreign-store 83326 + , pulse-simple, transformers 83327 + }: 83328 + mkDerivation { 83329 + pname = "essence-of-live-coding-pulse"; 83330 + version = "0.2.1"; 83331 + sha256 = "02my8bprwij9rxl0x0yb8q9zr137alzl77j5lvd1gl5r5sbvm8pj"; 83332 + libraryHaskellDepends = [ 83333 + base essence-of-live-coding foreign-store pulse-simple transformers 83334 + ]; 83335 + description = "General purpose live coding framework - pulse backend"; 83336 + license = stdenv.lib.licenses.bsd3; 83337 hydraPlatforms = stdenv.lib.platforms.none; 83338 + }) {}; 83339 + 83340 + "essence-of-live-coding-pulse-example" = callPackage 83341 + ({ mkDerivation, base, essence-of-live-coding 83342 + , essence-of-live-coding-pulse, pulse-simple, transformers, vector 83343 + }: 83344 + mkDerivation { 83345 + pname = "essence-of-live-coding-pulse-example"; 83346 + version = "0.2.1"; 83347 + sha256 = "118xlqx67lgyrqi9r581ad2xsqs5x5d19afbfh6200bi618sr8af"; 83348 + isLibrary = false; 83349 + isExecutable = true; 83350 + executableHaskellDepends = [ 83351 + base essence-of-live-coding essence-of-live-coding-pulse 83352 + pulse-simple transformers vector 83353 + ]; 83354 + description = "General purpose live coding framework - pulse backend example"; 83355 + license = stdenv.lib.licenses.bsd3; 83356 }) {}; 83357 83358 "essence-of-live-coding-quickcheck" = callPackage ··· 83369 ]; 83370 description = "General purpose live coding framework - QuickCheck integration"; 83371 license = stdenv.lib.licenses.bsd3; 83372 + }) {}; 83373 + 83374 + "essence-of-live-coding-quickcheck_0_2_1" = callPackage 83375 + ({ mkDerivation, base, boltzmann-samplers, essence-of-live-coding 83376 + , QuickCheck, syb, transformers 83377 + }: 83378 + mkDerivation { 83379 + pname = "essence-of-live-coding-quickcheck"; 83380 + version = "0.2.1"; 83381 + sha256 = "144840ck2a0wk8pd62c6l9iw6jlvva3yif30mba9m8r1zylaanyj"; 83382 + libraryHaskellDepends = [ 83383 + base boltzmann-samplers essence-of-live-coding QuickCheck syb 83384 + transformers 83385 + ]; 83386 + description = "General purpose live coding framework - QuickCheck integration"; 83387 + license = stdenv.lib.licenses.bsd3; 83388 hydraPlatforms = stdenv.lib.platforms.none; 83389 }) {}; 83390 83391 "estimator" = callPackage ··· 85801 license = stdenv.lib.licenses.bsd3; 85802 }) {}; 85803 85804 + "extra_1_7_5" = callPackage 85805 + ({ mkDerivation, base, clock, directory, filepath, process 85806 + , QuickCheck, quickcheck-instances, time, unix 85807 + }: 85808 + mkDerivation { 85809 + pname = "extra"; 85810 + version = "1.7.5"; 85811 + sha256 = "1cickrjvg4i25yn3qg4f0id0bmq115siysyqnh0yk9rwjlnrxyn9"; 85812 + libraryHaskellDepends = [ 85813 + base clock directory filepath process time unix 85814 + ]; 85815 + testHaskellDepends = [ 85816 + base directory filepath QuickCheck quickcheck-instances unix 85817 + ]; 85818 + description = "Extra functions I use"; 85819 + license = stdenv.lib.licenses.bsd3; 85820 + hydraPlatforms = stdenv.lib.platforms.none; 85821 + }) {}; 85822 + 85823 "extract-dependencies" = callPackage 85824 ({ mkDerivation, async, base, Cabal, containers 85825 , package-description-remote ··· 86331 }) {}; 86332 86333 "fakefs" = callPackage 86334 + ({ mkDerivation, base, containers, exceptions, hspec, mtl 86335 + , QuickCheck 86336 + }: 86337 mkDerivation { 86338 pname = "fakefs"; 86339 + version = "0.3.0.1"; 86340 + sha256 = "1vilfl6vgxcywg81xfy6w6lir6r5pky7f2p7mf196kjby630av05"; 86341 + libraryHaskellDepends = [ base containers exceptions mtl ]; 86342 + testHaskellDepends = [ 86343 + base containers exceptions hspec QuickCheck 86344 + ]; 86345 description = "Extensible fake file system for testing"; 86346 license = stdenv.lib.licenses.asl20; 86347 }) {}; ··· 88149 }: 88150 mkDerivation { 88151 pname = "ffunctor"; 88152 + version = "1.2.1"; 88153 + sha256 = "0143i0l4153k1pkql50hb158hcx9iqjj59zwqlhbqq0rr43nza3f"; 88154 libraryHaskellDepends = [ base transformers ]; 88155 testHaskellDepends = [ 88156 aeson base exceptions generic-lens http-client mtl servant ··· 88169 }: 88170 mkDerivation { 88171 pname = "fgl"; 88172 version = "5.7.0.3"; 88173 sha256 = "04k5grp5d381wkc7sxgcl0sd3z3nlm6l6mmh103vhzh6p49vhs99"; 88174 libraryHaskellDepends = [ ··· 88178 benchmarkHaskellDepends = [ base deepseq microbench ]; 88179 description = "Martin Erwig's Functional Graph Library"; 88180 license = stdenv.lib.licenses.bsd3; 88181 }) {}; 88182 88183 "fgl-arbitrary" = callPackage ··· 89079 ]; 89080 description = "A better, more type-safe Enum"; 89081 license = stdenv.lib.licenses.gpl3Plus; 89082 }) {}; 89083 89084 "finitary-derive" = callPackage ··· 89323 }: 89324 mkDerivation { 89325 pname = "fishfood"; 89326 + version = "0.0.1.11"; 89327 + sha256 = "005jljanccyxj7j7lnkralir1lcinka5kapw0nv39pd1ibyc1nrb"; 89328 isLibrary = true; 89329 isExecutable = true; 89330 libraryHaskellDepends = [ ··· 94236 }: 94237 mkDerivation { 94238 pname = "functor-combinators"; 94239 + version = "0.3.3.0"; 94240 + sha256 = "1qym0xn4ydj2vx6nhy26k4bwznjjx7spgr0pv33b2i5wpznn972z"; 94241 libraryHaskellDepends = [ 94242 assoc base bifunctors comonad constraints containers contravariant 94243 deriving-compat free invariant kan-extensions mmorph mtl ··· 96281 license = stdenv.lib.licenses.mit; 96282 }) {}; 96283 96284 + "generic-data_0_9_1_0" = callPackage 96285 ({ mkDerivation, ap-normalize, base, base-orphans, Cabal 96286 , cabal-doctest, contravariant, criterion, deepseq, doctest 96287 , generic-lens, ghc-boot-th, inspection-testing, one-liner ··· 96290 }: 96291 mkDerivation { 96292 pname = "generic-data"; 96293 + version = "0.9.1.0"; 96294 + sha256 = "0p58z70wp3vapxrwg7hkr5n6px7hws9398v9shc08c2aigq36kqa"; 96295 setupHaskellDepends = [ base Cabal cabal-doctest ]; 96296 libraryHaskellDepends = [ 96297 ap-normalize base base-orphans contravariant ghc-boot-th ··· 98432 }: 98433 mkDerivation { 98434 pname = "ghc-lib"; 98435 + version = "8.10.2.20200808"; 98436 + sha256 = "0vh941bk7fy44rn5hwqa25xbfyhm28wcy4nwpvm3291lp0cxndgh"; 98437 enableSeparateDataOutput = true; 98438 libraryHaskellDepends = [ 98439 array base binary bytestring containers deepseq directory filepath ··· 98451 }: 98452 mkDerivation { 98453 pname = "ghc-lib-parser"; 98454 + version = "8.10.2.20200808"; 98455 + sha256 = "0nfxsvpsiyxbjc3hvdax70z07k08bc255lz9jhqgq57lnw46dyfl"; 98456 enableSeparateDataOutput = true; 98457 libraryHaskellDepends = [ 98458 array base binary bytestring containers deepseq directory filepath ··· 98469 }: 98470 mkDerivation { 98471 pname = "ghc-lib-parser-ex"; 98472 + version = "8.10.0.16"; 98473 + sha256 = "1kqff62ml38hxwfnfq7ni0z65b3d3l7xqa5c5lxf3kzm9h7bdwb8"; 98474 libraryHaskellDepends = [ 98475 base bytestring containers ghc-lib-parser uniplate 98476 ]; ··· 98923 }: 98924 mkDerivation { 98925 pname = "ghc-tags-core"; 98926 + version = "0.2.3.0"; 98927 + sha256 = "0hpk3131dq07m92h6ppacgbj4ar475zrlsj2vhqgpmdh3z9lnd9c"; 98928 libraryHaskellDepends = [ 98929 attoparsec base bytestring directory filepath-bytestring ghc mtl 98930 pipes pipes-attoparsec pipes-bytestring text transformers ··· 98953 }: 98954 mkDerivation { 98955 pname = "ghc-tags-plugin"; 98956 + version = "0.2.3.0"; 98957 + sha256 = "19bkn5lp1n993jxn4mhmnyw36d1vjwbvhlr1r6ywnanis9vgrbzg"; 98958 isLibrary = true; 98959 isExecutable = true; 98960 libraryHaskellDepends = [ ··· 100004 license = stdenv.lib.licenses.lgpl21; 100005 }) {inherit (pkgs) gtk3;}; 100006 100007 + "gi-gdk_3_0_23" = callPackage 100008 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 100009 + , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3 100010 + , haskell-gi, haskell-gi-base, haskell-gi-overloading, text 100011 + , transformers 100012 + }: 100013 + mkDerivation { 100014 + pname = "gi-gdk"; 100015 + version = "3.0.23"; 100016 + sha256 = "18v3kb6kmryymmrz0d88nf25priwyh3yzh7raghc5ph2rv7n4w8m"; 100017 + setupHaskellDepends = [ 100018 + base Cabal gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango 100019 + haskell-gi 100020 + ]; 100021 + libraryHaskellDepends = [ 100022 + base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib 100023 + gi-gobject gi-pango haskell-gi haskell-gi-base 100024 + haskell-gi-overloading text transformers 100025 + ]; 100026 + libraryPkgconfigDepends = [ gtk3 ]; 100027 + description = "Gdk bindings"; 100028 + license = stdenv.lib.licenses.lgpl21; 100029 + hydraPlatforms = stdenv.lib.platforms.none; 100030 + }) {inherit (pkgs) gtk3;}; 100031 + 100032 "gi-gdk_4_0_2" = callPackage 100033 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 100034 , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk4 ··· 100161 libraryPkgconfigDepends = [ libgit2-glib ]; 100162 description = "libgit2-glib bindings"; 100163 license = stdenv.lib.licenses.lgpl21; 100164 }) {inherit (pkgs) libgit2-glib;}; 100165 100166 "gi-gio" = callPackage ··· 100219 libraryPkgconfigDepends = [ gobject-introspection ]; 100220 description = "GIRepository (gobject-introspection) bindings"; 100221 license = stdenv.lib.licenses.lgpl21; 100222 }) {inherit (pkgs) gobject-introspection;}; 100223 100224 "gi-glib" = callPackage ··· 100316 libraryPkgconfigDepends = [ graphene-gobject ]; 100317 description = "Graphene bindings"; 100318 license = stdenv.lib.licenses.lgpl21; 100319 }) {graphene-gobject = null;}; 100320 100321 "gi-graphene_1_0_2" = callPackage ··· 100336 description = "Graphene bindings"; 100337 license = stdenv.lib.licenses.lgpl21; 100338 hydraPlatforms = stdenv.lib.platforms.none; 100339 }) {graphene-gobject = null;}; 100340 100341 "gi-gsk" = callPackage ··· 100360 libraryPkgconfigDepends = [ gtk4 ]; 100361 description = "Gsk bindings"; 100362 license = stdenv.lib.licenses.lgpl21; 100363 }) {gtk4 = null;}; 100364 100365 "gi-gst" = callPackage ··· 100379 libraryPkgconfigDepends = [ gstreamer ]; 100380 description = "GStreamer bindings"; 100381 license = stdenv.lib.licenses.lgpl21; 100382 }) {inherit (pkgs.gst_all_1) gstreamer;}; 100383 100384 "gi-gstaudio" = callPackage ··· 100400 libraryPkgconfigDepends = [ gst-plugins-base ]; 100401 description = "GStreamerAudio bindings"; 100402 license = stdenv.lib.licenses.lgpl21; 100403 }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; 100404 100405 "gi-gstbase" = callPackage ··· 100421 libraryPkgconfigDepends = [ gst-plugins-base ]; 100422 description = "GStreamerBase bindings"; 100423 license = stdenv.lib.licenses.lgpl21; 100424 }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; 100425 100426 "gi-gstpbutils" = callPackage ··· 100445 libraryPkgconfigDepends = [ gstreamer-pbutils ]; 100446 description = "GStreamer Plugins Base Utils bindings"; 100447 license = stdenv.lib.licenses.lgpl21; 100448 }) {gstreamer-pbutils = null;}; 100449 100450 "gi-gsttag" = callPackage ··· 100466 libraryPkgconfigDepends = [ gstreamer-tag ]; 100467 description = "GStreamer Tag bindings"; 100468 license = stdenv.lib.licenses.lgpl21; 100469 }) {gstreamer-tag = null;}; 100470 100471 "gi-gstvideo" = callPackage ··· 100487 libraryPkgconfigDepends = [ gst-plugins-base ]; 100488 description = "GStreamerVideo bindings"; 100489 license = stdenv.lib.licenses.lgpl21; 100490 }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; 100491 100492 "gi-gtk" = callPackage ··· 100513 license = stdenv.lib.licenses.lgpl21; 100514 }) {inherit (pkgs) gtk3;}; 100515 100516 + "gi-gtk_3_0_35" = callPackage 100517 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 100518 + , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject 100519 + , gi-pango, gtk3, haskell-gi, haskell-gi-base 100520 + , haskell-gi-overloading, text, transformers 100521 + }: 100522 + mkDerivation { 100523 + pname = "gi-gtk"; 100524 + version = "3.0.35"; 100525 + sha256 = "08z6kc9m7xb24d9z08yy3g66l8i7nircnaiy5i82yfl2l4slvz2w"; 100526 + setupHaskellDepends = [ 100527 + base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib 100528 + gi-gobject gi-pango haskell-gi 100529 + ]; 100530 + libraryHaskellDepends = [ 100531 + base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf 100532 + gi-gio gi-glib gi-gobject gi-pango haskell-gi haskell-gi-base 100533 + haskell-gi-overloading text transformers 100534 + ]; 100535 + libraryPkgconfigDepends = [ gtk3 ]; 100536 + description = "Gtk bindings"; 100537 + license = stdenv.lib.licenses.lgpl21; 100538 + hydraPlatforms = stdenv.lib.platforms.none; 100539 + }) {inherit (pkgs) gtk3;}; 100540 + 100541 "gi-gtk_4_0_2" = callPackage 100542 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 100543 , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject ··· 100659 libraryPkgconfigDepends = [ gtk-mac-integration-gtk3 ]; 100660 description = "GtkosxApplication bindings"; 100661 license = stdenv.lib.licenses.lgpl21; 100662 }) {gtk-mac-integration-gtk3 = null;}; 100663 100664 "gi-gtksource" = callPackage ··· 100683 libraryPkgconfigDepends = [ gtksourceview3 ]; 100684 description = "GtkSource bindings"; 100685 license = stdenv.lib.licenses.lgpl21; 100686 }) {inherit (pkgs) gtksourceview3;}; 100687 100688 "gi-handy" = callPackage ··· 100707 libraryPkgconfigDepends = [ libhandy ]; 100708 description = "libhandy bindings"; 100709 license = stdenv.lib.licenses.lgpl21; 100710 }) {inherit (pkgs) libhandy;}; 100711 100712 "gi-harfbuzz" = callPackage ··· 100726 libraryPkgconfigDepends = [ harfbuzz harfbuzz-gobject ]; 100727 description = "HarfBuzz bindings"; 100728 license = stdenv.lib.licenses.lgpl21; 100729 }) {inherit (pkgs) harfbuzz; harfbuzz-gobject = null;}; 100730 100731 "gi-ibus" = callPackage ··· 100747 libraryPkgconfigDepends = [ ibus ]; 100748 description = "IBus bindings"; 100749 license = stdenv.lib.licenses.lgpl21; 100750 }) {inherit (pkgs) ibus;}; 100751 100752 "gi-javascriptcore" = callPackage ··· 100788 libraryPkgconfigDepends = [ libnotify ]; 100789 description = "Libnotify bindings"; 100790 license = stdenv.lib.licenses.lgpl21; 100791 }) {inherit (pkgs) libnotify;}; 100792 100793 "gi-ostree" = callPackage ··· 100810 description = "OSTree bindings"; 100811 license = stdenv.lib.licenses.lgpl21; 100812 platforms = [ "i686-linux" "x86_64-linux" ]; 100813 }) {inherit (pkgs) ostree;}; 100814 100815 "gi-pango" = callPackage ··· 100885 ''; 100886 description = "PangoCairo bindings"; 100887 license = stdenv.lib.licenses.lgpl21; 100888 }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; 100889 100890 "gi-poppler" = callPackage ··· 100906 libraryPkgconfigDepends = [ poppler ]; 100907 description = "Poppler bindings"; 100908 license = stdenv.lib.licenses.lgpl21; 100909 }) {inherit (pkgs) poppler;}; 100910 100911 "gi-secret" = callPackage ··· 100927 libraryPkgconfigDepends = [ libsecret ]; 100928 description = "Libsecret bindings"; 100929 license = stdenv.lib.licenses.lgpl21; 100930 }) {inherit (pkgs) libsecret;}; 100931 100932 "gi-soup" = callPackage ··· 100972 libraryPkgconfigDepends = [ vte_291 ]; 100973 description = "Vte bindings"; 100974 license = stdenv.lib.licenses.lgpl21; 100975 }) {vte_291 = pkgs.vte;}; 100976 100977 "gi-webkit" = callPackage ··· 101068 libraryPkgconfigDepends = [ libwnck ]; 101069 description = "Wnck bindings"; 101070 license = stdenv.lib.licenses.lgpl21; 101071 }) {inherit (pkgs) libwnck;}; 101072 101073 "gi-xlib" = callPackage ··· 101375 }: 101376 mkDerivation { 101377 pname = "git-annex"; 101378 + version = "8.20200810"; 101379 + sha256 = "1wy6ckcf5f6m94gakg1504h1zryail3mmj85sglq03s45vawjcg6"; 101380 configureFlags = [ 101381 "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" 101382 "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" ··· 101432 }: 101433 mkDerivation { 101434 pname = "git-brunch"; 101435 + version = "1.4.0.0"; 101436 + sha256 = "1dv0hzdfmzm2c3mfmf73lb085279hnfx41ly5393l0vj1v2ln6a4"; 101437 isLibrary = false; 101438 isExecutable = true; 101439 executableHaskellDepends = [ ··· 102032 }: 102033 mkDerivation { 102034 pname = "github-rest"; 102035 version = "1.0.3"; 102036 sha256 = "0alwix2lvrvv6ba7nrxg6qvvrdci1vbv94yvq29zmsab9lbv6jrb"; 102037 libraryHaskellDepends = [ ··· 102045 ]; 102046 description = "Query the GitHub REST API programmatically"; 102047 license = stdenv.lib.licenses.bsd3; 102048 }) {}; 102049 102050 "github-tools" = callPackage ··· 107805 }: 107806 mkDerivation { 107807 pname = "graphviz"; 107808 version = "2999.20.1.0"; 107809 sha256 = "0l0zxgb938hh09qirggbaskq79mgj3s081cnr42y5vm1rp1jir2s"; 107810 isLibrary = true; ··· 107821 benchmarkHaskellDepends = [ base criterion deepseq text ]; 107822 description = "Bindings to Graphviz for graph visualisation"; 107823 license = stdenv.lib.licenses.bsd3; 107824 }) {inherit (pkgs) graphviz;}; 107825 107826 "graql" = callPackage ··· 109114 ]; 109115 description = "A standalone StatusNotifierItem/AppIndicator tray"; 109116 license = stdenv.lib.licenses.bsd3; 109117 + hydraPlatforms = stdenv.lib.platforms.none; 109118 + broken = true; 109119 }) {inherit (pkgs) gtk3;}; 109120 109121 "gtk-strut" = callPackage ··· 109127 libraryHaskellDepends = [ base gi-gdk gi-gtk text transformers ]; 109128 description = "Libary for creating strut windows with gi-gtk"; 109129 license = stdenv.lib.licenses.bsd3; 109130 + hydraPlatforms = stdenv.lib.platforms.none; 109131 + broken = true; 109132 }) {}; 109133 109134 "gtk-toggle-button-list" = callPackage ··· 113087 broken = true; 113088 }) {}; 113089 113090 + "hapistrano_0_4_1_2" = callPackage 113091 + ({ mkDerivation, aeson, ansi-terminal, async, base, directory 113092 + , filepath, formatting, gitrev, hspec, hspec-discover, mtl 113093 + , optparse-applicative, path, path-io, process, QuickCheck 113094 + , silently, stm, temporary, time, transformers, typed-process, yaml 113095 + }: 113096 + mkDerivation { 113097 + pname = "hapistrano"; 113098 + version = "0.4.1.2"; 113099 + sha256 = "0ylahq6hnyzyhh4fb2d21fwisq8a8x5rij6zrzvhcapnir2vkrn0"; 113100 + isLibrary = true; 113101 + isExecutable = true; 113102 + enableSeparateDataOutput = true; 113103 + libraryHaskellDepends = [ 113104 + aeson ansi-terminal base filepath formatting gitrev mtl path 113105 + process stm time transformers typed-process yaml 113106 + ]; 113107 + executableHaskellDepends = [ 113108 + aeson async base formatting gitrev optparse-applicative path 113109 + path-io stm yaml 113110 + ]; 113111 + testHaskellDepends = [ 113112 + base directory filepath hspec mtl path path-io process QuickCheck 113113 + silently temporary yaml 113114 + ]; 113115 + testToolDepends = [ hspec-discover ]; 113116 + description = "A deployment library for Haskell applications"; 113117 + license = stdenv.lib.licenses.mit; 113118 + hydraPlatforms = stdenv.lib.platforms.none; 113119 + broken = true; 113120 + }) {}; 113121 + 113122 "happindicator" = callPackage 113123 ({ mkDerivation, array, base, bytestring, containers, glib, gtk 113124 , gtk2hs-buildtools, libappindicator-gtk2, mtl ··· 115329 }: 115330 mkDerivation { 115331 pname = "haskell-ci"; 115332 + version = "0.10.3"; 115333 + sha256 = "18qynghm1aj0qr18v6m3md75p2l3kyhki03798jwhi4kc5qdk2vv"; 115334 isLibrary = false; 115335 isExecutable = true; 115336 libraryHaskellDepends = [ ··· 115686 license = stdenv.lib.licenses.lgpl21; 115687 }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; 115688 115689 + "haskell-gi_0_24_4" = callPackage 115690 ({ mkDerivation, ansi-terminal, attoparsec, base, bytestring, Cabal 115691 , cabal-doctest, containers, directory, doctest, filepath, glib 115692 , gobject-introspection, haskell-gi-base, mtl, pretty-show, process ··· 115694 }: 115695 mkDerivation { 115696 pname = "haskell-gi"; 115697 + version = "0.24.4"; 115698 + sha256 = "0q2r8y9ca3w389sx613jz95hg9cssj6g4i2xyi8423nyqvyzms48"; 115699 setupHaskellDepends = [ base Cabal cabal-doctest ]; 115700 libraryHaskellDepends = [ 115701 ansi-terminal attoparsec base bytestring Cabal containers directory ··· 119287 broken = true; 119288 }) {}; 119289 119290 + "hasql-optparse-applicative_0_3_0_6" = callPackage 119291 + ({ mkDerivation, base-prelude, hasql, hasql-pool 119292 + , optparse-applicative 119293 + }: 119294 + mkDerivation { 119295 + pname = "hasql-optparse-applicative"; 119296 + version = "0.3.0.6"; 119297 + sha256 = "16k6k2qp8avnlsidyjk458lags2633789wvvwdy4xgmiqs1riqr9"; 119298 + libraryHaskellDepends = [ 119299 + base-prelude hasql hasql-pool optparse-applicative 119300 + ]; 119301 + description = "\"optparse-applicative\" parsers for \"hasql\""; 119302 + license = stdenv.lib.licenses.mit; 119303 + hydraPlatforms = stdenv.lib.platforms.none; 119304 + broken = true; 119305 + }) {}; 119306 + 119307 "hasql-pool" = callPackage 119308 ({ mkDerivation, base-prelude, hasql, hspec, resource-pool, time }: 119309 mkDerivation { ··· 121793 }: 121794 mkDerivation { 121795 pname = "hedis"; 121796 + version = "0.12.14"; 121797 + sha256 = "14qd248ccijakksbaj72nwz8dx8qg4bifla3p0vsm6v96xb2qjbw"; 121798 libraryHaskellDepends = [ 121799 async base bytestring bytestring-lexing deepseq errors exceptions 121800 HTTP mtl network network-uri resource-pool scanner stm text time ··· 124397 license = stdenv.lib.licenses.bsd3; 124398 }) {}; 124399 124400 + "hie-bios_0_6_2" = callPackage 124401 ({ mkDerivation, aeson, base, base16-bytestring, bytestring 124402 , conduit, conduit-extra, containers, cryptohash-sha1, deepseq 124403 , directory, extra, file-embed, filepath, ghc, hslogger ··· 124407 }: 124408 mkDerivation { 124409 pname = "hie-bios"; 124410 + version = "0.6.2"; 124411 + sha256 = "0x0lgrkbp4f9r96cf65d8qg55hp2qb14xd3zzap5yhybhlp54w8m"; 124412 isLibrary = true; 124413 isExecutable = true; 124414 libraryHaskellDepends = [ ··· 129799 pname = "hpc-lcov"; 129800 version = "1.0.1"; 129801 sha256 = "01ws5y2vavgm7151dcabw3jwny1prrnzn5b04q76m5gc6a36wivl"; 129802 + revision = "1"; 129803 + editedCabalFile = "1jv81ywwzvr37zki8hjylj6gfhamq7fi7rpjyk1g0d06ac9ix0zp"; 129804 isLibrary = true; 129805 isExecutable = true; 129806 libraryHaskellDepends = [ base containers hpc ]; ··· 130810 , text, time, unordered-containers, uuid, vector 130811 130812 , text, time, unordered-containers, uuid, vector 130813 , text, time, unordered-containers, uuid, vector 130814 mkDerivation { 130815 , text, time, unordered-containers, uuid, vector ··· 130818 , text, time, unordered-containers, uuid, vector 130819 , text, time, unordered-containers, uuid, vector 130820 license = stdenv.lib.licenses.bsd3; 130821 }) {}; 130822 130823 , text, time, unordered-containers, uuid, vector ··· 133594 license = stdenv.lib.licenses.mit; 133595 }) {}; 133596 133597 + "hspec_2_7_2" = callPackage 133598 + , text, time, unordered-containers, uuid, vector 133599 + , text, time, unordered-containers, uuid, vector 133600 + }: 133601 + mkDerivation { 133602 + , text, time, unordered-containers, uuid, vector 133603 + version = "2.7.2"; 133604 + sha256 = "0zb9b85vx7wyx8zcrkqwlwp9qmsg3f5qnd43ps6xfrsn1l2vszm9"; 133605 + libraryHaskellDepends = [ 133606 + , text, time, unordered-containers, uuid, vector 133607 + ]; 133608 + , text, time, unordered-containers, uuid, vector 133609 + license = stdenv.lib.licenses.mit; 133610 + hydraPlatforms = stdenv.lib.platforms.none; 133611 + }) {}; 133612 + 133613 , text, time, unordered-containers, uuid, vector 133614 , text, time, unordered-containers, uuid, vector 133615 , text, time, unordered-containers, uuid, vector ··· 133694 license = stdenv.lib.licenses.mit; 133695 }) {}; 133696 133697 + "hspec-core_2_7_2" = callPackage 133698 + , text, time, unordered-containers, uuid, vector 133699 + , text, time, unordered-containers, uuid, vector 133700 + , text, time, unordered-containers, uuid, vector 133701 + , text, time, unordered-containers, uuid, vector 133702 + }: 133703 + mkDerivation { 133704 + , text, time, unordered-containers, uuid, vector 133705 + version = "2.7.2"; 133706 + sha256 = "0vzsxwgg3rfp6mxq85sb1v2wd77f2lwdg9zm5f1mqm02avfglfnk"; 133707 + libraryHaskellDepends = [ 133708 + , text, time, unordered-containers, uuid, vector 133709 + , text, time, unordered-containers, uuid, vector 133710 + , text, time, unordered-containers, uuid, vector 133711 + ]; 133712 + testHaskellDepends = [ 133713 + , text, time, unordered-containers, uuid, vector 133714 + , text, time, unordered-containers, uuid, vector 133715 + , text, time, unordered-containers, uuid, vector 133716 + transformers 133717 + ]; 133718 + , text, time, unordered-containers, uuid, vector 133719 + , text, time, unordered-containers, uuid, vector 133720 + , text, time, unordered-containers, uuid, vector 133721 + license = stdenv.lib.licenses.mit; 133722 + hydraPlatforms = stdenv.lib.platforms.none; 133723 + }) {}; 133724 + 133725 , text, time, unordered-containers, uuid, vector 133726 , text, time, unordered-containers, uuid, vector 133727 , text, time, unordered-containers, uuid, vector ··· 133759 license = stdenv.lib.licenses.mit; 133760 }) {}; 133761 133762 + "hspec-discover_2_7_2" = callPackage 133763 + , text, time, unordered-containers, uuid, vector 133764 + }: 133765 + mkDerivation { 133766 + , text, time, unordered-containers, uuid, vector 133767 + version = "2.7.2"; 133768 + sha256 = "0n3lvdznmrgrhd11969xn4ci31439y6fpr9xkzsabij87rw091l8"; 133769 + isLibrary = true; 133770 + isExecutable = true; 133771 + libraryHaskellDepends = [ base directory filepath ]; 133772 + executableHaskellDepends = [ base directory filepath ]; 133773 + testHaskellDepends = [ 133774 + , text, time, unordered-containers, uuid, vector 133775 + ]; 133776 + , text, time, unordered-containers, uuid, vector 133777 + , text, time, unordered-containers, uuid, vector 133778 + license = stdenv.lib.licenses.mit; 133779 + hydraPlatforms = stdenv.lib.platforms.none; 133780 + }) {}; 133781 + 133782 , text, time, unordered-containers, uuid, vector 133783 , text, time, unordered-containers, uuid, vector 133784 mkDerivation { ··· 133906 }: 133907 mkDerivation { 133908 , text, time, unordered-containers, uuid, vector 133909 version = "0.1.0.3"; 133910 , text, time, unordered-containers, uuid, vector 133911 isLibrary = true; ··· 133915 , text, time, unordered-containers, uuid, vector 133916 , text, time, unordered-containers, uuid, vector 133917 license = stdenv.lib.licenses.mit; 133918 }) {}; 133919 133920 , text, time, unordered-containers, uuid, vector ··· 143332 ]; 143333 description = "Inline some Assembly in ur Haskell!"; 143334 license = stdenv.lib.licenses.bsd3; 143335 + hydraPlatforms = stdenv.lib.platforms.none; 143336 + broken = true; 143337 }) {}; 143338 143339 "inline-c_0_5_6_1" = callPackage ··· 144494 broken = true; 144495 }) {}; 144496 144497 + "interval-algebra" = callPackage 144498 + ({ mkDerivation, base, hspec, QuickCheck, time }: 144499 + mkDerivation { 144500 + pname = "interval-algebra"; 144501 + version = "0.1.2"; 144502 + sha256 = "1nhpcrp7r6ba9mqwrfkx0zk7awdw24kh75ggq1wcif6mpir2khkx"; 144503 + libraryHaskellDepends = [ base time ]; 144504 + testHaskellDepends = [ base hspec QuickCheck time ]; 144505 + description = "An implementation of Allen's interval algebra for temporal logic"; 144506 + license = stdenv.lib.licenses.bsd3; 144507 + }) {}; 144508 + 144509 "interval-functor" = callPackage 144510 ({ mkDerivation, base, hedgehog, transformers }: 144511 mkDerivation { ··· 144755 }: 144756 mkDerivation { 144757 pname = "invertible"; 144758 + version = "0.2.0.7"; 144759 + sha256 = "1ngcmy59cyrg5idcn8a4gxg6ipq88rhhwhdb09gra8jcraq9n7ii"; 144760 libraryHaskellDepends = [ 144761 base haskell-src-meta invariant lens partial-isomorphisms 144762 semigroupoids template-haskell transformers ··· 144773 }: 144774 mkDerivation { 144775 pname = "invertible-grammar"; 144776 + version = "0.1.3"; 144777 + sha256 = "160hw7p5mpajwmv8fps2gicqj3x3yr9w239pfnv9i5gsf4irnn9n"; 144778 libraryHaskellDepends = [ 144779 base bifunctors containers mtl prettyprinter profunctors semigroups 144780 tagged template-haskell text transformers 144781 ]; 144782 description = "Invertible parsing combinators framework"; 144783 license = stdenv.lib.licenses.bsd3; 144784 }) {}; 144785 144786 "invertible-hlist" = callPackage ··· 145190 ({ mkDerivation, base, binary, bytestring, iproute }: 145191 mkDerivation { 145192 pname = "ip2proxy"; 145193 + version = "3.0.0"; 145194 + sha256 = "1hi1q0kiqqp96w29y9699s66rmyr7k0fp6s7z86ll9n3bmf0a4g4"; 145195 libraryHaskellDepends = [ base binary bytestring iproute ]; 145196 description = "IP2Proxy Haskell package for proxy detection"; 145197 license = stdenv.lib.licenses.mit; ··· 145273 }: 145274 mkDerivation { 145275 pname = "ipfs"; 145276 + version = "1.1.2"; 145277 + sha256 = "13pzj9wx7f0wgzk1hy791a4p2ivfxyb045srfa75l065ca8bjnis"; 145278 libraryHaskellDepends = [ 145279 aeson base bytestring envy flow Glob ip lens monad-logger 145280 regex-compat rio servant-client servant-server swagger2 text vector ··· 146840 }: 146841 mkDerivation { 146842 pname = "ixset-typed-conversions"; 146843 + version = "0.1.0.1"; 146844 + sha256 = "09fl92lkalbzq23742wjiw4568607cdbxy3a8qgkm2hn8r7djhwi"; 146845 libraryHaskellDepends = [ 146846 base exceptions hashable ixset-typed unordered-containers 146847 zipper-extra ··· 149462 }: 149463 mkDerivation { 149464 pname = "jukebox"; 149465 + version = "0.5.2"; 149466 + sha256 = "1nhz7rf8sczrhph0h9hia1vqxig1bcpc8v6zvxgrywmacl1mnky6"; 149467 isLibrary = true; 149468 isExecutable = true; 149469 libraryHaskellDepends = [ ··· 150690 }: 150691 mkDerivation { 150692 pname = "keera-hails-i18n"; 150693 + version = "0.7.0"; 150694 + sha256 = "0k5cvnkc5r99r4361hn5jrmslvb21y3k2pj0dryiwbs21jwyv213"; 150695 libraryHaskellDepends = [ 150696 base directory filepath glib hgettext MissingK setlocale 150697 utf8-string ··· 150706 ({ mkDerivation, base }: 150707 mkDerivation { 150708 pname = "keera-hails-mvc-controller"; 150709 + version = "0.7.0"; 150710 + sha256 = "1j7vhkghdh4hrap7g2xshpd2fw3acgwvi68f2c01mqmfi5dl4z2n"; 150711 libraryHaskellDepends = [ base ]; 150712 description = "Haskell on Gtk rails - Gtk-based controller for MVC applications"; 150713 license = stdenv.lib.licenses.bsd3; ··· 150719 }: 150720 mkDerivation { 150721 pname = "keera-hails-mvc-environment-gtk"; 150722 + version = "0.7.0"; 150723 + sha256 = "0px1f9jpdgkd253bhgalxk5rxx971s0s2a845h81x6hy9wi7n6mf"; 150724 libraryHaskellDepends = [ 150725 base keera-hails-mvc-model-protectedmodel keera-hails-mvc-view 150726 keera-hails-mvc-view-gtk ··· 150737 }: 150738 mkDerivation { 150739 pname = "keera-hails-mvc-model-lightmodel"; 150740 + version = "0.7.0"; 150741 + sha256 = "0nklcgsadm2h62jwp8i419dwrsfs885cmglr5n39b7r1zy7dsa0f"; 150742 libraryHaskellDepends = [ 150743 base containers keera-hails-reactivevalues MissingK stm 150744 template-haskell ··· 150755 }: 150756 mkDerivation { 150757 pname = "keera-hails-mvc-model-protectedmodel"; 150758 + version = "0.7.0"; 150759 + sha256 = "0vz4bcnm2p03c3x6qspii9kylcv4d0qlmzawm6x1f148srrwidi7"; 150760 libraryHaskellDepends = [ 150761 base containers keera-hails-reactivevalues MissingK stm 150762 template-haskell ··· 150831 }: 150832 mkDerivation { 150833 pname = "keera-hails-reactive-cbmvar"; 150834 + version = "0.7.0"; 150835 + sha256 = "085zli0s7p8f2ib2882q4qpqlh6czw62626fnrjiks4sff3f31c7"; 150836 libraryHaskellDepends = [ 150837 base keera-callbacks keera-hails-reactivevalues lens 150838 ]; ··· 150868 }: 150869 mkDerivation { 150870 pname = "keera-hails-reactive-gtk"; 150871 + version = "0.7.0"; 150872 + sha256 = "1xn5ar20x8kpiv1z6i5gcvm09xjgrdppjyxd2si8nyv7gw173scr"; 150873 libraryHaskellDepends = [ 150874 base bytestring cairo glib gtk gtk-helpers 150875 keera-hails-reactivevalues mtl transformers ··· 150887 }: 150888 mkDerivation { 150889 pname = "keera-hails-reactive-htmldom"; 150890 + version = "0.7.0"; 150891 + sha256 = "05lz38pffm6k3kbw3g6gkslixq4nc764n1i4dxz9p6zwj27f6svc"; 150892 libraryHaskellDepends = [ 150893 base ghcjs-dom keera-callbacks keera-hails-reactive-cbmvar 150894 keera-hails-reactivevalues mtl transformers ··· 150905 }: 150906 mkDerivation { 150907 pname = "keera-hails-reactive-network"; 150908 + version = "0.7.0"; 150909 + sha256 = "0qn1vz55fpvrx4l3lak0lkx0ggli8smf3r4za3zypgfv3a1q3rxm"; 150910 libraryHaskellDepends = [ 150911 base bytestring keera-hails-reactivevalues network network-bsd 150912 ]; ··· 150936 ({ mkDerivation, base, keera-hails-reactivevalues, wx, wxcore }: 150937 mkDerivation { 150938 pname = "keera-hails-reactive-wx"; 150939 + version = "0.7.0"; 150940 + sha256 = "1cpwyqqcdnxc30qmny0rq0ww51vv8g241jwjis1sbs47hvwgvi27"; 150941 libraryHaskellDepends = [ 150942 base keera-hails-reactivevalues wx wxcore 150943 ]; ··· 150953 }: 150954 mkDerivation { 150955 pname = "keera-hails-reactive-yampa"; 150956 + version = "0.7.0"; 150957 + sha256 = "178r5igwnvkbpz1hypiy4l61s3amr4j8bk1yvqc7jvs40cldiw1x"; 150958 libraryHaskellDepends = [ 150959 base keera-callbacks keera-hails-reactivevalues time Yampa 150960 ]; ··· 150984 }: 150985 mkDerivation { 150986 pname = "keera-hails-reactivevalues"; 150987 + version = "0.7.0"; 150988 + sha256 = "1dmsjyvrzh8rdp9kcc8ysar0zw9gaxqh231xaqy17ndfhlmp2nzq"; 150989 libraryHaskellDepends = [ base contravariant ]; 150990 testHaskellDepends = [ 150991 base directory filepath hlint HUnit mtl process QuickCheck ··· 151811 }: 151812 mkDerivation { 151813 pname = "kontrakcja-templates"; 151814 + version = "0.12"; 151815 + sha256 = "1asmsk3d4wqmiqsxnhaknmnrplrwq6cx6p7n7859rl6x7ac0fjg0"; 151816 libraryHaskellDepends = [ 151817 base containers directory exceptions HStringTemplate html json 151818 monad-control mtl time transformers transformers-base ··· 152113 ]; 152114 description = "Create Kubernetes Admission Webhooks in Haskell"; 152115 license = stdenv.lib.licenses.mit; 152116 + }) {}; 152117 + 152118 + "kubernetes-webhook-haskell_0_2_0_3" = callPackage 152119 + ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring 152120 + , text, unordered-containers 152121 + }: 152122 + mkDerivation { 152123 + pname = "kubernetes-webhook-haskell"; 152124 + version = "0.2.0.3"; 152125 + sha256 = "1xvc35jibs2nizzp6xgdzzyx6fhgzgqb55a48vl1djbi84s8b4q1"; 152126 + libraryHaskellDepends = [ 152127 + aeson base base64-bytestring binary bytestring text 152128 + unordered-containers 152129 + ]; 152130 + description = "Create Kubernetes Admission Webhooks in Haskell"; 152131 + license = stdenv.lib.licenses.mit; 152132 + hydraPlatforms = stdenv.lib.platforms.none; 152133 }) {}; 152134 152135 "kuifje" = callPackage ··· 153368 }: 153369 mkDerivation { 153370 pname = "language-ats"; 153371 + version = "1.7.10.2"; 153372 + sha256 = "10lanbzbaywyc3a8lq2ndgmpqq2kgpm4vkjxw7gl4irzjn3206yg"; 153373 enableSeparateDataOutput = true; 153374 libraryHaskellDepends = [ 153375 ansi-wl-pprint array base composition-prelude containers deepseq ··· 153645 }: 153646 mkDerivation { 153647 pname = "language-dickinson"; 153648 + version = "1.1.0.3"; 153649 + sha256 = "1dfm89zrmq2ibyhjn4hbzq6yfm5acc63s47w7bp1asn6lxnd9dc0"; 153650 isLibrary = true; 153651 isExecutable = true; 153652 enableSeparateDataOutput = true; ··· 165737 ]; 165738 description = "Massiv (Массив) is an Array Library"; 165739 license = stdenv.lib.licenses.bsd3; 165740 + hydraPlatforms = stdenv.lib.platforms.none; 165741 + broken = true; 165742 }) {}; 165743 165744 "massiv-io" = callPackage ··· 165764 ]; 165765 description = "Import/export of Image files into massiv Arrays"; 165766 license = stdenv.lib.licenses.bsd3; 165767 + hydraPlatforms = stdenv.lib.platforms.none; 165768 + broken = true; 165769 }) {}; 165770 165771 "massiv-io_0_3_0_1" = callPackage ··· 165789 description = "Import/export of Image files into massiv Arrays"; 165790 license = stdenv.lib.licenses.bsd3; 165791 hydraPlatforms = stdenv.lib.platforms.none; 165792 + broken = true; 165793 }) {}; 165794 165795 "massiv-scheduler" = callPackage ··· 165832 ]; 165833 description = "Library that contains generators, properties and tests for Massiv Array Library"; 165834 license = stdenv.lib.licenses.bsd3; 165835 + hydraPlatforms = stdenv.lib.platforms.none; 165836 + broken = true; 165837 }) {}; 165838 165839 "master-plan" = callPackage ··· 165974 ]; 165975 description = "Collection of tools for numeric computations"; 165976 license = stdenv.lib.licenses.bsd2; 165977 + }) {}; 165978 + 165979 + "math-functions_0_3_4_1" = callPackage 165980 + ({ mkDerivation, base, data-default-class, deepseq, erf, gauge 165981 + , primitive, QuickCheck, random, tasty, tasty-hunit 165982 + , tasty-quickcheck, vector, vector-th-unbox 165983 + }: 165984 + mkDerivation { 165985 + pname = "math-functions"; 165986 + version = "0.3.4.1"; 165987 + sha256 = "13x4whrnacqvmprfi665n5nby8hqlz1pxrglsl81chyk0gy0l2p2"; 165988 + libraryHaskellDepends = [ 165989 + base data-default-class deepseq primitive vector 165990 + ]; 165991 + testHaskellDepends = [ 165992 + base data-default-class deepseq erf primitive QuickCheck tasty 165993 + tasty-hunit tasty-quickcheck vector vector-th-unbox 165994 + ]; 165995 + benchmarkHaskellDepends = [ 165996 + base data-default-class gauge random vector 165997 + ]; 165998 + description = "Collection of tools for numeric computations"; 165999 + license = stdenv.lib.licenses.bsd2; 166000 + hydraPlatforms = stdenv.lib.platforms.none; 166001 }) {}; 166002 166003 "math-grads" = callPackage ··· 166310 }: 166311 mkDerivation { 166312 pname = "matrix-as-xyz"; 166313 + version = "0.1.2.2"; 166314 + sha256 = "1qblzv6893z6y9jkp2v71g73x35bbizxghliby39fx6kxw6l2j7w"; 166315 + revision = "2"; 166316 + editedCabalFile = "01r2n4ys2z92wkdpky171dbxklynvp5cjf7vi61sf4hjdqih17nf"; 166317 libraryHaskellDepends = [ base matrix parsec ]; 166318 testHaskellDepends = [ 166319 base doctest hspec matrix parsec QuickCheck 166320 ]; ··· 166465 }: 166466 mkDerivation { 166467 pname = "matterhorn"; 166468 + version = "50200.10.0"; 166469 + sha256 = "0wj1bsqmlzb7q92h3hj5gwgwknwqh5p487mgbcd82rgflp4sq5rx"; 166470 isLibrary = false; 166471 isExecutable = true; 166472 enableSeparateDataOutput = true; ··· 166491 ]; 166492 description = "Terminal client for the Mattermost chat system"; 166493 license = stdenv.lib.licenses.bsd3; 166494 + maintainers = with stdenv.lib.maintainers; [ kiwi ]; 166495 }) {}; 166496 166497 "mattermost-api" = callPackage ··· 166504 }: 166505 mkDerivation { 166506 pname = "mattermost-api"; 166507 + version = "50200.7.0"; 166508 + sha256 = "1zqvfp0miql9ha9fcvr84p7yhli5br9kmsn080h058zknyabrl8p"; 166509 isLibrary = true; 166510 isExecutable = true; 166511 libraryHaskellDepends = [ ··· 166529 }: 166530 mkDerivation { 166531 pname = "mattermost-api-qc"; 166532 + version = "50200.7.0"; 166533 + sha256 = "0gzrbgzynzr5g234dm1qbs9xkddfvm08rv1n12qx0191fzicbf25"; 166534 libraryHaskellDepends = [ 166535 base containers mattermost-api QuickCheck text time 166536 ]; ··· 168468 broken = true; 168469 }) {}; 168470 168471 + "metro" = callPackage 168472 + ({ mkDerivation, base, binary, bytestring, hashable, hslogger, mtl 168473 + , transformers, unix-time, unliftio, unordered-containers 168474 + }: 168475 + mkDerivation { 168476 + pname = "metro"; 168477 + version = "0.1.0.1"; 168478 + sha256 = "1snivs6zf3pjkh6p29wafjnrw8sfcrakl5s8ksn20hr1y8780v9k"; 168479 + libraryHaskellDepends = [ 168480 + base binary bytestring hashable hslogger mtl transformers unix-time 168481 + unliftio unordered-containers 168482 + ]; 168483 + description = "A simple tcp and udp socket server framework"; 168484 + license = stdenv.lib.licenses.bsd3; 168485 + }) {}; 168486 + 168487 + "metro-socket" = callPackage 168488 + ({ mkDerivation, base, bytestring, directory, hashable, hslogger 168489 + , metro, mtl, network, transformers, unliftio 168490 + }: 168491 + mkDerivation { 168492 + pname = "metro-socket"; 168493 + version = "0.1.0.0"; 168494 + sha256 = "0ph2w4dwkixg5w3m13giy75zcl1f1kd52lrkbx6v0vf595dhgrcf"; 168495 + libraryHaskellDepends = [ 168496 + base bytestring directory hashable hslogger metro mtl network 168497 + transformers unliftio 168498 + ]; 168499 + description = "Socket transport for metro"; 168500 + license = stdenv.lib.licenses.bsd3; 168501 + }) {}; 168502 + 168503 + "metro-transport-crypto" = callPackage 168504 + ({ mkDerivation, base, binary, bytestring, cryptonite, metro 168505 + , QuickCheck, quickcheck-instances, text, unliftio 168506 + }: 168507 + mkDerivation { 168508 + pname = "metro-transport-crypto"; 168509 + version = "0.1.0.0"; 168510 + sha256 = "1w7h47lrmw1zzdi8bp5rxrxidpxl1pf9q7ns38mqwf49xl9yyvz7"; 168511 + libraryHaskellDepends = [ 168512 + base binary bytestring cryptonite metro text unliftio 168513 + ]; 168514 + testHaskellDepends = [ 168515 + base bytestring cryptonite metro QuickCheck quickcheck-instances 168516 + ]; 168517 + description = "Crypto transport for metro"; 168518 + license = stdenv.lib.licenses.bsd3; 168519 + }) {}; 168520 + 168521 + "metro-transport-tls" = callPackage 168522 + ({ mkDerivation, base, bytestring, data-default-class, metro, pem 168523 + , tls, x509, x509-store, x509-validation 168524 + }: 168525 + mkDerivation { 168526 + pname = "metro-transport-tls"; 168527 + version = "0.1.0.0"; 168528 + sha256 = "1lsw4s7h4s1m2hm5bwhq2nx0acnaw1377ifdf0xphb1rzgbdacvb"; 168529 + libraryHaskellDepends = [ 168530 + base bytestring data-default-class metro pem tls x509 x509-store 168531 + x509-validation 168532 + ]; 168533 + description = "TLS transport for metro"; 168534 + license = stdenv.lib.licenses.bsd3; 168535 + }) {}; 168536 + 168537 + "metro-transport-websockets" = callPackage 168538 + ({ mkDerivation, base, bytestring, metro, websockets }: 168539 + mkDerivation { 168540 + pname = "metro-transport-websockets"; 168541 + version = "0.1.0.0"; 168542 + sha256 = "1jyy3sssz8ixwqdlf8zph05pfrm6qnf56sjsq8bx6yah9psy92dg"; 168543 + libraryHaskellDepends = [ base bytestring metro websockets ]; 168544 + description = "Websockets transport for metro"; 168545 + license = stdenv.lib.licenses.bsd3; 168546 + }) {}; 168547 + 168548 + "metro-transport-xor" = callPackage 168549 + ({ mkDerivation, base, bytestring, metro, unliftio }: 168550 + mkDerivation { 168551 + pname = "metro-transport-xor"; 168552 + version = "0.1.0.0"; 168553 + sha256 = "1hx839sxd2lrx6vsxswi4i88x1d1489jcdmh2vbnc2dvnssnqcpv"; 168554 + libraryHaskellDepends = [ base bytestring metro unliftio ]; 168555 + description = "XOR transport for metro"; 168556 + license = stdenv.lib.licenses.bsd3; 168557 + }) {}; 168558 + 168559 "metronome" = callPackage 168560 ({ mkDerivation, base, data-lens, data-lens-template, hosc, stm }: 168561 mkDerivation { ··· 170416 }: 170417 mkDerivation { 170418 pname = "mixed-types-num"; 170419 version = "0.4.0.2"; 170420 sha256 = "0kirxpnmwwnbxamwpzrxyx69n482xhifqpr5id73pfni7lrd126p"; 170421 libraryHaskellDepends = [ ··· 170425 testHaskellDepends = [ base hspec hspec-smallcheck QuickCheck ]; 170426 description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; 170427 license = stdenv.lib.licenses.bsd3; 170428 }) {}; 170429 170430 "mixpanel-client" = callPackage ··· 171768 broken = true; 171769 }) {}; 171770 171771 + "monad-introspect" = callPackage 171772 + ({ mkDerivation, base, coercion-extras, mmorph, mtl, transformers 171773 + }: 171774 + mkDerivation { 171775 + pname = "monad-introspect"; 171776 + version = "0.1.0.0"; 171777 + sha256 = "15c5ind2ddmj7xqps5fvlwl9awvsrpqcwaszlikf697aqjqra1nb"; 171778 + libraryHaskellDepends = [ 171779 + base coercion-extras mmorph mtl transformers 171780 + ]; 171781 + description = "A reader monad that gives the environment access to the entire transformer stack"; 171782 + license = stdenv.lib.licenses.bsd3; 171783 + }) {}; 171784 + 171785 "monad-io-adapter" = callPackage 171786 ({ mkDerivation, base, exceptions, hspec, monad-control 171787 , monad-logger, mtl, transformers, transformers-base ··· 171893 license = stdenv.lib.licenses.mit; 171894 }) {}; 171895 171896 + "monad-logger_0_3_35" = callPackage 171897 + ({ mkDerivation, base, bytestring, conduit, conduit-extra 171898 + , exceptions, fast-logger, lifted-base, monad-control, monad-loops 171899 + , mtl, resourcet, stm, stm-chans, template-haskell, text 171900 + , transformers, transformers-base, transformers-compat 171901 + , unliftio-core 171902 + }: 171903 + mkDerivation { 171904 + pname = "monad-logger"; 171905 + version = "0.3.35"; 171906 + sha256 = "1mrwwv3h3wy84kgphwn6ahjzxab0bzgzzbqla1c3jx02xl9x3q72"; 171907 + libraryHaskellDepends = [ 171908 + base bytestring conduit conduit-extra exceptions fast-logger 171909 + lifted-base monad-control monad-loops mtl resourcet stm stm-chans 171910 + template-haskell text transformers transformers-base 171911 + transformers-compat unliftio-core 171912 + ]; 171913 + description = "A class of monads which can log messages"; 171914 + license = stdenv.lib.licenses.mit; 171915 + hydraPlatforms = stdenv.lib.platforms.none; 171916 + }) {}; 171917 + 171918 "monad-logger-json" = callPackage 171919 ({ mkDerivation, aeson, base, monad-logger, template-haskell, text 171920 }: ··· 171956 pname = "monad-logger-syslog"; 171957 version = "0.1.6.0"; 171958 sha256 = "1n4r0fl043r18683ym3k03sdm3b9wlxfzjgmnxi804kwna639rj3"; 171959 + revision = "1"; 171960 + editedCabalFile = "0177m5h891s49yv924c5yqbfninc6x298vbpmx3fri6cychamgbl"; 171961 libraryHaskellDepends = [ 171962 base bytestring fast-logger hsyslog monad-logger text transformers 171963 ]; ··· 176838 license = stdenv.lib.licenses.bsd3; 176839 }) {}; 176840 176841 + "mwc-random_0_15_0_1" = callPackage 176842 ({ mkDerivation, base, bytestring, doctest, gauge, math-functions 176843 , mersenne-random, primitive, QuickCheck, random, tasty 176844 , tasty-hunit, tasty-quickcheck, time, vector 176845 }: 176846 mkDerivation { 176847 pname = "mwc-random"; 176848 + version = "0.15.0.1"; 176849 + sha256 = "1p8c5g4hb72k90ai39rgpn6cr942i6636l1y0zfp9xgjb3v0a2q3"; 176850 libraryHaskellDepends = [ 176851 base math-functions primitive random time vector 176852 ]; ··· 177376 }) {}; 177377 177378 "myxine-client" = callPackage 177379 + ({ mkDerivation, aeson, async, base, blaze-html, blaze-markup 177380 + , bytestring, constraints, containers, dependent-map, file-embed 177381 + , hashable, http-client, http-types, lens, modern-uri, mtl, req 177382 + , salve, some, spoon, template-haskell, text, transformers 177383 + , unordered-containers 177384 }: 177385 mkDerivation { 177386 pname = "myxine-client"; 177387 + version = "0.0.1.0"; 177388 + sha256 = "1vd1dxg39vwz9w58zxpp3mk66gk00534h6c846v2d77nqn0yajf0"; 177389 libraryHaskellDepends = [ 177390 + aeson async base blaze-html blaze-markup bytestring constraints 177391 + containers dependent-map file-embed hashable http-client http-types 177392 + lens modern-uri mtl req salve some spoon template-haskell text 177393 transformers unordered-containers 177394 ]; 177395 testHaskellDepends = [ bytestring text ]; ··· 181158 }: 181159 mkDerivation { 181160 pname = "ngx-export-tools-extra"; 181161 + version = "0.5.5.1"; 181162 + sha256 = "0x3c1r0ddbk740182gwv43s2zxr6aj9k6y4npv7vi0fwyxjcqgkj"; 181163 libraryHaskellDepends = [ 181164 aeson ansi-wl-pprint array base base64 binary bytestring 181165 case-insensitive containers ede enclosed-exceptions http-client ··· 181393 }: 181394 mkDerivation { 181395 pname = "niv"; 181396 + version = "0.2.16"; 181397 + sha256 = "0z2wws28nl7xd5fbc5za287y8ryvfrgha4qh7aahr3x1j9sywpyg"; 181398 isLibrary = true; 181399 isExecutable = true; 181400 enableSeparateDataOutput = true; ··· 182020 }: 182021 mkDerivation { 182022 pname = "nom"; 182023 + version = "0.1.0.2"; 182024 + sha256 = "18vgasg9szc88pa61gw6qpasx6l9jx0z9lm36xa96j4ml4vr3ddf"; 182025 setupHaskellDepends = [ base Cabal cabal-doctest ]; 182026 libraryHaskellDepends = [ 182027 algebra base containers data-default extra finite-typelits flow ··· 182303 }) {}; 182304 182305 "nonempty-containers" = callPackage 182306 ({ mkDerivation, aeson, base, comonad, containers, deepseq 182307 , hedgehog, hedgehog-fn, nonempty-vector, semigroupoids, tasty 182308 , tasty-hedgehog, text, these, vector ··· 182321 ]; 182322 description = "Non-empty variants of containers data types, with full API"; 182323 license = stdenv.lib.licenses.bsd3; 182324 }) {}; 182325 182326 "nonempty-lift" = callPackage ··· 184636 broken = true; 184637 }) {}; 184638 184639 + "om-http-logging" = callPackage 184640 + ({ mkDerivation, base, http-types, monad-logger, safe-exceptions 184641 + , uuid, wai 184642 + }: 184643 + mkDerivation { 184644 + pname = "om-http-logging"; 184645 + version = "0.1.0.0"; 184646 + sha256 = "16swgkk6w7sxnbfdz07vz3pkqjcpq27g1hswqvdxfq5gfq5kgp67"; 184647 + libraryHaskellDepends = [ 184648 + base http-types monad-logger safe-exceptions uuid wai 184649 + ]; 184650 + description = "om-http-logging"; 184651 + license = stdenv.lib.licenses.mit; 184652 + hydraPlatforms = stdenv.lib.platforms.none; 184653 + broken = true; 184654 + }) {}; 184655 + 184656 "omaketex" = callPackage 184657 ({ mkDerivation, base, optparse-applicative, shakespeare-text 184658 , shelly, text ··· 185036 }: 185037 mkDerivation { 185038 pname = "opaleye"; 185039 version = "0.6.7005.0"; 185040 sha256 = "0i5lwfvj7382ayxzdbip1nwjiiy7jn58g7qa33s44x3pnjv3wssy"; 185041 revision = "1"; ··· 185054 testToolDepends = [ hspec-discover ]; 185055 description = "An SQL-generating DSL targeting PostgreSQL"; 185056 license = stdenv.lib.licenses.bsd3; 185057 }) {}; 185058 185059 "opaleye-classy" = callPackage ··· 186643 }: 186644 mkDerivation { 186645 pname = "optima"; 186646 + version = "0.4.0.1"; 186647 + sha256 = "029bizcajhmvkgmr7yb95bbhi00bnvhnlx4crbx06wridhz2lp23"; 186648 libraryHaskellDepends = [ 186649 attoparsec attoparsec-data base optparse-applicative text 186650 text-builder ··· 186824 license = stdenv.lib.licenses.bsd3; 186825 }) {}; 186826 186827 + "optparse-applicative_0_16_0_0" = callPackage 186828 + ({ mkDerivation, ansi-wl-pprint, base, bytestring, process 186829 + , QuickCheck, transformers, transformers-compat 186830 + }: 186831 + mkDerivation { 186832 + pname = "optparse-applicative"; 186833 + version = "0.16.0.0"; 186834 + sha256 = "0aybamakg9zjac0b78lhfa1bvilkb76yryis6h0pf5j1khrkri89"; 186835 + libraryHaskellDepends = [ 186836 + ansi-wl-pprint base process transformers transformers-compat 186837 + ]; 186838 + testHaskellDepends = [ base bytestring QuickCheck ]; 186839 + description = "Utilities and combinators for parsing command line options"; 186840 + license = stdenv.lib.licenses.bsd3; 186841 + hydraPlatforms = stdenv.lib.platforms.none; 186842 + }) {}; 186843 + 186844 "optparse-applicative-simple" = callPackage 186845 ({ mkDerivation, attoparsec, attoparsec-data, base-prelude 186846 , optparse-applicative, rerebase, text ··· 187923 pname = "packdeps"; 187924 version = "0.6.0.0"; 187925 sha256 = "10hrsshzljs6yjzgpw6kpdc4fx4xrbafwicpapcmmj1y66rj00dz"; 187926 + revision = "1"; 187927 + editedCabalFile = "02akm54nkfw8jzc8b1b49pkbn4h73s5f968gyafmnq9jla0rcsjg"; 187928 isLibrary = true; 187929 isExecutable = true; 187930 libraryHaskellDepends = [ ··· 189029 pname = "pandoc-types"; 189030 version = "1.20"; 189031 sha256 = "0wz89ywyhvxz8daw4ia132kg6ynx5y4wva4g899wvq4kyjy1dixa"; 189032 + revision = "1"; 189033 + editedCabalFile = "16l4gy0v34nrb6z3pag6i3gl6m4af5j6wg6yzyiga124xpqzhql3"; 189034 libraryHaskellDepends = [ 189035 aeson base bytestring containers deepseq ghc-prim QuickCheck syb 189036 text transformers ··· 189341 }: 189342 mkDerivation { 189343 pname = "pantry"; 189344 + version = "0.4.0.2"; 189345 + sha256 = "13rrd64qn96r9w623lns4cngalc2c0p2z1xzc0wv35kr3psnxwb4"; 189346 libraryHaskellDepends = [ 189347 aeson ansi-terminal base bytestring Cabal casa-client casa-types 189348 conduit conduit-extra containers cryptonite cryptonite-conduit ··· 192991 broken = true; 192992 }) {}; 192993 192994 + "periodic-client" = callPackage 192995 + ({ mkDerivation, base, binary, byteable, bytestring, hslogger 192996 + , metro, metro-socket, mtl, periodic-common, resource-pool 192997 + , transformers, unliftio 192998 + }: 192999 + mkDerivation { 193000 + pname = "periodic-client"; 193001 + version = "1.1.7.1"; 193002 + sha256 = "0d9ngiq064fajiy2c4sddpgr93ia13iv83rdnvbk05x7agi0srjb"; 193003 + libraryHaskellDepends = [ 193004 + base binary byteable bytestring hslogger metro metro-socket mtl 193005 + periodic-common resource-pool transformers unliftio 193006 + ]; 193007 + description = "Periodic task system haskell client"; 193008 + license = stdenv.lib.licenses.bsd3; 193009 + }) {}; 193010 + 193011 + "periodic-client-exe" = callPackage 193012 + ({ mkDerivation, base, binary, boxes, bytestring 193013 + , data-default-class, deepseq, http-types, metro, metro-socket 193014 + , metro-transport-tls, metro-transport-websockets 193015 + , metro-transport-xor, periodic-client, periodic-common, process 193016 + , scotty, streaming-commons, text, unix-time, unliftio, warp 193017 + , websockets 193018 + }: 193019 + mkDerivation { 193020 + pname = "periodic-client-exe"; 193021 + version = "1.1.7.1"; 193022 + sha256 = "0mgcvkc4sw7f1idjnhcj6qinnm3w47as6zjx2s8cxyfxn0ma73ll"; 193023 + isLibrary = false; 193024 + isExecutable = true; 193025 + executableHaskellDepends = [ 193026 + base binary boxes bytestring data-default-class deepseq http-types 193027 + metro metro-socket metro-transport-tls metro-transport-websockets 193028 + metro-transport-xor periodic-client periodic-common process scotty 193029 + streaming-commons text unix-time unliftio warp websockets 193030 + ]; 193031 + description = "Periodic task system haskell client executables"; 193032 + license = stdenv.lib.licenses.bsd3; 193033 + }) {}; 193034 + 193035 + "periodic-common" = callPackage 193036 + ({ mkDerivation, base, binary, byteable, bytestring, entropy 193037 + , hashable, hslogger, metro, text, unliftio, vector 193038 + }: 193039 + mkDerivation { 193040 + pname = "periodic-common"; 193041 + version = "1.1.7.0"; 193042 + sha256 = "17rbzps7s4vwpf6390lz158hj1m5w6b791v8srg4mz9wd493iwbg"; 193043 + libraryHaskellDepends = [ 193044 + base binary byteable bytestring entropy hashable hslogger metro 193045 + text unliftio vector 193046 + ]; 193047 + description = "Periodic task system common"; 193048 + license = stdenv.lib.licenses.bsd3; 193049 + }) {}; 193050 + 193051 "periodic-polynomials" = callPackage 193052 ({ mkDerivation, base, vector }: 193053 mkDerivation { ··· 193059 license = stdenv.lib.licenses.mit; 193060 }) {}; 193061 193062 + "periodic-server" = callPackage 193063 + ({ mkDerivation, async, base, base64-bytestring, binary, byteable 193064 + , bytestring, direct-sqlite, entropy, filepath, hslogger, metro 193065 + , metro-socket, metro-transport-tls, metro-transport-websockets 193066 + , metro-transport-xor, mtl, network, periodic-common 193067 + , postgresql-simple, psqueues, resource-pool, stm, transformers 193068 + , unliftio, unordered-containers 193069 + }: 193070 + mkDerivation { 193071 + pname = "periodic-server"; 193072 + version = "1.1.7.1"; 193073 + sha256 = "1gvx5n86xm14yp07ag57mw5pfig0ldpnwmg1y4vrj003k046n29p"; 193074 + isLibrary = true; 193075 + isExecutable = true; 193076 + libraryHaskellDepends = [ 193077 + async base base64-bytestring binary byteable bytestring 193078 + direct-sqlite entropy filepath hslogger metro mtl network 193079 + periodic-common postgresql-simple psqueues resource-pool stm 193080 + transformers unliftio unordered-containers 193081 + ]; 193082 + executableHaskellDepends = [ 193083 + base bytestring hslogger metro metro-socket metro-transport-tls 193084 + metro-transport-websockets metro-transport-xor periodic-common 193085 + unliftio 193086 + ]; 193087 + description = "Periodic task system haskell server"; 193088 + license = stdenv.lib.licenses.bsd3; 193089 + }) {}; 193090 + 193091 "perm" = callPackage 193092 ({ mkDerivation, base, catch-fd, HUnit, mtl, test-framework 193093 , test-framework-hunit, transformers ··· 194350 librarySystemDepends = [ gu pgf ]; 194351 description = "Bindings to the C version of the PGF runtime"; 194352 license = stdenv.lib.licenses.lgpl3; 194353 + hydraPlatforms = stdenv.lib.platforms.none; 194354 + broken = true; 194355 }) {gu = null; inherit (pkgs) pgf;}; 194356 194357 "pgm" = callPackage ··· 195371 195372 "pipes" = callPackage 195373 ({ mkDerivation, base, criterion, exceptions, mmorph, mtl 195374 , optparse-applicative, QuickCheck, test-framework 195375 , test-framework-quickcheck2, transformers, void 195376 }: ··· 195390 ]; 195391 description = "Compositional pipelines"; 195392 license = stdenv.lib.licenses.bsd3; 195393 }) {}; 195394 195395 "pipes-aeson" = callPackage ··· 197085 ]; 197086 description = "run a subprocess, combining stdout and stderr"; 197087 license = stdenv.lib.licenses.mit; 197088 + hydraPlatforms = stdenv.lib.platforms.none; 197089 + broken = true; 197090 }) {}; 197091 197092 "plist" = callPackage ··· 198269 }: 198270 mkDerivation { 198271 pname = "polysemy-webserver"; 198272 + version = "0.2.1.0"; 198273 + sha256 = "1kzswc20c2a720r46krphwckp6bcgkinw59immjpwvixxdfd0bma"; 198274 libraryHaskellDepends = [ 198275 base bytestring http-types polysemy polysemy-plugin wai 198276 wai-websockets warp websockets ··· 199304 }) {}; 199305 199306 "postgres-websockets" = callPackage 199307 + ({ mkDerivation, aeson, alarmclock, async, auto-update, base 199308 , base64-bytestring, bytestring, contravariant, either, envparse 199309 , hasql, hasql-notifications, hasql-pool, hspec, hspec-wai 199310 + , hspec-wai-json, http-types, jose, lens, lens-aeson, network 199311 + , postgresql-libpq, protolude, retry, stm, stm-containers 199312 + , stringsearch, text, time, unordered-containers, wai 199313 + , wai-app-static, wai-extra, wai-websockets, warp, websockets 199314 }: 199315 mkDerivation { 199316 pname = "postgres-websockets"; 199317 + version = "0.8.0.1"; 199318 + sha256 = "0a56dpj90nmrinjgxaipgbsfl5ligx3iydcnijxpwy6vwbjijnmi"; 199319 isLibrary = true; 199320 isExecutable = true; 199321 libraryHaskellDepends = [ 199322 + aeson alarmclock async auto-update base base64-bytestring 199323 + bytestring contravariant either envparse hasql hasql-notifications 199324 + hasql-pool http-types jose lens postgresql-libpq protolude retry 199325 + stm stm-containers stringsearch text time unordered-containers wai 199326 + wai-app-static wai-extra wai-websockets warp websockets 199327 ]; 199328 + , text, time, unordered-containers, uuid, vector 199329 testHaskellDepends = [ 199330 aeson base hasql hasql-notifications hasql-pool hspec hspec-wai 199331 + hspec-wai-json http-types lens lens-aeson network protolude stm 199332 + time unordered-containers wai-extra websockets 199333 ]; 199334 description = "Middleware to map LISTEN/NOTIFY messages to Websockets"; 199335 license = stdenv.lib.licenses.bsd3; ··· 200849 }) {}; 200850 200851 "predicate-typed" = callPackage 200852 + ({ mkDerivation, aeson, aeson-pretty, base, binary, bytestring 200853 + , comonad, containers, deepseq, directory, doctest, hashable, lens 200854 + , mtl, pcre-heavy, pcre-light, pretty, pretty-terminal, QuickCheck 200855 + , safe, stm, string-conversions, tasty, tasty-hunit 200856 + , tasty-quickcheck, template-haskell, text, th-lift, these, time 200857 + , tree-view 200858 }: 200859 mkDerivation { 200860 pname = "predicate-typed"; 200861 + version = "0.7.3.0"; 200862 + sha256 = "124f9bdvq30xaadg6020q0pmfv56mpkw25ws306xp8mfs61g1src"; 200863 libraryHaskellDepends = [ 200864 + aeson aeson-pretty base binary bytestring comonad containers 200865 + deepseq directory hashable lens mtl pcre-heavy pcre-light pretty 200866 + pretty-terminal QuickCheck safe string-conversions template-haskell 200867 + text th-lift these time tree-view 200868 ]; 200869 testHaskellDepends = [ 200870 + aeson aeson-pretty base binary bytestring comonad containers 200871 + deepseq directory doctest hashable lens mtl pcre-heavy pcre-light 200872 + pretty pretty-terminal QuickCheck safe stm string-conversions tasty 200873 + tasty-hunit tasty-quickcheck template-haskell text th-lift these 200874 + time tree-view 200875 ]; 200876 description = "Predicates, Refinement types and Dsl"; 200877 license = stdenv.lib.licenses.bsd3; ··· 204137 license = stdenv.lib.licenses.asl20; 204138 }) {}; 204139 204140 + "proto3-wire_1_2_0" = callPackage 204141 + ({ mkDerivation, base, bytestring, cereal, containers, deepseq 204142 + , doctest, ghc-prim, hashable, parameterized, primitive, QuickCheck 204143 + , safe, tasty, tasty-hunit, tasty-quickcheck, text, transformers 204144 + , unordered-containers, vector 204145 + }: 204146 + mkDerivation { 204147 + pname = "proto3-wire"; 204148 + version = "1.2.0"; 204149 + sha256 = "1xrnrh4njnw6af8xxg9xhcxrscg0g644jx4l9an4iqz6xmjp2nk2"; 204150 + libraryHaskellDepends = [ 204151 + base bytestring cereal containers deepseq ghc-prim hashable 204152 + parameterized primitive QuickCheck safe text transformers 204153 + unordered-containers vector 204154 + ]; 204155 + testHaskellDepends = [ 204156 + base bytestring cereal doctest QuickCheck tasty tasty-hunit 204157 + tasty-quickcheck text transformers vector 204158 + ]; 204159 + description = "A low-level implementation of the Protocol Buffers (version 3) wire format"; 204160 + license = stdenv.lib.licenses.asl20; 204161 + hydraPlatforms = stdenv.lib.platforms.none; 204162 + }) {}; 204163 + 204164 "protobuf" = callPackage 204165 ({ mkDerivation, base, base-orphans, bytestring, cereal, containers 204166 , data-binary-ieee754, deepseq, hex, HUnit, mtl, QuickCheck, tagged ··· 206090 broken = true; 206091 }) {}; 206092 206093 + "qlinear" = callPackage 206094 + ({ mkDerivation, base, haskell-src-exts, haskell-src-meta, hspec 206095 + , linear, parsec, split, template-haskell 206096 + }: 206097 + mkDerivation { 206098 + pname = "qlinear"; 206099 + version = "0.1.2.0"; 206100 + sha256 = "1q1xd3sh5b5kjp9wb24v2z9dbjk75dwk286f0gda4y460h4zkp8z"; 206101 + libraryHaskellDepends = [ 206102 + base haskell-src-exts haskell-src-meta linear parsec split 206103 + template-haskell 206104 + ]; 206105 + testHaskellDepends = [ 206106 + base haskell-src-exts haskell-src-meta hspec linear parsec split 206107 + template-haskell 206108 + ]; 206109 + description = "Typesafe library for linear algebra"; 206110 + license = stdenv.lib.licenses.bsd3; 206111 + }) {}; 206112 + 206113 "qm-interpolated-string" = callPackage 206114 ({ mkDerivation, base, bytestring, haskell-src-meta, hspec 206115 , template-haskell, text ··· 206257 license = stdenv.lib.licenses.mit; 206258 }) {}; 206259 206260 + "qrcode-juicypixels_0_8_2" = callPackage 206261 + ({ mkDerivation, base, base64-bytestring, bytestring, JuicyPixels 206262 + , qrcode-core, text, vector 206263 + }: 206264 + mkDerivation { 206265 + pname = "qrcode-juicypixels"; 206266 + version = "0.8.2"; 206267 + sha256 = "0kiyi084hmd2l50fd8miwgw0y94sd1lkf34jw7z3sb33bbp70f3g"; 206268 + libraryHaskellDepends = [ 206269 + base base64-bytestring bytestring JuicyPixels qrcode-core text 206270 + vector 206271 + ]; 206272 + description = "Converts a qrcode-core image to JuicyPixels"; 206273 + license = stdenv.lib.licenses.mit; 206274 + hydraPlatforms = stdenv.lib.platforms.none; 206275 + }) {}; 206276 + 206277 "qsem" = callPackage 206278 ({ mkDerivation, base, ghc-prim }: 206279 mkDerivation { ··· 210889 license = stdenv.lib.licenses.bsd3; 210890 }) {}; 210891 210892 + "record-dot-preprocessor_0_2_6" = callPackage 210893 + ({ mkDerivation, base, extra, filepath, ghc, record-hasfield 210894 + , uniplate 210895 + }: 210896 + mkDerivation { 210897 + pname = "record-dot-preprocessor"; 210898 + version = "0.2.6"; 210899 + sha256 = "0xnlzs74nxcw6yms5zbd50wnzy3n0i91rf0ss9ywc9bw18d2lbmh"; 210900 + isLibrary = true; 210901 + isExecutable = true; 210902 + libraryHaskellDepends = [ base extra ghc uniplate ]; 210903 + executableHaskellDepends = [ base extra ]; 210904 + testHaskellDepends = [ base extra filepath record-hasfield ]; 210905 + description = "Preprocessor to allow record.field syntax"; 210906 + license = stdenv.lib.licenses.bsd3; 210907 + hydraPlatforms = stdenv.lib.platforms.none; 210908 + }) {}; 210909 + 210910 "record-encode" = callPackage 210911 ({ mkDerivation, base, doctest, generics-sop, hspec, QuickCheck 210912 , vector ··· 214806 license = stdenv.lib.licenses.bsd3; 214807 }) {}; 214808 214809 + "req_3_5_0" = callPackage 214810 ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder 214811 , bytestring, case-insensitive, connection, exceptions, hspec 214812 , hspec-core, hspec-discover, http-api-data, http-client 214813 , http-client-tls, http-types, modern-uri, monad-control, mtl 214814 , QuickCheck, retry, template-haskell, text, time, transformers 214815 + , transformers-base, unliftio-core, unordered-containers 214816 }: 214817 mkDerivation { 214818 pname = "req"; 214819 + version = "3.5.0"; 214820 + sha256 = "0ydz6m3d87apmkd8i55q4r57cqd65sssxz972p6vv77v3r471n26"; 214821 enableSeparateDataOutput = true; 214822 libraryHaskellDepends = [ 214823 aeson authenticate-oauth base blaze-builder bytestring 214824 case-insensitive connection exceptions http-api-data http-client 214825 http-client-tls http-types modern-uri monad-control mtl retry 214826 template-haskell text time transformers transformers-base 214827 + unliftio-core 214828 ]; 214829 testHaskellDepends = [ 214830 aeson base blaze-builder bytestring case-insensitive hspec ··· 215063 }: 215064 mkDerivation { 215065 pname = "rescue"; 215066 + version = "0.2.1"; 215067 + sha256 = "1rb7apdlpm69695hcpimmyjn5ar8lld8q1hgag86jsww5dfn2mp7"; 215068 libraryHaskellDepends = [ 215069 base exceptions ghc mtl text transformers world-peace 215070 ]; ··· 216748 }: 216749 mkDerivation { 216750 pname = "rio"; 216751 version = "0.1.18.0"; 216752 sha256 = "11f1cxa9c90d7hgqn9bl08l499n2dzdj31f9pw9acb1nrlx5hik8"; 216753 libraryHaskellDepends = [ ··· 216764 ]; 216765 description = "A standard library for Haskell"; 216766 license = stdenv.lib.licenses.mit; 216767 }) {}; 216768 216769 "rio-orphans" = callPackage ··· 216792 }: 216793 mkDerivation { 216794 pname = "rio-prettyprint"; 216795 version = "0.1.1.0"; 216796 sha256 = "1h092l46pfm6k3n0vb6c67gb64kahzc97qv45rhvp0cq2y5bqykf"; 216797 libraryHaskellDepends = [ ··· 216800 ]; 216801 description = "Pretty-printing for RIO"; 216802 license = stdenv.lib.licenses.bsd3; 216803 }) {}; 216804 216805 "riot" = callPackage ··· 219646 }) {}; 219647 219648 "sak" = callPackage 219649 + ({ mkDerivation, base, bytestring, bz2, cpphs, directory, filepath 219650 + , lz4-hs, lzlib, lzma, lzo, optparse-applicative, parallel-io 219651 + , unix-compat, zlib, zstd 219652 }: 219653 mkDerivation { 219654 pname = "sak"; 219655 + version = "0.1.3.0"; 219656 + sha256 = "1khws0z9v91vz722k6y0b99ffy2vd04myvpww4p1i32396dhczln"; 219657 isLibrary = false; 219658 isExecutable = true; 219659 enableSeparateDataOutput = true; 219660 executableHaskellDepends = [ 219661 + base bytestring bz2 directory filepath lz4-hs lzlib lzma lzo 219662 + optparse-applicative parallel-io unix-compat zlib zstd 219663 ]; 219664 executableToolDepends = [ cpphs ]; 219665 description = "Compression command-line tool"; ··· 220952 ]; 220953 description = "Work stealing scheduler"; 220954 license = stdenv.lib.licenses.bsd3; 220955 + hydraPlatforms = stdenv.lib.platforms.none; 220956 + broken = true; 220957 }) {}; 220958 220959 "schedyield" = callPackage ··· 222734 broken = true; 222735 }) {sedna = null;}; 222736 222737 + "seitz-symbol" = callPackage 222738 + ({ mkDerivation, base, doctest, hspec, matrix, matrix-as-xyz 222739 + , parsec, symmetry-operations-symbols 222740 + }: 222741 + mkDerivation { 222742 + pname = "seitz-symbol"; 222743 + version = "0.1.0.0"; 222744 + sha256 = "1x6374xaqgrf9ygjb9rffhpn1y5fla2gf0b0xj93r3bj6pf1w0qh"; 222745 + libraryHaskellDepends = [ 222746 + base matrix matrix-as-xyz parsec symmetry-operations-symbols 222747 + ]; 222748 + testHaskellDepends = [ 222749 + base doctest hspec matrix matrix-as-xyz parsec 222750 + symmetry-operations-symbols 222751 + ]; 222752 + description = "Read and Display Seitz Symbol"; 222753 + license = stdenv.lib.licenses.mit; 222754 + hydraPlatforms = stdenv.lib.platforms.none; 222755 + broken = true; 222756 + }) {}; 222757 + 222758 "selda" = callPackage 222759 ({ mkDerivation, base, bytestring, containers, exceptions, mtl 222760 , random, text, time, uuid-types ··· 225417 ({ mkDerivation, aeson, base, servant }: 225418 mkDerivation { 225419 pname = "servant-jsonrpc"; 225420 + version = "1.1.0"; 225421 + sha256 = "0qy2al8waycarh5973c43bdd9g4a9032waknjsbykhflwglvwmv5"; 225422 libraryHaskellDepends = [ aeson base servant ]; 225423 description = "JSON-RPC messages and endpoints"; 225424 license = stdenv.lib.licenses.bsd3; ··· 225432 }: 225433 mkDerivation { 225434 pname = "servant-jsonrpc-client"; 225435 + version = "1.1.0"; 225436 + sha256 = "0d18qajwpq6np0a61i5qm1z7iwvqrmgixg627diwr1xh4ws1ij8d"; 225437 libraryHaskellDepends = [ 225438 aeson base servant servant-client-core servant-jsonrpc 225439 ]; ··· 225449 }: 225450 mkDerivation { 225451 pname = "servant-jsonrpc-server"; 225452 + version = "2.1.0"; 225453 + sha256 = "09byg58qm4r9kbcxzr6jbyg5ziih58p0za8ihq4y8w60mznpb055"; 225454 libraryHaskellDepends = [ 225455 aeson base containers mtl servant servant-jsonrpc servant-server 225456 ]; ··· 226966 pname = "serversession"; 226967 version = "1.0.1"; 226968 sha256 = "08j8v6a2018bmvwsb7crdg0ajak74jggb073pdpx9s0pf3cfzyrz"; 226969 + revision = "2"; 226970 + editedCabalFile = "0i5faxzxgvpfylmrr175f8l4asyh4phncc90jkfag53gnspcv028"; 226971 libraryHaskellDepends = [ 226972 aeson base base64-bytestring bytestring data-default hashable nonce 226973 path-pieces text time transformers unordered-containers ··· 227566 ]; 227567 description = "Invertible grammar combinators for S-expressions"; 227568 license = stdenv.lib.licenses.bsd3; 227569 + }) {}; 227570 + 227571 + "sexp-grammar_2_2_1" = callPackage 227572 + ({ mkDerivation, alex, array, base, bytestring, containers 227573 + , criterion, deepseq, happy, invertible-grammar, prettyprinter 227574 + , QuickCheck, recursion-schemes, scientific, semigroups, tasty 227575 + , tasty-hunit, tasty-quickcheck, text, utf8-string 227576 + }: 227577 + mkDerivation { 227578 + pname = "sexp-grammar"; 227579 + version = "2.2.1"; 227580 + sha256 = "0nf3b3cibqi2jv9jg742jknqpfgwvc7iwjw7a2jgpf55nrgs6lvz"; 227581 + libraryHaskellDepends = [ 227582 + array base bytestring containers deepseq invertible-grammar 227583 + prettyprinter recursion-schemes scientific semigroups text 227584 + utf8-string 227585 + ]; 227586 + libraryToolDepends = [ alex happy ]; 227587 + testHaskellDepends = [ 227588 + base containers invertible-grammar prettyprinter QuickCheck 227589 + scientific semigroups tasty tasty-hunit tasty-quickcheck text 227590 + utf8-string 227591 + ]; 227592 + benchmarkHaskellDepends = [ 227593 + base bytestring criterion deepseq text 227594 + ]; 227595 + description = "Invertible grammar combinators for S-expressions"; 227596 + license = stdenv.lib.licenses.bsd3; 227597 hydraPlatforms = stdenv.lib.platforms.none; 227598 }) {}; 227599 227600 "sexp-show" = callPackage ··· 228278 license = stdenv.lib.licenses.mit; 228279 }) {}; 228280 228281 + "shake-plus_0_3_2_0" = callPackage 228282 ({ mkDerivation, base, extra, path, rio, shake }: 228283 mkDerivation { 228284 pname = "shake-plus"; 228285 + version = "0.3.2.0"; 228286 + sha256 = "0cgn1hgxp3kly7yp4s8mx714p1gnf30jpp6vjl47l19vc21hfzj5"; 228287 libraryHaskellDepends = [ base extra path rio shake ]; 228288 description = "Re-export of Shake using well-typed paths and ReaderT"; 228289 license = stdenv.lib.licenses.mit; ··· 229044 pname = "shh"; 229045 version = "0.7.0.8"; 229046 sha256 = "1f8r8wymdbv8j2m3apdw75xqq2c1s4wr694qhxljvwa9r0s326wf"; 229047 + revision = "1"; 229048 + editedCabalFile = "03gvwv2hxrp8ncfmwhp7hn8xah5mx9fgm298s83l78grqjlzdbil"; 229049 isLibrary = true; 229050 isExecutable = true; 229051 libraryHaskellDepends = [ ··· 237308 }: 237309 mkDerivation { 237310 pname = "squeeze"; 237311 + version = "1.0.4.19"; 237312 + sha256 = "0zb4nbgwlifzaw28g09qhvvjk8a795zww0b746bj98wgzyxp6a50"; 237313 isLibrary = true; 237314 isExecutable = true; 237315 libraryHaskellDepends = [ ··· 241536 license = stdenv.lib.licenses.bsd3; 241537 }) {}; 241538 241539 + "strict-base-types_0_7" = callPackage 241540 + ({ mkDerivation, aeson, base, quickcheck-instances, strict 241541 + , strict-lens 241542 + }: 241543 + mkDerivation { 241544 + pname = "strict-base-types"; 241545 + version = "0.7"; 241546 + sha256 = "079pa6w3f5i5kv1v6mwhp2k0siyywnk3igm93y2kaz37f352x5jn"; 241547 + libraryHaskellDepends = [ 241548 + aeson base quickcheck-instances strict strict-lens 241549 + ]; 241550 + description = "Strict variants of the types provided in base"; 241551 + license = stdenv.lib.licenses.bsd3; 241552 + hydraPlatforms = stdenv.lib.platforms.none; 241553 + }) {}; 241554 + 241555 "strict-concurrency" = callPackage 241556 ({ mkDerivation, base, deepseq }: 241557 mkDerivation { ··· 241633 libraryHaskellDepends = [ base lens strict ]; 241634 description = "Lenses for types in strict package"; 241635 license = stdenv.lib.licenses.bsd3; 241636 + hydraPlatforms = stdenv.lib.platforms.none; 241637 + broken = true; 241638 }) {}; 241639 241640 "strict-list" = callPackage ··· 241663 libraryHaskellDepends = [ base optics-core strict ]; 241664 description = "Optics for types in strict package"; 241665 license = stdenv.lib.licenses.bsd3; 241666 + hydraPlatforms = stdenv.lib.platforms.none; 241667 + broken = true; 241668 }) {}; 241669 241670 "strict-tuple" = callPackage ··· 242737 }: 242738 mkDerivation { 242739 pname = "stylish-haskell"; 242740 version = "0.11.0.3"; 242741 sha256 = "10svl5q95n9i76rqvlxibi784qzvdyg8qfl1xwk7c32y84nyfibn"; 242742 isLibrary = true; ··· 242758 ]; 242759 description = "Haskell code prettifier"; 242760 license = stdenv.lib.licenses.bsd3; 242761 }) {}; 242762 242763 "stylist" = callPackage ··· 243145 license = stdenv.lib.licenses.mit; 243146 }) {}; 243147 243148 + "summer" = callPackage 243149 + ({ mkDerivation, base, vector }: 243150 + mkDerivation { 243151 + pname = "summer"; 243152 + version = "0.1.2.0"; 243153 + sha256 = "1xcfw3f4y53a9jdj2a7jy32pp5pcvqsv78gblkjj1bxvsijwa4ab"; 243154 + libraryHaskellDepends = [ base vector ]; 243155 + testHaskellDepends = [ base ]; 243156 + description = "An implementation of extensible products and sums"; 243157 + license = stdenv.lib.licenses.mit; 243158 + }) {}; 243159 + 243160 "summoner" = callPackage 243161 ({ mkDerivation, aeson, base, colourista, containers, directory 243162 , filepath, generic-data, gitrev, hedgehog, hspec, hspec-hedgehog ··· 244177 license = stdenv.lib.licenses.lgpl21; 244178 }) {}; 244179 244180 + "swiss-ephemeris" = callPackage 244181 + ({ mkDerivation, base, directory, hspec, hspec-discover }: 244182 + mkDerivation { 244183 + pname = "swiss-ephemeris"; 244184 + version = "0.1.0.2"; 244185 + sha256 = "0kjph3dy7ii767zpjdqi2ya08vgahhwkbf1fp48n26vfilcwppc9"; 244186 + libraryHaskellDepends = [ base ]; 244187 + testHaskellDepends = [ base directory hspec ]; 244188 + testToolDepends = [ hspec-discover ]; 244189 + description = "Haskell bindings for the Swiss Ephemeris C library"; 244190 + license = stdenv.lib.licenses.gpl2; 244191 + hydraPlatforms = stdenv.lib.platforms.none; 244192 + broken = true; 244193 + }) {}; 244194 + 244195 "sws" = callPackage 244196 ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring 244197 , containers, cryptonite, directory, filepath, hourglass ··· 244732 }: 244733 mkDerivation { 244734 pname = "symmetry-operations-symbols"; 244735 + version = "0.0.2.1"; 244736 + sha256 = "0y9m1z72kh8lhmig0lpp67p3s74s706y6lbzlr5hk47mpcw7fymh"; 244737 libraryHaskellDepends = [ base matrix matrix-as-xyz parsec ]; 244738 testHaskellDepends = [ 244739 base doctest hspec matrix matrix-as-xyz parsec QuickCheck ··· 246008 executablePkgconfigDepends = [ gtk3 ]; 246009 description = "A desktop bar similar to xmobar, but with more GUI"; 246010 license = stdenv.lib.licenses.bsd3; 246011 + hydraPlatforms = stdenv.lib.platforms.none; 246012 + broken = true; 246013 }) {inherit (pkgs) gtk3;}; 246014 246015 "tag-bits" = callPackage ··· 246971 }: 246972 mkDerivation { 246973 pname = "taskell"; 246974 + version = "1.10.0"; 246975 + sha256 = "14syiis60fds1r295d6nlvw0mn1d1d6ly0j69r9srbcbrbb2j7yw"; 246976 isLibrary = true; 246977 isExecutable = true; 246978 libraryHaskellDepends = [ ··· 250032 testToolDepends = [ hspec-discover tasty-discover ]; 250033 description = "Docker containers for your integration tests"; 250034 license = stdenv.lib.licenses.mit; 250035 + hydraPlatforms = stdenv.lib.platforms.none; 250036 + broken = true; 250037 }) {}; 250038 250039 "testing-feat" = callPackage ··· 252230 license = stdenv.lib.licenses.mit; 252231 }) {}; 252232 252233 + "thread-supervisor_0_2_0_0" = callPackage 252234 + ({ mkDerivation, base, clock, containers, data-default, hspec 252235 + , hspec-discover, QuickCheck, unliftio 252236 + }: 252237 + mkDerivation { 252238 + pname = "thread-supervisor"; 252239 + version = "0.2.0.0"; 252240 + sha256 = "1k42k6c2h0xs7h4gcfsjghr5jp1q2w7ay1drlfw2ghl8zmfh2pnv"; 252241 + libraryHaskellDepends = [ 252242 + base clock containers data-default unliftio 252243 + ]; 252244 + testHaskellDepends = [ 252245 + base clock data-default hspec QuickCheck unliftio 252246 + ]; 252247 + testToolDepends = [ hspec-discover ]; 252248 + description = "A simplified implementation of Erlang/OTP like supervisor over thread"; 252249 + license = stdenv.lib.licenses.mit; 252250 + hydraPlatforms = stdenv.lib.platforms.none; 252251 + }) {}; 252252 + 252253 "threadPool" = callPackage 252254 ({ mkDerivation, base, process }: 252255 mkDerivation { ··· 253699 }: 253700 mkDerivation { 253701 pname = "timers"; 253702 + version = "0.2.0.4"; 253703 + sha256 = "031jladbn54gr5jcljpw5r1hr82403gd6g9vszcv2pj8z82p21ab"; 253704 libraryHaskellDepends = [ 253705 base lifted-base monad-control suspend transformers-base 253706 ]; ··· 254275 broken = true; 254276 }) {}; 254277 254278 + "tldr_0_8_0" = callPackage 254279 ({ mkDerivation, ansi-terminal, base, bytestring, cmark, containers 254280 , directory, filepath, optparse-applicative, semigroups, tasty 254281 , tasty-golden, text, typed-process 254282 }: 254283 mkDerivation { 254284 pname = "tldr"; 254285 + version = "0.8.0"; 254286 + sha256 = "02by0mj2mk2k8xwcn92zd0cns8fj6fibi0wx5h2zlnm5aj53nffv"; 254287 isLibrary = true; 254288 isExecutable = true; 254289 libraryHaskellDepends = [ 254290 + ansi-terminal base bytestring cmark containers directory filepath 254291 + optparse-applicative semigroups text typed-process 254292 ]; 254293 + executableHaskellDepends = [ base ]; 254294 testHaskellDepends = [ base tasty tasty-golden ]; 254295 description = "Haskell tldr client"; 254296 license = stdenv.lib.licenses.bsd3; ··· 257308 pname = "trifecta"; 257309 version = "2.1"; 257310 sha256 = "0fr326lzf38m20h2g4189nsyml9w3128924zbd3cd93cgfqcc9bs"; 257311 + revision = "2"; 257312 + editedCabalFile = "17b0wxwgf52xdm597x0ybq1g2yrvfihl32jpd989xsm6n7s7y21a"; 257313 setupHaskellDepends = [ base Cabal cabal-doctest ]; 257314 libraryHaskellDepends = [ 257315 ansi-terminal array base blaze-builder blaze-html blaze-markup ··· 258278 benchmarkHaskellDepends = [ base criterion text ]; 258279 description = "Shell programming, Haskell-style"; 258280 license = stdenv.lib.licenses.bsd3; 258281 + }) {}; 258282 + 258283 + "turtle_1_5_20" = callPackage 258284 + ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock 258285 + , containers, criterion, directory, doctest, exceptions, foldl 258286 + , hostname, managed, optional-args, optparse-applicative, process 258287 + , stm, streaming-commons, system-fileio, system-filepath, temporary 258288 + , text, time, transformers, unix, unix-compat 258289 + }: 258290 + mkDerivation { 258291 + pname = "turtle"; 258292 + version = "1.5.20"; 258293 + sha256 = "1dk8ddp1p77l7gbg81ryqrkaxhrj3an24mx572b5wmhmjmbjfk9l"; 258294 + libraryHaskellDepends = [ 258295 + ansi-wl-pprint async base bytestring clock containers directory 258296 + exceptions foldl hostname managed optional-args 258297 + optparse-applicative process stm streaming-commons system-fileio 258298 + system-filepath temporary text time transformers unix unix-compat 258299 + ]; 258300 + testHaskellDepends = [ base doctest system-filepath temporary ]; 258301 + benchmarkHaskellDepends = [ base criterion text ]; 258302 + description = "Shell programming, Haskell-style"; 258303 + license = stdenv.lib.licenses.bsd3; 258304 + hydraPlatforms = stdenv.lib.platforms.none; 258305 }) {}; 258306 258307 "turtle-options" = callPackage ··· 267380 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 267381 mkDerivation { 267382 pname = "vulkan"; 267383 + version = "3.6.4"; 267384 + sha256 = "15zy3q8nk2myp6p6nqpi5sabdi4r0d5jb20g8df1x7r3rqr2lfh2"; 267385 libraryHaskellDepends = [ base bytestring transformers vector ]; 267386 librarySystemDepends = [ vulkan ]; 267387 description = "Bindings to the Vulkan graphics API"; ··· 267609 license = stdenv.lib.licenses.mit; 267610 }) {}; 267611 267612 + "wai-app-static_3_1_7_2" = callPackage 267613 + ({ mkDerivation, base, blaze-html, blaze-markup, bytestring 267614 + , containers, cryptonite, directory, file-embed, filepath, hspec 267615 + , http-date, http-types, memory, mime-types, mockery, network 267616 + , old-locale, optparse-applicative, template-haskell, temporary 267617 + , text, time, transformers, unix-compat, unordered-containers, wai 267618 + , wai-extra, warp, zlib 267619 + }: 267620 + mkDerivation { 267621 + pname = "wai-app-static"; 267622 + version = "3.1.7.2"; 267623 + sha256 = "138gd5482psq0wbm8s1az672lksi7vbavq6ayiyjkliivf6xpry8"; 267624 + isLibrary = true; 267625 + isExecutable = true; 267626 + libraryHaskellDepends = [ 267627 + base blaze-html blaze-markup bytestring containers cryptonite 267628 + directory file-embed filepath http-date http-types memory 267629 + mime-types old-locale optparse-applicative template-haskell text 267630 + time transformers unix-compat unordered-containers wai wai-extra 267631 + warp zlib 267632 + ]; 267633 + executableHaskellDepends = [ 267634 + base bytestring containers directory mime-types text 267635 + ]; 267636 + testHaskellDepends = [ 267637 + base bytestring filepath hspec http-date http-types mime-types 267638 + mockery network old-locale temporary text time transformers 267639 + unix-compat wai wai-extra zlib 267640 + ]; 267641 + description = "WAI application for static serving"; 267642 + license = stdenv.lib.licenses.mit; 267643 + hydraPlatforms = stdenv.lib.platforms.none; 267644 + }) {}; 267645 + 267646 "wai-cli" = callPackage 267647 ({ mkDerivation, ansi-terminal, base, http-types, iproute 267648 , monads-tf, network, options, socket-activation, stm ··· 271093 }: 271094 mkDerivation { 271095 pname = "weekdaze"; 271096 + version = "0.0.0.3"; 271097 + sha256 = "1khnizhk45qbjrxq24bfs183wbmrdxax7k09mjm9717wb350v6k6"; 271098 isLibrary = true; 271099 isExecutable = true; 271100 enableSeparateDataOutput = true; ··· 274452 }) {}; 274453 274454 "xlsx" = callPackage 274455 ({ mkDerivation, attoparsec, base, base64-bytestring, binary-search 274456 , bytestring, conduit, containers, criterion, data-default, deepseq 274457 , Diff, errors, extra, filepath, groom, lens, mtl, network-uri ··· 277408 277409 "yesod" = callPackage 277410 ({ mkDerivation, aeson, base, bytestring, conduit 277411 + , data-default-class, directory, fast-logger, file-embed 277412 + , monad-logger, shakespeare, streaming-commons, template-haskell 277413 , text, unix, unordered-containers, wai, wai-extra, wai-logger 277414 , warp, yaml, yesod-core, yesod-form, yesod-persistent 277415 }: 277416 mkDerivation { 277417 pname = "yesod"; 277418 + version = "1.6.1.0"; 277419 + sha256 = "1jk55fm58ywp69khacw8n3qk2aybsrlh4bkinjgrah3w01kflmyw"; 277420 libraryHaskellDepends = [ 277421 aeson base bytestring conduit data-default-class directory 277422 + fast-logger file-embed monad-logger shakespeare streaming-commons 277423 template-haskell text unix unordered-containers wai wai-extra 277424 wai-logger warp yaml yesod-core yesod-form yesod-persistent 277425 ]; ··· 277585 277586 "yesod-auth-basic" = callPackage 277587 ({ mkDerivation, base, base64-bytestring, bytestring, exceptions 277588 + , hspec, monad-control, text, wai, word8, yesod, yesod-test 277589 }: 277590 mkDerivation { 277591 pname = "yesod-auth-basic"; 277592 + version = "0.1.0.3"; 277593 + sha256 = "0qm65ml82waxapq3v19k6x33cghgg6wg72p5h2j1ii329dv6293b"; 277594 libraryHaskellDepends = [ 277595 + base base64-bytestring bytestring exceptions monad-control text wai 277596 + word8 yesod 277597 ]; 277598 + testHaskellDepends = [ base hspec text yesod yesod-test ]; 277599 description = "Yesod Middleware for HTTP Basic Authentication"; 277600 license = stdenv.lib.licenses.bsd3; 277601 hydraPlatforms = stdenv.lib.platforms.none; ··· 277921 }: 277922 mkDerivation { 277923 pname = "yesod-bin"; 277924 version = "1.6.0.6"; 277925 sha256 = "044xk75pymw6limz08zicxp4lw8jqf6f2ilj8i2qw2h419w3ry9f"; 277926 isLibrary = false; ··· 277935 ]; 277936 description = "The yesod helper executable"; 277937 license = stdenv.lib.licenses.mit; 277938 }) {}; 277939 277940 "yesod-bootstrap" = callPackage ··· 280677 license = stdenv.lib.licenses.bsd3; 280678 }) {}; 280679 280680 + "zenacy-html" = callPackage 280681 + ({ mkDerivation, base, bytestring, containers, criterion 280682 + , data-default, dlist, extra, HUnit, mtl, pretty-show 280683 + , raw-strings-qq, safe, safe-exceptions, test-framework 280684 + , test-framework-hunit, text, transformers, vector, word8 280685 + }: 280686 + mkDerivation { 280687 + pname = "zenacy-html"; 280688 + version = "2.0.1"; 280689 + sha256 = "074iidhiwzajz207q4k7f8sdg6w4421qfwr2s905226jd2xm1680"; 280690 + isLibrary = true; 280691 + isExecutable = true; 280692 + libraryHaskellDepends = [ 280693 + base bytestring containers data-default dlist extra mtl pretty-show 280694 + safe safe-exceptions text transformers vector word8 280695 + ]; 280696 + executableHaskellDepends = [ 280697 + base bytestring containers data-default dlist extra pretty-show 280698 + text vector 280699 + ]; 280700 + testHaskellDepends = [ 280701 + base bytestring containers data-default dlist extra HUnit mtl 280702 + pretty-show raw-strings-qq test-framework test-framework-hunit text 280703 + transformers 280704 + ]; 280705 + benchmarkHaskellDepends = [ 280706 + base bytestring containers criterion data-default dlist pretty-show 280707 + raw-strings-qq text 280708 + ]; 280709 + description = "A standard compliant HTML parsing library"; 280710 + license = stdenv.lib.licenses.mit; 280711 + }) {}; 280712 + 280713 "zenc" = callPackage 280714 ({ mkDerivation, base }: 280715 mkDerivation { ··· 281549 }: 281550 mkDerivation { 281551 pname = "zlib"; 281552 version = "0.6.2.2"; 281553 sha256 = "1fii0qfc60lfp93vwb78p2fv3jjyklgdhw4ms262z6cysq6qkd84"; 281554 libraryHaskellDepends = [ base bytestring ]; ··· 281558 ]; 281559 description = "Compression and decompression in the gzip and zlib formats"; 281560 license = stdenv.lib.licenses.bsd3; 281561 }) {inherit (pkgs) zlib;}; 281562 281563 "zlib-bindings" = callPackage
+11
pkgs/top-level/haskell-packages.nix
··· 79 buildLlvmPackages = buildPackages.llvmPackages_9; 80 llvmPackages = pkgs.llvmPackages_9; 81 }; 82 ghcHEAD = callPackage ../development/compilers/ghc/head.nix { 83 bootPkgs = packages.ghc883; # no binary yet 84 inherit (buildPackages.python3Packages) sphinx; ··· 156 ghc8101 = callPackage ../development/haskell-modules { 157 buildHaskellPackages = bh.packages.ghc8101; 158 ghc = bh.compiler.ghc8101; 159 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { }; 160 }; 161 ghcHEAD = callPackage ../development/haskell-modules {
··· 79 buildLlvmPackages = buildPackages.llvmPackages_9; 80 llvmPackages = pkgs.llvmPackages_9; 81 }; 82 + ghc8102 = callPackage ../development/compilers/ghc/8.10.2.nix { 83 + bootPkgs = packages.ghc865Binary; 84 + inherit (buildPackages.python3Packages) sphinx; 85 + buildLlvmPackages = buildPackages.llvmPackages_9; 86 + llvmPackages = pkgs.llvmPackages_9; 87 + }; 88 ghcHEAD = callPackage ../development/compilers/ghc/head.nix { 89 bootPkgs = packages.ghc883; # no binary yet 90 inherit (buildPackages.python3Packages) sphinx; ··· 162 ghc8101 = callPackage ../development/haskell-modules { 163 buildHaskellPackages = bh.packages.ghc8101; 164 ghc = bh.compiler.ghc8101; 165 + compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { }; 166 + }; 167 + ghc8102 = callPackage ../development/haskell-modules { 168 + buildHaskellPackages = bh.packages.ghc8102; 169 + ghc = bh.compiler.ghc8102; 170 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { }; 171 }; 172 ghcHEAD = callPackage ../development/haskell-modules {