nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
9309a23d b9b43d58

+1979 -547
+1 -1
maintainers/scripts/haskell/mark-broken.sh
··· 38 38 git add pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml 39 39 git add pkgs/development/haskell-modules/hackage-packages.nix 40 40 git commit -F - << EOF 41 - hackage2nix: Mark failing builds broken 41 + haskellPackages: mark builds failing on hydra as broken 42 42 43 43 This commit has been generated by maintainers/scripts/haskell/mark-broken.sh 44 44 EOF
+1 -1
maintainers/scripts/haskell/regenerate-hackage-packages.sh
··· 37 37 if [[ "${1:-}" == "--do-commit" ]]; then 38 38 git add pkgs/development/haskell-modules/hackage-packages.nix 39 39 git commit -F - << EOF 40 - hackage-packages.nix: Regenerate based on current config 40 + haskellPackages: regenerate package set based on current config 41 41 42 42 This commit has been generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh 43 43 EOF
+1 -1
maintainers/scripts/haskell/update-stackage.sh
··· 61 61 if [[ "${1:-}" == "--do-commit" ]]; then 62 62 git add $stackage_config 63 63 git commit -F - << EOF 64 - Stackage Nightly: $old_version -> $version 64 + haskellPackages: stackage-nightly $old_version -> $version 65 65 66 66 This commit has been generated by maintainers/scripts/haskell/update-stackage.sh 67 67 EOF
+2 -1
nixos/modules/config/console.nix
··· 43 43 44 44 options.console = { 45 45 font = mkOption { 46 - type = types.str; 46 + type = with types; either str path; 47 47 default = "Lat2-Terminus16"; 48 48 example = "LatArCyrHeb-16"; 49 49 description = '' 50 50 The font used for the virtual consoles. Leave empty to use 51 51 whatever the <command>setfont</command> program considers the 52 52 default font. 53 + Can be either a font name or a path to a PSF font file. 53 54 ''; 54 55 }; 55 56
pkgs/applications/editors/mindforger/build.patch pkgs/applications/editors/mindforger/paths.patch
+32 -8
pkgs/applications/editors/mindforger/default.nix
··· 1 - { mkDerivation 1 + { lib 2 + , stdenv 2 3 , cmark-gfm 3 4 , fetchurl 5 + , fetchpatch 4 6 , qmake 5 7 , qtbase 6 - , qtwebkit 7 - , lib 8 + , qtwebengine 8 9 , wrapGAppsHook 10 + , wrapQtAppsHook 9 11 }: 10 12 11 - mkDerivation rec { 13 + stdenv.mkDerivation rec { 12 14 pname = "mindforger"; 13 15 version = "1.52.0"; 14 16 ··· 19 17 sha256 = "1pghsw8kwvjhg3jpmjs0n892h2l0pm0cs6ymi8b23fwk0kfj67rd"; 20 18 }; 21 19 22 - nativeBuildInputs = [ qmake wrapGAppsHook ] ; 23 - buildInputs = [ qtbase qtwebkit cmark-gfm ] ; 20 + nativeBuildInputs = [ qmake wrapGAppsHook wrapQtAppsHook ]; 21 + buildInputs = [ qtbase qtwebengine cmark-gfm ]; 24 22 25 23 doCheck = true; 26 24 27 - patches = [ ./build.patch ] ; 25 + patches = [ 26 + # this makes the package relocatable - removes hardcoded references to /usr 27 + ./paths.patch 28 + # this fixes compilation with QtWebEngine - referencing a commit trying to upstream the change - see https://github.com/dvorka/mindforger/pull/1357 29 + (fetchpatch { 30 + url = "https://github.com/dvorka/mindforger/commit/d28e2bade0278af1b5249953202810540969026a.diff"; 31 + sha256 = "sha256-qHKQQNGSc3F9seaOHV0gzBQFFqcTXk91LpKrojjpAUw="; 32 + }) 33 + ]; 28 34 29 35 postPatch = '' 30 36 substituteInPlace lib/src/install/installer.cpp --replace /usr "$out" 31 37 substituteInPlace app/resources/gnome-shell/mindforger.desktop --replace /usr "$out" 38 + for f in app/app.pro lib/lib.pro; do 39 + substituteInPlace "$f" --replace "QMAKE_CXX = g++" "" 40 + done 32 41 ''; 33 42 34 - qmakeFlags = [ "-r mindforger.pro" "CONFIG+=mfnoccache" ] ; 43 + qmakeFlags = [ 44 + "-r" 45 + "mindforger.pro" 46 + "CONFIG+=mfnoccache" 47 + "CONFIG+=mfwebengine" 48 + ]; 49 + 50 + postInstall = lib.optionalString stdenv.isDarwin '' 51 + mkdir "$out"/Applications 52 + mv app/mindforger.app "$out"/Applications/ 53 + wrapQtApp "$out"/Applications/mindforger.app/Contents/MacOS/mindforger 54 + ''; 35 55 36 56 meta = with lib; { 37 57 description = "Thinking Notebook & Markdown IDE";
+1
pkgs/applications/kde/kdenlive/default.nix
··· 102 102 103 103 meta = { 104 104 license = with lib.licenses; [ gpl2Plus ]; 105 + maintainers = with lib.maintainers; [ turion ]; 105 106 }; 106 107 }
+4
pkgs/applications/networking/feedreaders/newsflash/default.nix
··· 16 16 , glib-networking 17 17 , librsvg 18 18 , gst_all_1 19 + , xdg-utils 19 20 }: 20 21 21 22 stdenv.mkDerivation rec { ··· 78 77 openssl 79 78 sqlite 80 79 webkitgtk 80 + 81 + # open link in browser 82 + xdg-utils 81 83 82 84 # TLS support for loading external content in webkitgtk WebView 83 85 glib-networking
+3 -3
pkgs/applications/networking/instant-messengers/kdeltachat/default.nix
··· 13 13 14 14 mkDerivation rec { 15 15 pname = "kdeltachat"; 16 - version = "unstable-2021-05-31"; 16 + version = "unstable-2021-06-06"; 17 17 18 18 src = fetchFromSourcehut { 19 19 owner = "~link2xt"; 20 20 repo = "kdeltachat"; 21 - rev = "318ae67c17f3e64532bad23c2a61a93446db553d"; 22 - sha256 = "1qy0hlp0r91sqn26ai9isxw4rl8kcmmb10a2p9yqynhm8py3dfn4"; 21 + rev = "321c19b7415e837acc4e66d535e82518618bc096"; 22 + sha256 = "19py9mxpjz09fhyyvxf75s77nq0jwwfiljq9289192p61grk6625"; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+1 -1
pkgs/applications/networking/sync/rsync/default.nix
··· 1 1 { lib, stdenv, fetchurl, perl, libiconv, zlib, popt 2 - , enableACLs ? !(stdenv.isDarwin || stdenv.isSunOS || stdenv.isFreeBSD), acl ? null 2 + , enableACLs ? lib.meta.availableOn stdenv.hostPlatform acl, acl ? null 3 3 , enableLZ4 ? true, lz4 ? null 4 4 , enableOpenSSL ? true, openssl ? null 5 5 , enableXXHash ? true, xxHash ? null
+2 -6
pkgs/applications/terminal-emulators/kitty/default.nix
··· 21 21 with python3Packages; 22 22 buildPythonApplication rec { 23 23 pname = "kitty"; 24 - version = "0.20.3"; 24 + version = "0.21.0"; 25 25 format = "other"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "kovidgoyal"; 29 29 repo = "kitty"; 30 30 rev = "v${version}"; 31 - sha256 = "sha256-rORIrbUqtQZuU6TjjYP7IZHfCPeLnrNy6wInnAwhG48="; 31 + sha256 = "sha256-n8ipIQAfKPVApJhuTrlSSsd6dlPeCUvk7rdiVmL9i+4="; 32 32 }; 33 33 34 34 buildInputs = [ ··· 62 62 propagatedBuildInputs = lib.optional stdenv.isLinux libGL; 63 63 64 64 outputs = [ "out" "terminfo" ]; 65 - 66 - patches = [ 67 - ./fix-paths.patch 68 - ]; 69 65 70 66 # Causes build failure due to warning 71 67 hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow";
-16
pkgs/applications/terminal-emulators/kitty/fix-paths.patch
··· 1 - --- a/docs/Makefile 2 - +++ b/docs/Makefile 3 - @@ -3,7 +3,7 @@ 4 - # Patching is needed here for the following reason: 5 - # * importing the `constants` package from Kitty has a side effect that it 6 - # creates the user configuration directory. This package gets imported 7 - # while sphinx scans the code for documentation strings. 8 - # 9 - 10 - # You can set these variables from the command line. 11 - SPHINXOPTS = -j auto -T $(FAIL_WARN) 12 - -SPHINXBUILD = sphinx-build 13 - +SPHINXBUILD = PYTHONPATH=${PYTHONPATH}:.. HOME=${TMPDIR}/kitty-build-home sphinx-build 14 - SPHINXPROJ = kitty 15 - SOURCEDIR = . 16 - BUILDDIR = _build
+5 -5
pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-font-size/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, xrdb, xlsfonts }: 2 2 3 - stdenv.mkDerivation { 4 - name = "urxvt-font-size-2015-05-22"; 5 - dontPatchShebangs = true; 3 + stdenv.mkDerivation rec { 4 + name = "urxvt-font-size"; 5 + version = "1.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "majutsushi"; 9 9 repo = "urxvt-font-size"; 10 - rev = "fd5b09c10798c6723bbf771d4d8881cf6563bc69"; 11 - sha256 = "16m3kkypg3y00x597zx05zy167a0kaqpawz0l591wzb2bv1dz55z"; 10 + rev = "v${version}"; 11 + sha256 = "1526ap161cp3378f4ijd09nmsh71ld7bkxxhp8p6razdi2v8r16h"; 12 12 }; 13 13 14 14 installPhase = ''
+6 -3
pkgs/applications/version-management/fossil/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "fossil"; 18 - version = "2.14"; 18 + version = "2.15.1"; 19 19 20 20 src = fetchurl { 21 21 urls = ··· 23 23 "https://www.fossil-scm.org/index.html/uv/fossil-src-${version}.tar.gz" 24 24 ]; 25 25 name = "${pname}-${version}.tar.gz"; 26 - sha256 = "sha256-uNDJIBlt2K4pFS+nRI5ROh+nxYiHG3heP7/Ae0KgX7k="; 26 + sha256 = "sha256-gNJ5I8ZjsqLHEPiujNVJhi4E+MBChXBidMNK48jKF9E="; 27 27 }; 28 28 29 29 nativeBuildInputs = [ installShellFiles tcl tcllib ]; 30 30 31 31 buildInputs = [ zlib openssl readline sqlite which ed ] 32 32 ++ lib.optional stdenv.isDarwin libiconv; 33 + 34 + enableParallelBuilding = true; 33 35 34 36 doCheck = stdenv.hostPlatform == stdenv.buildPlatform; 35 37 ··· 59 57 many such systems in use today. Fossil strives to distinguish itself 60 58 from the others by being extremely simple to setup and operate. 61 59 ''; 62 - homepage = "http://www.fossil-scm.org/"; 60 + homepage = "https://www.fossil-scm.org/"; 63 61 license = licenses.bsd2; 64 62 maintainers = with maintainers; [ maggesi viric ]; 63 + platforms = platforms.all; 65 64 }; 66 65 }
+3 -3
pkgs/applications/video/plex-media-player/default.nix
··· 11 11 depSrcs = import ./deps.nix { inherit fetchurl; }; 12 12 in mkDerivation rec { 13 13 pname = "plex-media-player"; 14 - version = "2.58.0.1076"; 15 - vsnHash = "38e019da"; 14 + version = "2.58.1"; 15 + vsnHash = "ae73e074"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "plexinc"; 19 19 repo = "plex-media-player"; 20 20 rev = "v${version}-${vsnHash}"; 21 - sha256 = "XFwcSHn9wG30bDMGFITBmhp6/VI1RLmxMxFFxjntTmw="; 21 + sha256 = "1q20fdp5d0blb0q6p2357bwdc2g65cadkgdp4w533ij2nyaxydjd"; 22 22 }; 23 23 24 24 nativeBuildInputs = [ pkg-config cmake python3 ];
+5 -5
pkgs/applications/video/plex-media-player/deps.nix
··· 7 7 8 8 webClient = fetchurl { 9 9 url = "https://artifacts.plex.tv/web-client-pmp/${webClientBuildId}/buildid.cmake"; 10 - sha256 = "AzHlO7Z8SxQoT6++OphwDDQ47Ombnpaby0mh1YNnSvc="; 10 + sha256 = "1xsacy1xb8a9rfdrd7lvx7n3hd0cf2c3mgmg9wl18jvwnqxyac83"; 11 11 }; 12 12 webClientDesktopHash = fetchurl { 13 13 url = "https://artifacts.plex.tv/web-client-pmp/${webClientBuildId}/web-client-desktop-${webClientDesktopBuildId}.tar.xz.sha1"; 14 - sha256 = "7vUcTuN5ypFFIrBygyutEZu4MYl5WPmFureQl6HvVx8="; 14 + sha256 = "07spxyhrg45ppa2zjn3ri4qvi6qimlmq6wmh492r3jkrwd71rxgf"; 15 15 }; 16 16 webClientDesktop = fetchurl { 17 17 url = "https://artifacts.plex.tv/web-client-pmp/${webClientBuildId}/web-client-desktop-${webClientDesktopBuildId}.tar.xz"; 18 - sha256 = "xWwXhN2N4Pvalxtm5PwZprkcFU6RIiE6fA71d2E6lP4="; 18 + sha256 = "1zll79hpgx8fghx228li9qairfd637yf8rhvjzdgpq4dvn21fv65"; 19 19 }; 20 20 webClientTvHash = fetchurl { 21 21 url = "https://artifacts.plex.tv/web-client-pmp/${webClientBuildId}/web-client-tv-${webClientTvBuildId}.tar.xz.sha1"; 22 - sha256 = "U8u5SOxPpz8HOJKrYXlIHx0X08Flspl67hlzc57g7v8="; 22 + sha256 = "1zzfw2g76wqrxrx9kck5q79if78z91wn3awj703kz9sgxi4bkjsk"; 23 23 }; 24 24 webClientTv = fetchurl { 25 25 url = "https://artifacts.plex.tv/web-client-pmp/${webClientBuildId}/web-client-tv-${webClientTvBuildId}.tar.xz"; 26 - sha256 = "4Et9d4BO+4UParvsSJglJvb+cnp0oUP3O4MDNnLeP7g="; 26 + sha256 = "1f1zvrr3c0w37gvl78blg9rgxxi64nc4iv5vd87qbysfh1vpsjz0"; 27 27 }; 28 28 }
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "9be76e8f01853e5a2f0600107c9b50d12a17581b", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/9be76e8f01853e5a2f0600107c9b50d12a17581b.tar.gz", 4 - "sha256": "0sy8lx04yb9lk9liscqr44z7lzzq67w3zmkq78a0yv37jadb557k", 5 - "msg": "Update from Hackage at 2021-06-02T14:32:36Z" 2 + "commit": "d1a32be92531e75b1acae3126313cdc013951965", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/d1a32be92531e75b1acae3126313cdc013951965.tar.gz", 4 + "sha256": "190m9drzg7rgkjpimlgvl8hsv2g1jg0m0fdgy8xkrh7xr1vjxxgz", 5 + "msg": "Update from Hackage at 2021-06-06T15:18:11Z" 6 6 }
+2
pkgs/desktops/xfce/core/thunar/default.nix
··· 10 10 , libxfce4ui 11 11 , libxfce4util 12 12 , libxslt 13 + , pcre 13 14 , xfconf 14 15 , gobject-introspection 15 16 , makeWrapper ··· 40 39 libnotify 41 40 libxfce4ui 42 41 libxfce4util 42 + pcre 43 43 xfconf 44 44 ]; 45 45
+13 -3
pkgs/development/compilers/ghc/8.10.4.nix
··· 89 89 90 90 targetCC = builtins.head toolsForTarget; 91 91 92 - # ld.gold is disabled for musl libc due to https://sourceware.org/bugzilla/show_bug.cgi?id=23856 92 + # Use gold either following the default, or to avoid the BFD linker due to some bugs / perf issues. 93 + # But we cannot avoid BFD when using musl libc due to https://sourceware.org/bugzilla/show_bug.cgi?id=23856 93 94 # see #84670 and #49071 for more background. 94 - useLdGold = targetPlatform.isLinux && !(targetPlatform.useLLVM or false) && !targetPlatform.isMusl; 95 + useLdGold = targetPlatform.linker == "gold" || (targetPlatform.linker == "bfd" && !targetPlatform.isMusl); 96 + 97 + runtimeDeps = [ 98 + targetPackages.stdenv.cc.bintools 99 + coreutils 100 + ] 101 + # On darwin, we need unwrapped bintools as well (for otool) 102 + ++ lib.optionals (stdenv.targetPlatform.linker == "cctools") [ 103 + targetPackages.stdenv.cc.bintools.bintools 104 + ]; 95 105 96 106 in 97 107 stdenv.mkDerivation (rec { ··· 245 235 for i in "$out/bin/"*; do 246 236 test ! -h $i || continue 247 237 egrep --quiet '^#!' <(head -n 1 $i) || continue 248 - sed -i -e '2i export PATH="$PATH:${lib.makeBinPath [ targetPackages.stdenv.cc.bintools coreutils ]}"' $i 238 + sed -i -e '2i export PATH="$PATH:${lib.makeBinPath runtimeDeps}"' $i 249 239 done 250 240 ''; 251 241
+13 -3
pkgs/development/compilers/ghc/8.8.4.nix
··· 98 98 99 99 targetCC = builtins.head toolsForTarget; 100 100 101 - # ld.gold is disabled for musl libc due to https://sourceware.org/bugzilla/show_bug.cgi?id=23856 101 + # Use gold either following the default, or to avoid the BFD linker due to some bugs / perf issues. 102 + # But we cannot avoid BFD when using musl libc due to https://sourceware.org/bugzilla/show_bug.cgi?id=23856 102 103 # see #84670 and #49071 for more background. 103 - useLdGold = targetPlatform.isLinux && !(targetPlatform.useLLVM or false) && !targetPlatform.isMusl; 104 + useLdGold = targetPlatform.linker == "gold" || (targetPlatform.linker == "bfd" && !targetPlatform.isMusl); 105 + 106 + runtimeDeps = [ 107 + targetPackages.stdenv.cc.bintools 108 + coreutils 109 + ] 110 + # On darwin, we need unwrapped bintools as well (for otool) 111 + ++ lib.optionals (stdenv.targetPlatform.linker == "cctools") [ 112 + targetPackages.stdenv.cc.bintools.bintools 113 + ]; 104 114 105 115 in 106 116 stdenv.mkDerivation (rec { ··· 252 242 for i in "$out/bin/"*; do 253 243 test ! -h $i || continue 254 244 egrep --quiet '^#!' <(head -n 1 $i) || continue 255 - sed -i -e '2i export PATH="$PATH:${lib.makeBinPath [ targetPackages.stdenv.cc.bintools coreutils ]}"' $i 245 + sed -i -e '2i export PATH="$PATH:${lib.makeBinPath runtimeDeps}"' $i 256 246 done 257 247 ''; 258 248
+13 -3
pkgs/development/compilers/ghc/9.0.1.nix
··· 90 90 91 91 targetCC = builtins.head toolsForTarget; 92 92 93 - # ld.gold is disabled for musl libc due to https://sourceware.org/bugzilla/show_bug.cgi?id=23856 93 + # Use gold either following the default, or to avoid the BFD linker due to some bugs / perf issues. 94 + # But we cannot avoid BFD when using musl libc due to https://sourceware.org/bugzilla/show_bug.cgi?id=23856 94 95 # see #84670 and #49071 for more background. 95 - useLdGold = targetPlatform.isLinux && !(targetPlatform.useLLVM or false) && !targetPlatform.isMusl; 96 + useLdGold = targetPlatform.linker == "gold" || (targetPlatform.linker == "bfd" && !targetPlatform.isMusl); 97 + 98 + runtimeDeps = [ 99 + targetPackages.stdenv.cc.bintools 100 + coreutils 101 + ] 102 + # On darwin, we need unwrapped bintools as well (for otool) 103 + ++ lib.optionals (stdenv.targetPlatform.linker == "cctools") [ 104 + targetPackages.stdenv.cc.bintools.bintools 105 + ]; 96 106 97 107 in 98 108 stdenv.mkDerivation (rec { ··· 235 225 for i in "$out/bin/"*; do 236 226 test ! -h $i || continue 237 227 egrep --quiet '^#!' <(head -n 1 $i) || continue 238 - sed -i -e '2i export PATH="$PATH:${lib.makeBinPath [ targetPackages.stdenv.cc.bintools coreutils ]}"' $i 228 + sed -i -e '2i export PATH="$PATH:${lib.makeBinPath runtimeDeps}"' $i 239 229 done 240 230 ''; 241 231
+13 -3
pkgs/development/compilers/ghc/head.nix
··· 100 100 101 101 targetCC = builtins.head toolsForTarget; 102 102 103 - # ld.gold is disabled for musl libc due to https://sourceware.org/bugzilla/show_bug.cgi?id=23856 103 + # Use gold either following the default, or to avoid the BFD linker due to some bugs / perf issues. 104 + # But we cannot avoid BFD when using musl libc due to https://sourceware.org/bugzilla/show_bug.cgi?id=23856 104 105 # see #84670 and #49071 for more background. 105 - useLdGold = targetPlatform.isLinux && !(targetPlatform.useLLVM or false) && !targetPlatform.isMusl; 106 + useLdGold = targetPlatform.linker == "gold" || (targetPlatform.linker == "bfd" && !targetPlatform.isMusl); 107 + 108 + runtimeDeps = [ 109 + targetPackages.stdenv.cc.bintools 110 + coreutils 111 + ] 112 + # On darwin, we need unwrapped bintools as well (for otool) 113 + ++ lib.optionals (stdenv.targetPlatform.linker == "cctools") [ 114 + targetPackages.stdenv.cc.bintools.bintools 115 + ]; 106 116 107 117 in 108 118 stdenv.mkDerivation (rec { ··· 252 242 for i in "$out/bin/"*; do 253 243 test ! -h $i || continue 254 244 egrep --quiet '^#!' <(head -n 1 $i) || continue 255 - sed -i -e '2i export PATH="$PATH:${lib.makeBinPath [ targetPackages.stdenv.cc.bintools coreutils ]}"' $i 245 + sed -i -e '2i export PATH="$PATH:${lib.makeBinPath runtimeDeps}"' $i 256 246 done 257 247 ''; 258 248
+48
pkgs/development/guile-modules/guile-git/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitLab 4 + , guile 5 + , libgit2 6 + , scheme-bytestructures 7 + , autoreconfHook 8 + , pkg-config 9 + , texinfo 10 + }: 11 + 12 + stdenv.mkDerivation rec { 13 + pname = "guile-git"; 14 + version = "0.3.0"; 15 + 16 + src = fetchFromGitLab { 17 + owner = "guile-git"; 18 + repo = pname; 19 + rev = "v${version}"; 20 + sha256 = "1s77s70gzfj6h7bglq431kw8l4iknhsfpc0mnvcp4lkhwdcgyn1n"; 21 + }; 22 + 23 + postConfigure = '' 24 + sed -i '/moddir\s*=/s%=.*%=''${out}/share/guile/site%' Makefile; 25 + sed -i '/godir\s*=/s%=.*%=''${out}/share/guile/ccache%' Makefile; 26 + ''; 27 + 28 + nativeBuildInputs = [ 29 + autoreconfHook pkg-config texinfo 30 + ]; 31 + buildInputs = [ 32 + guile 33 + ]; 34 + propagatedBuildInputs = [ 35 + libgit2 scheme-bytestructures 36 + ]; 37 + 38 + enableParallelBuilding = true; 39 + 40 + meta = with lib; { 41 + description = "Bindings to Libgit2 for GNU Guile"; 42 + homepage = "https://gitlab.com/guile-git/guile-git"; 43 + license = licenses.gpl3Plus; 44 + maintainers = with maintainers; [ ethancedwards8 ]; 45 + platforms = platforms.linux; 46 + }; 47 + } 48 +
+3 -3
pkgs/development/haskell-modules/cabal2nix-unstable.nix
··· 8 8 }: 9 9 mkDerivation { 10 10 pname = "cabal2nix"; 11 - version = "unstable-2021-05-28"; 11 + version = "unstable-2021-06-12"; 12 12 src = fetchzip { 13 - url = "https://github.com/NixOS/cabal2nix/archive/5fb325e094af91328e02cc2ecfd211feaeb135a7.tar.gz"; 14 - sha256 = "1zbd336s99rgk24yjqlp012d0f66s5nf190sjmsl7mfhqx9j2y4l"; 13 + url = "https://github.com/NixOS/cabal2nix/archive/01feffa0aeee835504e0c0ccf4bca2e33a698252.tar.gz"; 14 + sha256 = "0clckh0qqvjcb8szy1d6qqlxj6sqp28jc2p3vhzhkf95cv491si9"; 15 15 }; 16 16 isLibrary = true; 17 17 isExecutable = true;
+4
pkgs/development/haskell-modules/configuration-arm.nix
··· 37 37 # Similar to https://ghc.haskell.org/trac/ghc/ticket/13062 38 38 happy = dontCheck super.happy; 39 39 40 + # Disable GClosure based signals implementation on aarch64 as it causes linker issues 41 + # https://github.com/gtk2hs/gtk2hs/issues/305 42 + gtk2hs-buildtools = appendConfigureFlag super.gtk2hs-buildtools "-f-ClosureSignals"; 43 + 40 44 } // lib.optionalAttrs pkgs.stdenv.hostPlatform.isAarch64 { 41 45 # AARCH64-SPECIFIC OVERRIDES 42 46
+6 -4
pkgs/development/haskell-modules/configuration-common.nix
··· 1925 1925 # https://github.com/haskell-hvr/missingh/issues/56 1926 1926 MissingH = doJailbreak super.MissingH; 1927 1927 1928 - # Too strict bound on containers 1929 - # https://github.com/batterseapower/parallel-io/issues/14#issuecomment-853441933 1930 - parallel-io = doJailbreak super.parallel-io; 1931 - 1932 1928 # Disable flaky tests 1933 1929 # https://github.com/DavidEichmann/alpaca-netcode/issues/2 1934 1930 alpaca-netcode = overrideCabal super.alpaca-netcode { ··· 1948 1952 # unrestrict bounds for hashable and semigroups 1949 1953 # https://github.com/HeinrichApfelmus/reactive-banana/issues/215 1950 1954 reactive-banana = doJailbreak super.reactive-banana; 1955 + 1956 + # Too strict version bounds on QuickCheck and semirings 1957 + # https://github.com/erikd/wide-word/issues/57 1958 + wide-word = doJailbreak super.wide-word; 1959 + 1960 + hackage-db_2_1_0 = doDistribute super.hackage-db_2_1_0; 1951 1961 1952 1962 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
+4
pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
··· 87 87 # Break out of "Cabal < 3.2" constraint. 88 88 stylish-haskell = doJailbreak super.stylish-haskell; 89 89 90 + # hackage-db 2.1.1 is incompatible with Cabal < 3.4 91 + # See https://github.com/NixOS/cabal2nix/issues/501 92 + hackage-db = self.hackage-db_2_1_0; 93 + 90 94 }
+4
pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
··· 106 106 # https://github.com/haskellari/time-compat/issues/23 107 107 time-compat = dontCheck super.time-compat; 108 108 109 + # hackage-db 2.1.1 is incompatible with Cabal < 3.4 110 + # See https://github.com/NixOS/cabal2nix/issues/501 111 + hackage-db = super.hackage-db_2_1_0; 112 + 109 113 }
+4
pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
··· 135 135 136 136 # vector 0.12.2 indroduced doctest checks that don‘t work on older compilers 137 137 vector = dontCheck super.vector; 138 + 139 + # hackage-db 2.1.1 is incompatible with Cabal < 3.4 140 + # See https://github.com/NixOS/cabal2nix/issues/501 141 + hackage-db = super.hackage-db_2_1_0; 138 142 }
+14
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 101 101 # 5 introduced support for GHC 9.0.x, but hasn't landed in stackage yet 102 102 lens = super.lens_5_0_1; 103 103 104 + # 0.16.0 introduced support for GHC 9.0.x, stackage has 0.15.0 105 + memory = super.memory_0_16_0; 106 + 107 + # 0.29 introduced support for GHC 9.0.x, stackage has 0.28 108 + cryptonite = super.cryptonite_0_29; 109 + 110 + # GHC 9.0.x doesn't like `import Spec (main)` in Main.hs 111 + # https://github.com/snoyberg/mono-traversable/issues/192 112 + mono-traversable = dontCheck super.mono-traversable; 113 + 114 + # Disable tests pending resolution of 115 + # https://github.com/Soostone/retry/issues/71 116 + retry = dontCheck super.retry; 117 + 104 118 }
+11 -1
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 370 370 - biohazard 371 371 - bio-sequence 372 372 - birds-of-paradise 373 + - biscuit-haskell 373 374 - bisect-binary 374 375 - bishbosh 375 376 - bitcoin-hs ··· 999 998 - dhall-fly 1000 999 - dhall-text 1001 1000 - dhall-to-cabal 1001 + - dhcp-lease-parser 1002 1002 - dhrun 1003 1003 - dia-base 1004 1004 - diagrams-boolean ··· 2204 2202 - hs-carbon-examples 2205 2203 - hscd 2206 2204 - hs-cdb 2205 + - hscdio 2207 2206 - hsclock 2208 2207 - hScraper 2209 2208 - hscuid ··· 2483 2480 - Irc 2484 2481 - irc-dcc 2485 2482 - irc-fun-types 2483 + - iri 2486 2484 - iridium 2487 2485 - iron-mq 2488 2486 - irt ··· 2552 2548 - json-schema 2553 2549 - jsonschema-gen 2554 2550 - jsonsql 2551 + - json-syntax 2555 2552 - json-tools 2556 2553 - json-tracer 2557 2554 - jsontsv ··· 3064 3059 - movie-monad 3065 3060 - mpppc 3066 3061 - mpris 3062 + - mptcp-pm 3067 3063 - mpvguihs 3068 3064 - mqtt 3069 3065 - mqtt-hs ··· 3396 3390 - pandoc-utils 3397 3391 - pang-a-lambda 3398 3392 - pangraph 3393 + - pan-os-syslog 3399 3394 - panpipe 3400 3395 - pansite 3401 3396 - pantry-tmp ··· 4216 4209 - shorten-strings 4217 4210 - show-prettyprint 4218 4211 - Shpadoinkle-backend-snabbdom 4212 + - Shpadoinkle-isreal 4219 4213 - Shpadoinkle-streaming 4220 4214 - shwifty 4221 4215 - sifflet ··· 4290 4282 - slug 4291 4283 - slugify 4292 4284 - smallarray 4285 + - small-bytearray-builder 4293 4286 - smallcheck-kind-generics 4294 4287 - smallcheck-laws 4295 4288 - smallcheck-lens ··· 4690 4681 - thank-you-stars 4691 4682 - th-build 4692 4683 - th-dict-discovery 4684 + - themoviedb 4693 4685 - thentos-cookie-session 4694 4686 - Theora 4695 4687 - theoremquest ··· 4929 4919 - unordered-intmap 4930 4920 - unpacked-either 4931 4921 - unpacked-maybe 4922 + - unpacked-maybe-numeric 4932 4923 - unpack-funcs 4933 4924 - unroll-ghc-plugin 4934 4925 - unsafely ··· 5130 5119 - whiskers 5131 5120 - whois 5132 5121 - why3 5133 - - wide-word 5134 5122 - WikimediaParser 5135 5123 - windns 5136 5124 - winerror
+5
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 93 93 - futhark < 0.19.5 94 94 # 2021-06-05: remove once pandoc 2.14 is in stackage 95 95 - pandoc-crossref < 0.3.11.0 96 + # 2021-06-07: stackage still has dhall < 1.39 97 + - dhall-nix < 1.1.21 98 + - dhall-openapi < 1.0.1 96 99 97 100 extra-packages: 98 101 - base16-bytestring < 1 # required for cabal-install etc. ··· 125 122 - gi-gtk < 4.0 # 2021-05-07: For haskell-gi 0.25 without gtk4 126 123 - gi-gdkx11 == 3.0.11 # 2021-05-07: For haskell-gi 0.25 without gtk4 127 124 - ShellCheck == 0.7.1 # 2021-05-09: haskell-ci 0.12.1 pins this version 125 + - hackage-db < 2.1.1 # 2021-06-10: Need older hackage-db as long as Cabal < 3.4, see https://github.com/NixOS/cabal2nix/issues/501 128 126 129 127 package-maintainers: 130 128 abbradar: ··· 397 393 mpi-hs-cereal: [ aarch64-linux, x86_64-darwin ] 398 394 mpi-hs-store: [ aarch64-linux, x86_64-darwin ] 399 395 mplayer-spot: [ aarch64-linux ] 396 + mptcp-pm: [ x86_64-darwin ] 400 397 netlink: [ x86_64-darwin ] 401 398 oculus: [ x86_64-darwin ] 402 399 pam: [ x86_64-darwin ]
+4 -25
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 20 20 - activehs 21 21 - actor 22 22 - AC-Vector-Fancy 23 - - addy 24 23 - adhoc-network 25 24 - adict 26 25 - ADPfusionForest ··· 116 117 - atp 117 118 - AttoJson 118 119 - attoparsec-enumerator 119 - - attoparsec-ip 120 120 - attoparsec-iteratee 121 121 - attoparsec-text-enumerator 122 - - attoparsec-uri 123 122 - atuin 124 123 - audiovisual 125 124 - aura ··· 165 168 - Barracuda 166 169 - base16-lens 167 170 - base32-bytestring 168 - - base62 169 171 - base64-bytes 170 172 - baserock-schema 171 173 - BASIC ··· 305 309 - buster-network 306 310 - butterflies 307 311 - bv-sized-lens 308 - - bytebuild 309 312 - bytehash 310 313 - bytelog 311 - - bytesmith 312 314 - bytestring-read 313 315 - c0check 314 316 - cabal2arch ··· 616 622 - dewdrop 617 623 - dfinity-radix-tree 618 624 - dhall-docs 619 - - dhcp-lease-parser 620 625 - dia-functions 621 626 - diagrams-haddock 622 627 - diagrams-html5 ··· 1558 1565 - invertible-hlist 1559 1566 - ion 1560 1567 - IORefCAS 1561 - - ip 1562 1568 - ipatch 1563 1569 - ipc 1564 1570 - ipld-cid ··· 1567 1575 - irc-fun-client 1568 1576 - irc-fun-color 1569 1577 - irc-fun-messages 1570 - - iri 1571 1578 - ironforge 1572 1579 - isevaluated 1573 1580 - ismtp ··· 1622 1631 - json-incremental-decoder 1623 1632 - json-query 1624 1633 - jsons-to-schema 1625 - - json-syntax 1626 1634 - json-togo 1627 1635 - json-tokens 1628 1636 - jspath ··· 1876 1886 - markdown2svg 1877 1887 - markdown-pap 1878 1888 - markov-processes 1879 - - markup 1880 1889 - marmalade-upload 1881 1890 - marquise 1882 1891 - marvin ··· 1975 1986 - mpretty 1976 1987 - mprover 1977 1988 - mps 1978 - - mptcp-pm 1979 1989 - msgpack-aeson 1980 1990 - msgpack-idl 1981 1991 - msgpack-rpc ··· 2115 2127 - openpgp-crypto-api 2116 2128 - OpenSCAD 2117 2129 - openssh-github-keys 2130 + - opentelemetry-extra_0_7_0 2118 2131 - opentracing-jaeger 2119 2132 - opentracing-zipkin-v1 2120 2133 - open-union ··· 2135 2146 - pairing 2136 2147 - panda 2137 2148 - pandoc-japanese-filters 2138 - - pan-os-syslog 2139 2149 - papa 2140 2150 - papa-base 2141 2151 - papa-base-implement ··· 2514 2526 - runtime-arbitrary 2515 2527 - S3 2516 2528 - safe-coloured-text-layout-gen 2517 - - safe-numeric 2518 2529 - safer-file-handles 2519 2530 - safer-file-handles-bytestring 2520 2531 - safer-file-handles-text ··· 2552 2565 - scholdoc 2553 2566 - scholdoc-citeproc 2554 2567 - scholdoc-texmath 2555 - - scientific-notation 2556 2568 - SciFlow 2557 2569 - SciFlow-drmaa 2558 2570 - scion ··· 2674 2688 - skylark-client 2675 2689 - slidemews 2676 2690 - slip32 2677 - - small-bytearray-builder 2678 2691 - smallstring 2679 2692 - smartword 2680 2693 - smcdel 2681 - - smith 2682 2694 - smith-cli 2683 2695 - smith-client 2684 2696 - Smooth ··· 2826 2842 - swearjure 2827 2843 - sweet-egison 2828 2844 - switch 2845 + - sydtest_0_2_0_0 2846 + - sydtest-persistent-postgresql 2829 2847 - sylvia 2830 2848 - symantic-atom 2831 2849 - symantic-lib ··· 3021 3035 - universe-th 3022 3036 - unix-fcntl 3023 3037 - unix-simple 3024 - - unpacked-maybe-numeric 3025 3038 - unpacked-these 3026 3039 - unpacked-validation 3027 3040 - unparse-attoparsec ··· 3033 3048 - urembed 3034 3049 - uri-enumerator 3035 3050 - uri-enumerator-file 3036 - - url-bytes 3037 3051 - UrlDisp 3038 - - urlpath 3039 3052 - URLT 3040 3053 - usb 3041 3054 - usb-enumerator ··· 3046 3063 - uu-cco-examples 3047 3064 - uu-cco-hut-parsing 3048 3065 - uu-cco-uu-parsinglib 3049 - - uuid-bytes 3050 3066 - uuid-crypto 3051 3067 - uvector-algorithms 3052 3068 - v4l2 ··· 3072 3090 - vfr-waypoints 3073 3091 - ViennaRNA-extras 3074 3092 - vigilance 3093 + - vimeta 3075 3094 - vinyl-operational 3076 3095 - vision 3077 3096 - visual-graphrewrite ··· 3093 3110 - wai-middleware-cache 3094 3111 - wai-middleware-cache-redis 3095 3112 - wai-middleware-consul 3096 - - wai-middleware-content-type 3097 3113 - wai-middleware-rollbar 3098 3114 - wai-middleware-route 3099 3115 - wai-session-tokyocabinet ··· 3126 3144 - wheb-redis 3127 3145 - wheb-strapped 3128 3146 - whitespace 3129 - - wide-word-instances 3130 3147 - wikipedia4epub 3131 3148 - windowslive 3132 3149 - winio ··· 3144 3163 - wrecker-ui 3145 3164 - wright 3146 3165 - writer-cps-full 3147 - - ws 3148 3166 - wss-client 3149 3167 - wtk-gtk 3150 3168 - wumpus-basic ··· 3215 3235 - yesod-colonnade 3216 3236 - yesod-continuations 3217 3237 - yesod-examples 3218 - - yesod-ip 3219 3238 - yesod-mangopay 3220 3239 - yesod-paypal-rest 3221 3240 - yesod-platform
+13 -1
pkgs/development/haskell-modules/configuration-nix.nix
··· 53 53 54 54 # Use the default version of mysql to build this package (which is actually mariadb). 55 55 # test phase requires networking 56 - mysql = dontCheck (super.mysql.override { mysql = pkgs.libmysqlclient; }); 56 + mysql = dontCheck super.mysql; 57 57 58 58 # CUDA needs help finding the SDK headers and libraries. 59 59 cuda = overrideCabal super.cuda (drv: { ··· 833 833 sed -i 's|"tophat"|"./dist/build/tophat/tophat"|' app-test-bin/*.hs 834 834 '' + (drv.postPatch or ""); 835 835 }); 836 + 837 + # Runtime dependencies and CLI completion 838 + nvfetcher = generateOptparseApplicativeCompletion "nvfetcher" (overrideCabal 839 + super.nvfetcher (drv: { 840 + buildTools = drv.buildTools or [ ] ++ [ pkgs.makeWrapper ]; 841 + postInstall = drv.postInstall or "" + '' 842 + wrapProgram "$out/bin/nvfetcher" --prefix 'PATH' ':' "${ 843 + pkgs.lib.makeBinPath [ pkgs.nvchecker pkgs.nix-prefetch-git ] 844 + }" 845 + ''; 846 + })); 847 + 836 848 }
+1 -1
pkgs/development/haskell-modules/generic-builder.nix
··· 481 481 # ^^ if the project is not a library, and we have a build target, then use "copy" to install 482 482 # just the target specified; "install" will error here, since not all targets have been built. 483 483 else '' 484 - ${setupCommand} copy 484 + ${setupCommand} copy ${buildTarget} 485 485 local packageConfDir="$out/lib/${ghc.name}/package.conf.d" 486 486 local packageConfFile="$packageConfDir/${pname}-${version}.conf" 487 487 mkdir -p "$packageConfDir"
+1523 -305
pkgs/development/haskell-modules/hackage-packages.nix
··· 1551 1551 }: 1552 1552 mkDerivation { 1553 1553 pname = "BiobaseBlast"; 1554 - version = "0.3.1.0"; 1555 - sha256 = "153bxf221jga58ibxgd660465klbqj49qr3rk6ni77v7sb4qgrg0"; 1554 + version = "0.3.3.0"; 1555 + sha256 = "11xxm3s6pyy68as6pd3iwfq2dmbgvj2w238jg969fza8vj22xcdb"; 1556 1556 libraryHaskellDepends = [ 1557 1557 aeson attoparsec base binary BiobaseENA BiobaseTypes BiobaseXNA 1558 1558 bytestring cereal containers deepseq directory file-embed lens ··· 1587 1587 }: 1588 1588 mkDerivation { 1589 1589 pname = "BiobaseENA"; 1590 - version = "0.0.0.1"; 1591 - sha256 = "0wkfaxrv4s34amjjl02q0si5nvs18f74z9dxp5r024fd42g3fdka"; 1590 + version = "0.0.0.2"; 1591 + sha256 = "0v999rs3bj4mkbrxsgz0nnqh1pzf7pgxm94519hqjfph5r6yw7nd"; 1592 1592 libraryHaskellDepends = [ 1593 1593 base BiobaseTypes bytestring containers directory file-embed lens 1594 1594 megaparsec mtl text vector vector-th-unbox ··· 1639 1639 1640 1640 "BiobaseFasta" = callPackage 1641 1641 ({ mkDerivation, base, BiobaseTypes, bytestring, DPutils, filepath 1642 - , lens, QuickCheck, resourcet, streaming, streaming-bytestring 1643 - , string-conversions, tasty, tasty-golden, tasty-hunit 1644 - , tasty-quickcheck, tasty-silver, tasty-th, text 1642 + , lens, optparse-applicative, QuickCheck, resourcet, streaming 1643 + , streaming-bytestring, string-conversions, tasty, tasty-golden 1644 + , tasty-hunit, tasty-quickcheck, tasty-silver, tasty-th, text 1645 1645 }: 1646 1646 mkDerivation { 1647 1647 pname = "BiobaseFasta"; 1648 - version = "0.3.0.1"; 1649 - sha256 = "11vwvqln5jv4k97miyjgqs3yckm8fhyclclhfxq473i4g22amjyh"; 1648 + version = "0.4.0.1"; 1649 + sha256 = "1l5185nsq59jgnpx1r0j5r07a5fqz8f5q2xyxvhwbqan51w51ph6"; 1650 + isLibrary = true; 1651 + isExecutable = true; 1650 1652 libraryHaskellDepends = [ 1651 1653 base BiobaseTypes bytestring DPutils lens resourcet streaming 1652 1654 streaming-bytestring string-conversions 1655 + ]; 1656 + executableHaskellDepends = [ 1657 + base BiobaseTypes bytestring DPutils lens optparse-applicative 1658 + resourcet streaming streaming-bytestring string-conversions 1653 1659 ]; 1654 1660 testHaskellDepends = [ 1655 1661 base BiobaseTypes bytestring DPutils filepath lens QuickCheck ··· 1828 1822 "BiobaseTypes" = callPackage 1829 1823 ({ mkDerivation, aeson, attoparsec, base, bimaps, binary 1830 1824 , bytestring, cereal, cereal-text, cereal-vector, containers 1831 - , data-default, deepseq, ForestStructures, hashable, intern, lens 1832 - , mtl, primitive, PrimitiveArray, QuickCheck, SciBaseTypes 1833 - , streaming, string-conversions, tasty, tasty-quickcheck, tasty-th 1834 - , text, text-binary, utf8-string, vector, vector-binary-instances 1835 - , vector-th-unbox 1825 + , data-default, deepseq, DPutils, ForestStructures, hashable 1826 + , intern, lens, mtl, primitive, PrimitiveArray, QuickCheck 1827 + , SciBaseTypes, streaming, string-conversions, tasty, tasty-hunit 1828 + , tasty-quickcheck, tasty-th, text, text-binary, utf8-string 1829 + , vector, vector-binary-instances, vector-th-unbox 1836 1830 }: 1837 1831 mkDerivation { 1838 1832 pname = "BiobaseTypes"; 1839 - version = "0.2.0.1"; 1840 - sha256 = "1ygyq169dcz1bswppljkskvqamvvs61n8fwyyplyf4348i1v938i"; 1833 + version = "0.2.1.0"; 1834 + sha256 = "0gm5nlh8xbww614386vhm2lz118w9c6lcj3pbx5k256mzm7j5yba"; 1841 1835 libraryHaskellDepends = [ 1842 1836 aeson attoparsec base bimaps binary bytestring cereal cereal-text 1843 - cereal-vector containers data-default deepseq ForestStructures 1844 - hashable intern lens mtl primitive PrimitiveArray QuickCheck 1845 - SciBaseTypes streaming string-conversions text text-binary 1846 - utf8-string vector vector-binary-instances vector-th-unbox 1837 + cereal-vector containers data-default deepseq DPutils 1838 + ForestStructures hashable intern lens mtl primitive PrimitiveArray 1839 + QuickCheck SciBaseTypes streaming string-conversions text 1840 + text-binary utf8-string vector vector-binary-instances 1841 + vector-th-unbox 1847 1842 ]; 1848 1843 testHaskellDepends = [ 1849 1844 aeson attoparsec base bimaps binary bytestring cereal cereal-text 1850 - cereal-vector containers data-default deepseq ForestStructures 1851 - hashable intern lens mtl primitive PrimitiveArray QuickCheck 1852 - SciBaseTypes streaming string-conversions tasty tasty-quickcheck 1853 - tasty-th text text-binary utf8-string vector 1854 - vector-binary-instances vector-th-unbox 1845 + cereal-vector containers data-default deepseq DPutils 1846 + ForestStructures hashable intern lens mtl primitive PrimitiveArray 1847 + QuickCheck SciBaseTypes streaming string-conversions tasty 1848 + tasty-hunit tasty-quickcheck tasty-th text text-binary utf8-string 1849 + vector vector-binary-instances vector-th-unbox 1855 1850 ]; 1856 1851 description = "Collection of types for bioinformatics"; 1857 1852 license = lib.licenses.bsd3; ··· 1879 1872 ({ mkDerivation, aeson, attoparsec, base, bimaps, binary 1880 1873 , BiobaseENA, BiobaseTypes, bytes, bytestring, cereal 1881 1874 , cereal-vector, cmdargs, containers, csv, data-default, deepseq 1882 - , file-embed, ForestStructures, hashable, lens, mtl, primitive 1883 - , PrimitiveArray, QuickCheck, split, tasty, tasty-quickcheck 1884 - , tasty-th, text, tuple, vector, vector-binary-instances 1885 - , vector-th-unbox 1875 + , DPutils, file-embed, ForestStructures, hashable, lens, mtl 1876 + , primitive, PrimitiveArray, QuickCheck, split, tasty 1877 + , tasty-quickcheck, tasty-th, text, tuple, vector 1878 + , vector-binary-instances, vector-th-unbox 1886 1879 }: 1887 1880 mkDerivation { 1888 1881 pname = "BiobaseXNA"; 1889 - version = "0.11.0.0"; 1890 - sha256 = "1yrq14mv5bbw6drlpk2cf6incdg2wqw3i0zgdd0vpfmxbwr3wjl4"; 1882 + version = "0.11.1.1"; 1883 + sha256 = "0ws9x3z5ljgm7hnz290yhzm3ijksd6dr4m0drj1lxhchdfmwfy1m"; 1891 1884 isLibrary = true; 1892 1885 isExecutable = true; 1893 1886 enableSeparateDataOutput = true; 1894 1887 libraryHaskellDepends = [ 1895 1888 aeson attoparsec base bimaps binary BiobaseENA BiobaseTypes bytes 1896 1889 bytestring cereal cereal-vector containers csv data-default deepseq 1897 - file-embed ForestStructures hashable lens mtl primitive 1890 + DPutils file-embed ForestStructures hashable lens mtl primitive 1898 1891 PrimitiveArray QuickCheck split text tuple vector 1899 1892 vector-binary-instances vector-th-unbox 1900 1893 ]; 1901 1894 executableHaskellDepends = [ 1902 1895 aeson attoparsec base bimaps binary BiobaseENA BiobaseTypes bytes 1903 1896 bytestring cereal cereal-vector cmdargs containers csv data-default 1904 - deepseq file-embed ForestStructures hashable lens mtl primitive 1905 - PrimitiveArray QuickCheck split text tuple vector 1897 + deepseq DPutils file-embed ForestStructures hashable lens mtl 1898 + primitive PrimitiveArray QuickCheck split text tuple vector 1906 1899 vector-binary-instances vector-th-unbox 1907 1900 ]; 1908 1901 testHaskellDepends = [ 1909 1902 aeson attoparsec base bimaps binary BiobaseENA BiobaseTypes bytes 1910 1903 bytestring cereal cereal-vector containers csv data-default deepseq 1911 - file-embed ForestStructures hashable lens mtl primitive 1904 + DPutils file-embed ForestStructures hashable lens mtl primitive 1912 1905 PrimitiveArray QuickCheck split tasty tasty-quickcheck tasty-th 1913 1906 text tuple vector vector-binary-instances vector-th-unbox 1914 1907 ]; ··· 1984 1977 }: 1985 1978 mkDerivation { 1986 1979 pname = "BlastHTTP"; 1987 - version = "1.4.1"; 1988 - sha256 = "1h7bj9a6qfzwlclr39dvbcz4r8l8s7n53z6ir8wff5ssq2wvq4qd"; 1980 + version = "1.4.2"; 1981 + sha256 = "1ndg24w4qcs7f6ak8qcgfp04mippz2vxpcxwpnsaghyxvpbxqbw6"; 1989 1982 libraryHaskellDepends = [ 1990 1983 base BiobaseBlast BiobaseFasta bytestring conduit either-unwrap 1991 1984 HTTP http-conduit hxt mtl network transformers zip-archive ··· 3334 3327 license = lib.licenses.bsd3; 3335 3328 }) {}; 3336 3329 3330 + "Color_0_3_2" = callPackage 3331 + ({ mkDerivation, base, colour, criterion, data-default-class 3332 + , deepseq, doctest, hspec, HUnit, JuicyPixels, massiv, massiv-test 3333 + , QuickCheck, random, vector 3334 + }: 3335 + mkDerivation { 3336 + pname = "Color"; 3337 + version = "0.3.2"; 3338 + sha256 = "1v5x32jas70sfqy90brjqlfsy816ar9mcbr3i1lviqivzq7agshk"; 3339 + libraryHaskellDepends = [ base data-default-class deepseq vector ]; 3340 + testHaskellDepends = [ 3341 + base colour doctest hspec HUnit JuicyPixels massiv massiv-test 3342 + QuickCheck random vector 3343 + ]; 3344 + benchmarkHaskellDepends = [ base colour criterion deepseq random ]; 3345 + description = "Color spaces and conversions between them"; 3346 + license = lib.licenses.bsd3; 3347 + hydraPlatforms = lib.platforms.none; 3348 + }) {}; 3349 + 3337 3350 "Combinatorrent" = callPackage 3338 3351 ({ mkDerivation, array, attoparsec, base, bytestring, cereal 3339 3352 , containers, deepseq, directory, filepath, hopenssl, hslogger ··· 4093 4066 }: 4094 4067 mkDerivation { 4095 4068 pname = "DPutils"; 4096 - version = "0.1.0.0"; 4097 - sha256 = "153g1rr13jjwqkvfj85nwjhaa0zq8khn24n3dib80nyk0scd4w62"; 4069 + version = "0.1.1.0"; 4070 + sha256 = "1kvj6zkj8r7qp1zvqz68fflxcal3w4qi1y8a70bm6qq5d83ivnd4"; 4098 4071 libraryHaskellDepends = [ 4099 - attoparsec base bytestring containers criterion kan-extensions lens 4100 - mtl parallel pipes pipes-bytestring pipes-parse primitive 4101 - QuickCheck smallcheck streaming streaming-bytestring stringsearch 4102 - tasty tasty-quickcheck tasty-smallcheck tasty-th transformers 4072 + attoparsec base bytestring containers kan-extensions lens mtl 4073 + parallel pipes pipes-bytestring pipes-parse primitive QuickCheck 4074 + smallcheck streaming streaming-bytestring stringsearch transformers 4103 4075 vector 4104 4076 ]; 4105 4077 testHaskellDepends = [ 4106 - attoparsec base bytestring containers criterion kan-extensions lens 4107 - mtl parallel pipes pipes-bytestring pipes-parse primitive 4108 - QuickCheck smallcheck streaming streaming-bytestring stringsearch 4109 - tasty tasty-quickcheck tasty-smallcheck tasty-th transformers 4110 - vector 4078 + attoparsec base bytestring containers kan-extensions lens mtl 4079 + parallel pipes pipes-bytestring pipes-parse primitive QuickCheck 4080 + smallcheck streaming streaming-bytestring stringsearch tasty 4081 + tasty-quickcheck tasty-smallcheck tasty-th transformers vector 4111 4082 ]; 4112 4083 benchmarkHaskellDepends = [ 4113 4084 attoparsec base bytestring containers criterion kan-extensions lens 4114 4085 mtl parallel pipes pipes-bytestring pipes-parse primitive 4115 4086 QuickCheck smallcheck streaming streaming-bytestring stringsearch 4116 - tasty tasty-quickcheck tasty-smallcheck tasty-th timeit 4117 - transformers vector 4087 + timeit transformers vector 4118 4088 ]; 4119 4089 description = "utilities for DP"; 4120 4090 license = lib.licenses.bsd3; ··· 11685 11661 license = lib.licenses.bsd3; 11686 11662 }) {}; 11687 11663 11664 + "JuicyPixels-extra_0_5_1" = callPackage 11665 + ({ mkDerivation, base, criterion, hspec, hspec-discover 11666 + , JuicyPixels 11667 + }: 11668 + mkDerivation { 11669 + pname = "JuicyPixels-extra"; 11670 + version = "0.5.1"; 11671 + sha256 = "1kgb2l6ymhjr7wq93jpdhxy3k4i7jz0rz256phz10ycdpyvdbjpq"; 11672 + enableSeparateDataOutput = true; 11673 + libraryHaskellDepends = [ base JuicyPixels ]; 11674 + testHaskellDepends = [ base hspec JuicyPixels ]; 11675 + testToolDepends = [ hspec-discover ]; 11676 + benchmarkHaskellDepends = [ base criterion JuicyPixels ]; 11677 + description = "Efficiently scale, crop, flip images with JuicyPixels"; 11678 + license = lib.licenses.bsd3; 11679 + hydraPlatforms = lib.platforms.none; 11680 + }) {}; 11681 + 11688 11682 "JuicyPixels-repa" = callPackage 11689 11683 ({ mkDerivation, base, bytestring, JuicyPixels, repa, vector }: 11690 11684 mkDerivation { ··· 14145 14103 }: 14146 14104 mkDerivation { 14147 14105 pname = "NanoID"; 14148 - version = "1.2.0"; 14149 - sha256 = "1fwbzdj7cn96fbq4vsp4582p317qw3piy237vxf79d0wmdp006zn"; 14106 + version = "2.1.0"; 14107 + sha256 = "0ila2yrdva18y20wm533hkqmmb2mrh1j212jp2ck6p6yiwam687j"; 14150 14108 isLibrary = true; 14151 14109 isExecutable = true; 14152 14110 libraryHaskellDepends = [ base bytestring extra mwc-random ]; ··· 16002 15960 }: 16003 15961 mkDerivation { 16004 15962 pname = "PrimitiveArray"; 16005 - version = "0.10.1.0"; 16006 - sha256 = "1qjld82q0fdaav6y9ky0bkmqjxvv48502zd3s9i1b72wn436zhib"; 15963 + version = "0.10.1.1"; 15964 + sha256 = "114d41g28i8iah5gpb1377rzfmbcsfay9gr9dhhyyj4dqrpdn1df"; 16007 15965 libraryHaskellDepends = [ 16008 15966 aeson base binary bits cereal cereal-vector containers deepseq 16009 15967 DPutils hashable hashtables lens log-domain mtl OrderedBits ··· 17868 17826 }) {}; 17869 17827 17870 17828 "SciBaseTypes" = callPackage 17871 - ({ mkDerivation, aeson, base, binary, cereal, deepseq, hashable 17872 - , lens, log-domain, mtl, QuickCheck, semirings, tasty 17829 + ({ mkDerivation, aeson, base, binary, cereal, deepseq, DPutils 17830 + , hashable, lens, log-domain, mtl, QuickCheck, semirings, tasty 17873 17831 , tasty-quickcheck, tasty-th, vector, vector-th-unbox 17874 17832 }: 17875 17833 mkDerivation { 17876 17834 pname = "SciBaseTypes"; 17877 - version = "0.1.0.0"; 17878 - sha256 = "1c0cgzxhamgswn1zhrarbx5vrmzl160nk8dadzi6mphwd2rv6lfr"; 17879 - revision = "1"; 17880 - editedCabalFile = "025v2s4097mzqyf5bzzz2xnxcc4nckcvaz72pnrxs3d8bbszd26i"; 17835 + version = "0.1.1.0"; 17836 + sha256 = "12k2arn3qbgfa8bc344vv02smqj3yd6rqhnpfib3yi43nkbaazqa"; 17881 17837 libraryHaskellDepends = [ 17882 - aeson base binary cereal deepseq hashable lens log-domain mtl 17883 - semirings vector vector-th-unbox 17838 + aeson base binary cereal deepseq DPutils hashable lens log-domain 17839 + mtl semirings vector vector-th-unbox 17884 17840 ]; 17885 17841 testHaskellDepends = [ 17886 - aeson base binary cereal deepseq hashable lens log-domain mtl 17887 - QuickCheck semirings tasty tasty-quickcheck tasty-th vector 17842 + aeson base binary cereal deepseq DPutils hashable lens log-domain 17843 + mtl QuickCheck semirings tasty tasty-quickcheck tasty-th vector 17888 17844 vector-th-unbox 17889 17845 ]; 17890 17846 benchmarkHaskellDepends = [ 17891 - aeson base binary cereal deepseq hashable lens log-domain mtl 17892 - semirings vector vector-th-unbox 17847 + aeson base binary cereal deepseq DPutils hashable lens log-domain 17848 + mtl semirings vector vector-th-unbox 17893 17849 ]; 17894 17850 description = "Base types and classes for statistics, sciences and humanities"; 17895 17851 license = lib.licenses.bsd3; ··· 18264 18224 }) {}; 18265 18225 18266 18226 "Shpadoinkle" = callPackage 18267 - ({ mkDerivation, base, category, containers, ghcjs-dom, jsaddle 18268 - , jsaddle-warp, text, transformers, unliftio, wai, wai-app-static 18269 - , warp 18227 + ({ mkDerivation, base, containers, deepseq, ghcjs-dom, jsaddle 18228 + , jsaddle-warp, mtl, text, transformers, unliftio, wai 18229 + , wai-app-static, warp 18270 18230 }: 18271 18231 mkDerivation { 18272 18232 pname = "Shpadoinkle"; 18273 - version = "0.3.0.0"; 18274 - sha256 = "083ly6xpdcf7wgrb3shcw26zk0d8rm8issyvki1rwvd29rwj0k41"; 18233 + version = "0.3.2.0"; 18234 + sha256 = "1an13ybgayp532vx040bhjccg3kb429zrcrhc38bkvbs6475y3bz"; 18275 18235 libraryHaskellDepends = [ 18276 - base category containers ghcjs-dom jsaddle jsaddle-warp text 18236 + base containers deepseq ghcjs-dom jsaddle jsaddle-warp mtl text 18277 18237 transformers unliftio wai wai-app-static warp 18278 18238 ]; 18279 18239 description = "A programming model for declarative, high performance user interface"; ··· 18282 18242 18283 18243 "Shpadoinkle-backend-pardiff" = callPackage 18284 18244 ({ mkDerivation, base, compactable, containers, exceptions 18285 - , file-embed, ghcjs-dom, jsaddle, lens, monad-control, mtl, random 18286 - , semialign, Shpadoinkle, text, these, transformers-base, unliftio 18245 + , file-embed, ghcjs-dom, jsaddle, monad-control, mtl, random 18246 + , Shpadoinkle, text, transformers-base, unliftio 18287 18247 }: 18288 18248 mkDerivation { 18289 18249 pname = "Shpadoinkle-backend-pardiff"; 18290 - version = "0.3.0.0"; 18291 - sha256 = "1m12m4qbivh0srdzwzcqr8s6s1hi1blk3x15ljv5c9viriznfy6z"; 18250 + version = "0.3.0.1"; 18251 + sha256 = "1ghj2464pq36paf3z56hc7q0p2nkfgwqjvfa3yymwfr2xdachqwd"; 18292 18252 libraryHaskellDepends = [ 18293 18253 base compactable containers exceptions file-embed ghcjs-dom jsaddle 18294 - lens monad-control mtl random semialign Shpadoinkle text these 18295 - transformers-base unliftio 18254 + monad-control mtl random Shpadoinkle text transformers-base 18255 + unliftio 18296 18256 ]; 18297 18257 description = "A Virtual Dom in pure Haskell, based on Html as an Alignable Functor"; 18298 18258 license = lib.licenses.bsd3; ··· 18300 18260 }) {}; 18301 18261 18302 18262 "Shpadoinkle-backend-snabbdom" = callPackage 18303 - ({ mkDerivation, base, exceptions, file-embed, ghcjs-dom, jsaddle 18304 - , monad-control, mtl, Shpadoinkle, text, transformers-base 18305 - , unliftio 18263 + ({ mkDerivation, base, containers, exceptions, file-embed 18264 + , ghcjs-dom, jsaddle, monad-control, mtl, Shpadoinkle, text 18265 + , transformers-base, unliftio 18306 18266 }: 18307 18267 mkDerivation { 18308 18268 pname = "Shpadoinkle-backend-snabbdom"; 18309 - version = "0.3.0.1"; 18310 - sha256 = "0452znn1q558n1dy52j493y7f9lml57cnqbmdmqv28zq12sxpypm"; 18269 + version = "0.3.0.2"; 18270 + sha256 = "1hqbfsjlvrkfjf16r5f1jr7fxbki559mbxksqviba80b94wn34ld"; 18311 18271 libraryHaskellDepends = [ 18312 - base exceptions file-embed ghcjs-dom jsaddle monad-control mtl 18313 - Shpadoinkle text transformers-base unliftio 18272 + base containers exceptions file-embed ghcjs-dom jsaddle 18273 + monad-control mtl Shpadoinkle text transformers-base unliftio 18314 18274 ]; 18315 18275 description = "Use the high-performance Snabbdom virtual dom library written in JavaScript"; 18316 18276 license = lib.licenses.bsd3; ··· 18322 18282 ({ mkDerivation, base, compactable, Shpadoinkle, text }: 18323 18283 mkDerivation { 18324 18284 pname = "Shpadoinkle-backend-static"; 18325 - version = "0.2.0.0"; 18326 - sha256 = "0kxfsm4g6mwwcrpq8bm83v32jpp97bsvl6ay0ynnmss0yf70ymmi"; 18285 + version = "0.2.0.1"; 18286 + sha256 = "1lcly4kb6im7m1y25209s7wxdvisc0nyfa33a3fjf078ambqpai1"; 18327 18287 libraryHaskellDepends = [ base compactable Shpadoinkle text ]; 18328 18288 description = "A backend for rendering Shpadoinkle as Text"; 18329 18289 license = lib.licenses.bsd3; ··· 18334 18294 ({ mkDerivation, aeson, base, jsaddle, lens, text, unliftio }: 18335 18295 mkDerivation { 18336 18296 pname = "Shpadoinkle-console"; 18337 - version = "0.0.1.3"; 18338 - sha256 = "0zkiv0h37a3x3569xfvfzdy0dywxhcfx12jddqf9bpfyqsxmf42a"; 18297 + version = "0.0.1.4"; 18298 + sha256 = "1agvyr8785y9dmhdcm36mhvg3lq2ksqly38asb7pb8xynhlvllbk"; 18339 18299 libraryHaskellDepends = [ aeson base jsaddle lens text unliftio ]; 18340 18300 description = "Support for the native browser console"; 18341 18301 license = lib.licenses.bsd3; ··· 18359 18319 }: 18360 18320 mkDerivation { 18361 18321 pname = "Shpadoinkle-developer-tools"; 18362 - version = "0.0.0.1"; 18363 - sha256 = "14lcmxkaxsa42dcyn13cb83lfw48n7139gvppsngzrbn1w9lwrl0"; 18322 + version = "0.0.0.2"; 18323 + sha256 = "1lcz9xlqxzzv8gq31jcd1lw5l8dw14ixkcg14kq73p0418lwm06z"; 18364 18324 isLibrary = true; 18365 18325 isExecutable = true; 18366 18326 libraryHaskellDepends = [ ··· 18383 18343 }: 18384 18344 mkDerivation { 18385 18345 pname = "Shpadoinkle-disembodied"; 18386 - version = "0.0.0.1"; 18387 - sha256 = "0hiwiv4l1k1al0d9fjk48fay6c33shf213yc9blwm15mfj5kh77c"; 18346 + version = "0.0.0.2"; 18347 + sha256 = "1r96j6lx5k28m0wc4x0pdf81zzml6ppdaw5ywdlv85yxcmv1wxsd"; 18388 18348 libraryHaskellDepends = [ 18389 18349 base directory filepath servant Shpadoinkle 18390 18350 Shpadoinkle-backend-static Shpadoinkle-html Shpadoinkle-router text ··· 18429 18389 18430 18390 "Shpadoinkle-html" = callPackage 18431 18391 ({ mkDerivation, base, bytestring, compactable, containers 18432 - , ghcjs-dom, jsaddle, lens, raw-strings-qq, regex-pcre, Shpadoinkle 18433 - , stm, template-haskell, text, time, transformers, unliftio 18392 + , directory, ghcjs-dom, jsaddle, lens, process, raw-strings-qq 18393 + , regex-pcre, Shpadoinkle, stm, template-haskell, text, time 18394 + , transformers, unliftio 18434 18395 }: 18435 18396 mkDerivation { 18436 18397 pname = "Shpadoinkle-html"; 18437 - version = "0.3.0.0"; 18438 - sha256 = "17n675m9gqfhi2rd8c60bcbljd4nknfrwb02zlw9jwgj1kv7l06k"; 18398 + version = "0.3.0.2"; 18399 + sha256 = "1wi1b4vnag530iz8xzqih1phwgpr96yv3brizmn6yj9j8d0bf5qz"; 18439 18400 libraryHaskellDepends = [ 18440 - base bytestring compactable containers ghcjs-dom jsaddle lens 18441 - raw-strings-qq regex-pcre Shpadoinkle stm template-haskell text 18442 - time transformers unliftio 18401 + base bytestring compactable containers directory ghcjs-dom jsaddle 18402 + lens process raw-strings-qq regex-pcre Shpadoinkle stm 18403 + template-haskell text time transformers unliftio 18443 18404 ]; 18444 18405 description = "A typed, template generated Html DSL, and helpers"; 18445 18406 license = lib.licenses.bsd3; 18446 18407 hydraPlatforms = lib.platforms.none; 18447 18408 }) {}; 18448 18409 18410 + "Shpadoinkle-isreal" = callPackage 18411 + ({ mkDerivation, aeson, base, bytestring, containers, deepseq 18412 + , directory, filepath, process, random, servant, servant-server 18413 + , text, time, warp 18414 + }: 18415 + mkDerivation { 18416 + pname = "Shpadoinkle-isreal"; 18417 + version = "0.0.0.2"; 18418 + sha256 = "1mvc5q5rvsgvgind9pv7389908ikb80qa704vwrzqb2wg2ir5g78"; 18419 + isLibrary = true; 18420 + isExecutable = true; 18421 + libraryHaskellDepends = [ 18422 + aeson base bytestring containers deepseq random servant 18423 + servant-server text time 18424 + ]; 18425 + executableHaskellDepends = [ 18426 + aeson base bytestring containers deepseq directory filepath process 18427 + random servant servant-server text time warp 18428 + ]; 18429 + description = "Isreal Swan will make a snowman for you!"; 18430 + license = lib.licenses.gpl3Plus; 18431 + hydraPlatforms = lib.platforms.none; 18432 + broken = true; 18433 + }) {}; 18434 + 18449 18435 "Shpadoinkle-lens" = callPackage 18450 18436 ({ mkDerivation, base, lens, Shpadoinkle, text }: 18451 18437 mkDerivation { 18452 18438 pname = "Shpadoinkle-lens"; 18453 - version = "0.0.0.3"; 18454 - sha256 = "1310ipmw2z8gdnvaqx1bydvc4p1iyhc7xv31vwbx2aszhmi873kq"; 18439 + version = "0.0.0.4"; 18440 + sha256 = "16lkkyjlxczdcdb8wwj4jvkhi9wsr9d9h5ih6kjdxd9r2qn4zi84"; 18455 18441 libraryHaskellDepends = [ base lens Shpadoinkle text ]; 18456 18442 description = "Lens combinators for Shpadoinkle applications"; 18457 18443 license = lib.licenses.bsd3; ··· 18493 18427 }: 18494 18428 mkDerivation { 18495 18429 pname = "Shpadoinkle-router"; 18496 - version = "0.3.0.0"; 18497 - sha256 = "1wdr71khi7nmyz4ksf7hy6ya470687wmv4x7bvv7qq2z2dsy5ns2"; 18430 + version = "0.3.0.1"; 18431 + sha256 = "0xy09nklsjypaw2dmzl4dzdkrhdlzip2jw41mj1vm7xdvas7i7f1"; 18498 18432 libraryHaskellDepends = [ 18499 18433 aeson base bytestring compactable exceptions ghcjs-dom 18500 18434 http-api-data http-media http-types jsaddle jsaddle-warp lens ··· 18511 18445 ({ mkDerivation, base, lens, Shpadoinkle, streaming, text }: 18512 18446 mkDerivation { 18513 18447 pname = "Shpadoinkle-streaming"; 18514 - version = "0.0.0.1"; 18515 - sha256 = "1bvrkyj9l8asczfamw26x1hwj8bcxr7812zjm1m91jg4xzipayv2"; 18448 + version = "0.0.0.2"; 18449 + sha256 = "1i86299ss25xd1swxd4rz9k5mvxqzhnafiylaawan2fbp2xwqkq2"; 18516 18450 libraryHaskellDepends = [ base lens Shpadoinkle streaming text ]; 18517 18451 description = "Integration of the streaming library with Shpadoinkle continuations"; 18518 18452 license = lib.licenses.bsd3; ··· 18521 18455 }) {}; 18522 18456 18523 18457 "Shpadoinkle-template" = callPackage 18524 - ({ mkDerivation, base, file-embed, html-parse, Shpadoinkle 18525 - , Shpadoinkle-backend-static, template-haskell, text 18458 + ({ mkDerivation, base, directory, file-embed, html-entities 18459 + , html-parse, process, Shpadoinkle, Shpadoinkle-backend-static 18460 + , template-haskell, text 18526 18461 }: 18527 18462 mkDerivation { 18528 18463 pname = "Shpadoinkle-template"; 18529 - version = "0.0.0.1"; 18530 - sha256 = "1iyxb0hnyfcb4fipwrvzr03g3rai5lc5k7sysrd691l0dsh2jill"; 18464 + version = "0.0.0.2"; 18465 + sha256 = "1alhlc4w9xcyzan0sbsanip3q0yw9pjg094linwwavb211wbcdkj"; 18531 18466 libraryHaskellDepends = [ 18532 - base html-parse Shpadoinkle Shpadoinkle-backend-static 18533 - template-haskell text 18467 + base directory html-entities html-parse process Shpadoinkle 18468 + Shpadoinkle-backend-static template-haskell text 18534 18469 ]; 18535 18470 testHaskellDepends = [ 18536 - base file-embed html-parse Shpadoinkle Shpadoinkle-backend-static 18537 - template-haskell text 18471 + base directory file-embed html-entities html-parse process 18472 + Shpadoinkle Shpadoinkle-backend-static template-haskell text 18538 18473 ]; 18539 18474 description = "Read standard file formats into Shpadoinkle with Template Haskell"; 18540 18475 license = lib.licenses.bsd3; ··· 18543 18476 }) {}; 18544 18477 18545 18478 "Shpadoinkle-widgets" = callPackage 18546 - ({ mkDerivation, aeson, base, compactable, containers 18547 - , edit-distance, email-validate, hspec, jsaddle, mtl, QuickCheck 18548 - , quickcheck-classes, quickcheck-classes-base, Shpadoinkle 18549 - , Shpadoinkle-html, stm, template-haskell, text, unliftio 18479 + ({ mkDerivation, aeson, attoparsec, base, bytestring, compactable 18480 + , containers, edit-distance, either, email-validate, hspec, jsaddle 18481 + , mtl, QuickCheck, quickcheck-classes, quickcheck-classes-base 18482 + , servant, Shpadoinkle, Shpadoinkle-html, stm, template-haskell 18483 + , text, transformers, unliftio 18550 18484 }: 18551 18485 mkDerivation { 18552 18486 pname = "Shpadoinkle-widgets"; 18553 - version = "0.2.0.0"; 18554 - sha256 = "0q82m3gffcw89xyl0h9ayp2v4k9l1zwpnlpq7kvirl1ahhp2iypy"; 18487 + version = "0.2.0.1"; 18488 + sha256 = "11ncdip5f01d8ng1rgpprl0adrgca19mww86hybckg8v9lxvyfgc"; 18555 18489 libraryHaskellDepends = [ 18556 - aeson base compactable containers edit-distance email-validate 18557 - jsaddle mtl Shpadoinkle Shpadoinkle-html stm template-haskell text 18558 - unliftio 18490 + aeson attoparsec base bytestring compactable containers 18491 + edit-distance either email-validate jsaddle mtl servant Shpadoinkle 18492 + Shpadoinkle-html stm template-haskell text transformers unliftio 18559 18493 ]; 18560 18494 testHaskellDepends = [ 18561 18495 base containers hspec QuickCheck quickcheck-classes ··· 20733 20665 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 20734 20666 mkDerivation { 20735 20667 pname = "VulkanMemoryAllocator"; 20736 - version = "0.5"; 20737 - sha256 = "1gar1xb7hbc452ck8351wikvryradna9bpphzd9kqwk0kx76nl3n"; 20668 + version = "0.5.1"; 20669 + sha256 = "13savwlcdpvskir5v8yb019cxszrsjrkyisws0w8ddc94a3c9x2c"; 20738 20670 libraryHaskellDepends = [ 20739 20671 base bytestring transformers vector vulkan 20740 20672 ]; ··· 21886 21818 21887 21819 "Z-Botan" = callPackage 21888 21820 ({ mkDerivation, base, Cabal, directory, filepath, ghc-prim, hspec 21889 - , hspec-discover, HUnit, integer-gmp, QuickCheck 21821 + , hspec-discover, HUnit, integer-gmp, primitive, QuickCheck 21890 21822 , quickcheck-instances, scientific, stm, time, Z-Data, Z-IO 21891 21823 }: 21892 21824 mkDerivation { 21893 21825 pname = "Z-Botan"; 21894 - version = "0.3.1.0"; 21895 - sha256 = "0920pzs9q105h32d7yp83bblhq0id5vzzw3d2pysg4dd127933xc"; 21826 + version = "0.4.0.0"; 21827 + sha256 = "0jlw9wk8yhgsqjn3grzkq2a1p90dil1ayx30cvg85c2y96j5x8jn"; 21896 21828 enableSeparateDataOutput = true; 21897 21829 setupHaskellDepends = [ base Cabal directory filepath ]; 21898 21830 libraryHaskellDepends = [ 21899 - base ghc-prim integer-gmp scientific stm time Z-Data Z-IO 21831 + base ghc-prim integer-gmp primitive scientific stm time Z-Data Z-IO 21900 21832 ]; 21901 21833 libraryToolDepends = [ hspec-discover ]; 21902 21834 testHaskellDepends = [ ··· 21915 21847 }: 21916 21848 mkDerivation { 21917 21849 pname = "Z-Data"; 21918 - version = "0.8.3.0"; 21919 - sha256 = "1y8vgz3jps2vsg5ay9s792knfyk5cvc6549q5li51jaqibsrw99m"; 21850 + version = "0.8.5.0"; 21851 + sha256 = "1ib9lhhjymr4020yqrc318xqp7swr17iiczpb18d061ngcw8xi90"; 21920 21852 setupHaskellDepends = [ base Cabal ]; 21921 21853 libraryHaskellDepends = [ 21922 21854 base bytestring case-insensitive containers deepseq ghc-prim ··· 24032 23964 ]; 24033 23965 description = "A full-featured library for parsing, validating, and rendering email addresses"; 24034 23966 license = lib.licenses.bsd2; 24035 - hydraPlatforms = lib.platforms.none; 24036 23967 }) {}; 24037 23968 24038 23969 "adhoc-network" = callPackage ··· 32743 32676 }: 32744 32677 mkDerivation { 32745 32678 pname = "arion-compose"; 32746 - version = "0.1.2.0"; 32747 - sha256 = "1vginzc90xl8fs1pr9qvw7fjj207vjb1k3rxa341hq7q5pri2y3d"; 32679 + version = "0.1.3.0"; 32680 + sha256 = "1pw0vqx1y3zgq303gdgd3vkz95mqrv8hl0pfkw6kyc49hj7l864y"; 32748 32681 isLibrary = true; 32749 32682 isExecutable = true; 32750 32683 enableSeparateDataOutput = true; ··· 35185 35118 ]; 35186 35119 description = "Parse IP data types with attoparsec"; 35187 35120 license = lib.licenses.bsd3; 35188 - hydraPlatforms = lib.platforms.none; 35189 35121 }) {}; 35190 35122 35191 35123 "attoparsec-iso8601" = callPackage ··· 35325 35259 ]; 35326 35260 description = "URI parser / printer using attoparsec"; 35327 35261 license = lib.licenses.bsd3; 35328 - hydraPlatforms = lib.platforms.none; 35329 35262 }) {}; 35330 35263 35331 35264 "attoparsec-varword" = callPackage ··· 38345 38280 ]; 38346 38281 description = "Base62 encoding and decoding"; 38347 38282 license = lib.licenses.bsd3; 38348 - hydraPlatforms = lib.platforms.none; 38349 38283 }) {}; 38350 38284 38351 38285 "base64" = callPackage ··· 42255 42191 license = lib.licenses.gpl3Only; 42256 42192 }) {inherit (pkgs) snappy;}; 42257 42193 42194 + "biscuit-haskell" = callPackage 42195 + ({ mkDerivation, async, attoparsec, base, base16-bytestring, base64 42196 + , bytestring, cereal, containers, libsodium, mtl 42197 + , parser-combinators, primitive, protobuf, random, regex-tdfa 42198 + , tasty, tasty-hunit, template-haskell, text, th-lift-instances 42199 + , time, validation-selective 42200 + }: 42201 + mkDerivation { 42202 + pname = "biscuit-haskell"; 42203 + version = "0.1.0.0"; 42204 + sha256 = "0h37sl493ribsvqw98xy4g9vii3xc3ap6vvjffn7xg29b62s0lrx"; 42205 + isLibrary = true; 42206 + isExecutable = true; 42207 + libraryHaskellDepends = [ 42208 + async attoparsec base base16-bytestring base64 bytestring cereal 42209 + containers libsodium mtl parser-combinators primitive protobuf 42210 + random regex-tdfa template-haskell text th-lift-instances time 42211 + validation-selective 42212 + ]; 42213 + executableHaskellDepends = [ 42214 + async attoparsec base base16-bytestring base64 bytestring cereal 42215 + containers libsodium mtl parser-combinators primitive protobuf 42216 + random template-haskell text th-lift-instances time 42217 + validation-selective 42218 + ]; 42219 + testHaskellDepends = [ 42220 + async attoparsec base base16-bytestring base64 bytestring cereal 42221 + containers libsodium mtl parser-combinators primitive protobuf 42222 + random tasty tasty-hunit template-haskell text th-lift-instances 42223 + time validation-selective 42224 + ]; 42225 + description = "Library support for the Biscuit security token"; 42226 + license = lib.licenses.bsd3; 42227 + hydraPlatforms = lib.platforms.none; 42228 + broken = true; 42229 + }) {}; 42230 + 42258 42231 "bisect-binary" = callPackage 42259 42232 ({ mkDerivation, base, bytestring, directory, filepath, hashable 42260 42233 , haskeline, integer-logarithms, optparse-applicative, process ··· 44218 44117 }: 44219 44118 mkDerivation { 44220 44119 pname = "blucontrol"; 44221 - version = "0.3.1.0"; 44222 - sha256 = "035lrn1j6hrvl5vs5k0q1hb3zwbqh5bvxmfxvjvv9lncv8iy2nd9"; 44120 + version = "0.3.2.0"; 44121 + sha256 = "1rg9gsrkwnpabrpgl0xh0z9wa1gkqi5vgxpfg7lfz6jcb72qsas6"; 44223 44122 isLibrary = true; 44224 44123 isExecutable = true; 44225 44124 libraryHaskellDepends = [ ··· 47198 47097 }: 47199 47098 mkDerivation { 47200 47099 pname = "byline"; 47201 - version = "1.1.0.1"; 47202 - sha256 = "1vj17x2czfks5bdns8181iw7rbfghk9pgx5f75xwzn9p6xycg9hy"; 47100 + version = "1.1.1"; 47101 + sha256 = "0yy9hd8yhpi175fgnp8cd4h0bifx2zvy82jmbkd28kpbgw6b49vi"; 47203 47102 isLibrary = true; 47204 47103 isExecutable = true; 47205 47104 libraryHaskellDepends = [ ··· 47307 47206 ]; 47308 47207 description = "Serialize to a small byte arrays"; 47309 47208 license = lib.licenses.bsd3; 47310 - hydraPlatforms = lib.platforms.none; 47311 47209 }) {}; 47312 47210 47313 47211 "bytedump" = callPackage ··· 47452 47352 ]; 47453 47353 description = "Nonresumable byte parser"; 47454 47354 license = lib.licenses.bsd3; 47455 - hydraPlatforms = lib.platforms.none; 47456 47355 }) {}; 47457 47356 47458 47357 "bytestring_0_11_1_0" = callPackage ··· 52353 52254 license = lib.licenses.bsd3; 52354 52255 }) {}; 52355 52256 52257 + "cdar-mBound_0_1_0_4" = callPackage 52258 + ({ mkDerivation, base, containers, criterion, deepseq, integer-gmp 52259 + , smallcheck, tasty, tasty-hunit, tasty-quickcheck 52260 + , tasty-smallcheck 52261 + }: 52262 + mkDerivation { 52263 + pname = "cdar-mBound"; 52264 + version = "0.1.0.4"; 52265 + sha256 = "1p7ri7vfvj3ym0038aq12szs6jgdkq8a4730i67appv9lmxgycfn"; 52266 + isLibrary = true; 52267 + isExecutable = true; 52268 + libraryHaskellDepends = [ base containers deepseq integer-gmp ]; 52269 + executableHaskellDepends = [ base ]; 52270 + testHaskellDepends = [ 52271 + base smallcheck tasty tasty-hunit tasty-quickcheck tasty-smallcheck 52272 + ]; 52273 + benchmarkHaskellDepends = [ base criterion ]; 52274 + description = "Exact real arithmetic using Centred Dyadic Approximations"; 52275 + license = lib.licenses.bsd3; 52276 + hydraPlatforms = lib.platforms.none; 52277 + }) {}; 52278 + 52356 52279 "cdeps" = callPackage 52357 52280 ({ mkDerivation, alex, array, base, bytestring, criterion 52358 52281 , directory, filepath, hspec, optparse-applicative, text ··· 55026 54905 license = lib.licenses.bsd2; 55027 54906 }) {}; 55028 54907 55029 - "citeproc_0_4" = callPackage 54908 + "citeproc_0_4_0_1" = callPackage 55030 54909 ({ mkDerivation, aeson, attoparsec, base, bytestring 55031 54910 , case-insensitive, containers, data-default, Diff, directory 55032 54911 , file-embed, filepath, mtl, pandoc-types, pretty, safe, scientific ··· 55035 54914 }: 55036 54915 mkDerivation { 55037 54916 pname = "citeproc"; 55038 - version = "0.4"; 55039 - sha256 = "0ca6xyv0pa0w10pzn7zmpvg6583xjs8ffj16ykkrw9gjd4nlginh"; 54917 + version = "0.4.0.1"; 54918 + sha256 = "13hgbcbr7jbyfbxp8fsc43c2wq4fhlbxzqwh1plfkdi5n9bif1lv"; 55040 54919 isLibrary = true; 55041 54920 isExecutable = true; 55042 54921 libraryHaskellDepends = [ ··· 59379 59258 pname = "compact"; 59380 59259 version = "0.2.0.0"; 59381 59260 sha256 = "0xv24vd2h76928355rr8gzdbkyn2j17yf6wjyghnzw7qyhsbb9h3"; 59261 + revision = "1"; 59262 + editedCabalFile = "1013dkawaw3c6hvlfn9x584pq8z65fvbnp79dl6ll6r0a75rivvm"; 59382 59263 libraryHaskellDepends = [ base binary bytestring ghc-compact ]; 59383 59264 testHaskellDepends = [ base directory ]; 59384 59265 description = "Non-GC'd, contiguous storage for immutable data structures"; ··· 62892 62769 sha256 = "0l9d7hj66fygpsbjw6wy4l11c9cw739lvkrypapwihav7jzva541"; 62893 62770 libraryHaskellDepends = [ base containers deepseq ]; 62894 62771 description = "Provide orphan NFData instances for containers as needed. (deprecated)"; 62772 + license = lib.licenses.bsd3; 62773 + }) {}; 62774 + 62775 + "containers-good-graph" = callPackage 62776 + ({ mkDerivation, array, base, containers, deepseq }: 62777 + mkDerivation { 62778 + pname = "containers-good-graph"; 62779 + version = "0.6.4.1"; 62780 + sha256 = "1bv4v8q9gi1fa46c3pqj0kyl28kbyn55i038d0fxqbi225pdhhan"; 62781 + libraryHaskellDepends = [ array base containers deepseq ]; 62782 + testHaskellDepends = [ array base containers deepseq ]; 62783 + description = "Data.Graph, but it doesn't suck!"; 62895 62784 license = lib.licenses.bsd3; 62896 62785 }) {}; 62897 62786 ··· 73725 73590 maintainers = with lib.maintainers; [ Gabriel439 ]; 73726 73591 }) {}; 73727 73592 73593 + "dhall_1_39_0" = callPackage 73594 + ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write 73595 + , base, bytestring, case-insensitive, cborg, cborg-json, containers 73596 + , contravariant, cryptonite, data-fix, deepseq, Diff, directory 73597 + , doctest, dotgen, either, exceptions, filepath, foldl, gauge 73598 + , generic-random, half, hashable, haskeline, http-client 73599 + , http-client-tls, http-types, lens-family-core, megaparsec, memory 73600 + , mmorph, mockery, mtl, network-uri, optparse-applicative 73601 + , parser-combinators, parsers, pretty-simple, prettyprinter 73602 + , prettyprinter-ansi-terminal, profunctors, QuickCheck 73603 + , quickcheck-instances, repline, scientific, serialise 73604 + , special-values, spoon, tasty, tasty-expected-failure, tasty-hunit 73605 + , tasty-quickcheck, tasty-silver, template-haskell, text 73606 + , text-manipulate, th-lift-instances, transformers 73607 + , transformers-compat, turtle, unordered-containers, uri-encode 73608 + , vector 73609 + }: 73610 + mkDerivation { 73611 + pname = "dhall"; 73612 + version = "1.39.0"; 73613 + sha256 = "1by2d84fbckspczddl4npfsf89q6nprmbg0i5g8yr1psp0fpl4ab"; 73614 + isLibrary = true; 73615 + isExecutable = true; 73616 + enableSeparateDataOutput = true; 73617 + libraryHaskellDepends = [ 73618 + aeson aeson-pretty ansi-terminal atomic-write base bytestring 73619 + case-insensitive cborg cborg-json containers contravariant 73620 + cryptonite data-fix deepseq Diff directory dotgen either exceptions 73621 + filepath half hashable haskeline http-client http-client-tls 73622 + http-types lens-family-core megaparsec memory mmorph mtl 73623 + network-uri optparse-applicative parser-combinators parsers 73624 + pretty-simple prettyprinter prettyprinter-ansi-terminal profunctors 73625 + repline scientific serialise template-haskell text text-manipulate 73626 + th-lift-instances transformers transformers-compat 73627 + unordered-containers uri-encode vector 73628 + ]; 73629 + executableHaskellDepends = [ base ]; 73630 + testHaskellDepends = [ 73631 + base bytestring cborg containers data-fix deepseq directory doctest 73632 + either filepath foldl generic-random http-client http-client-tls 73633 + lens-family-core megaparsec mockery prettyprinter QuickCheck 73634 + quickcheck-instances scientific serialise special-values spoon 73635 + tasty tasty-expected-failure tasty-hunit tasty-quickcheck 73636 + tasty-silver template-haskell text transformers turtle 73637 + unordered-containers vector 73638 + ]; 73639 + benchmarkHaskellDepends = [ 73640 + base bytestring containers directory gauge text 73641 + ]; 73642 + doCheck = false; 73643 + description = "A configuration language guaranteed to terminate"; 73644 + license = lib.licenses.bsd3; 73645 + hydraPlatforms = lib.platforms.none; 73646 + maintainers = with lib.maintainers; [ Gabriel439 ]; 73647 + }) {}; 73648 + 73728 73649 "dhall-bash" = callPackage 73729 73650 ({ mkDerivation, base, bytestring, containers, dhall 73730 73651 , neat-interpolation, optparse-generic, shell-escape, text ··· 73805 73614 maintainers = with lib.maintainers; [ Gabriel439 ]; 73806 73615 }) {}; 73807 73616 73617 + "dhall-bash_1_0_37" = callPackage 73618 + ({ mkDerivation, base, bytestring, containers, dhall 73619 + , neat-interpolation, optparse-generic, shell-escape, text 73620 + }: 73621 + mkDerivation { 73622 + pname = "dhall-bash"; 73623 + version = "1.0.37"; 73624 + sha256 = "0gm6zamh8kgrc2d00cjf2ijb49ic3z6rlk0ngmig8hckmsy63w1d"; 73625 + isLibrary = true; 73626 + isExecutable = true; 73627 + libraryHaskellDepends = [ 73628 + base bytestring containers dhall neat-interpolation shell-escape 73629 + text 73630 + ]; 73631 + executableHaskellDepends = [ 73632 + base bytestring dhall optparse-generic text 73633 + ]; 73634 + description = "Compile Dhall to Bash"; 73635 + license = lib.licenses.bsd3; 73636 + hydraPlatforms = lib.platforms.none; 73637 + maintainers = with lib.maintainers; [ Gabriel439 ]; 73638 + }) {}; 73639 + 73808 73640 "dhall-check" = callPackage 73809 73641 ({ mkDerivation, base, containers, dhall, directory, filepath 73810 73642 , fsnotify, text, trifecta ··· 73849 73635 73850 73636 "dhall-docs" = callPackage 73851 73637 ({ mkDerivation, base, bytestring, containers, cryptonite, dhall 73852 - , directory, doctest, file-embed, filepath, foldl, lens-family-core 73853 - , lucid, megaparsec, memory, mmark, mtl, optparse-applicative, path 73854 - , path-io, pretty, prettyprinter, tasty, tasty-hunit, tasty-silver 73855 - , text, transformers, turtle 73638 + , directory, doctest, file-embed, filepath, foldl, hashable 73639 + , lens-family-core, lucid, megaparsec, memory, mmark, mtl 73640 + , optparse-applicative, path, path-io, pretty, prettyprinter, tasty 73641 + , tasty-hunit, tasty-silver, text, transformers, turtle 73856 73642 }: 73857 73643 mkDerivation { 73858 73644 pname = "dhall-docs"; 73859 - version = "1.0.5"; 73860 - sha256 = "00s1vhwilnr6hvv56w98kc1md08lw6v80v8a7yhwrmg9qggwdc12"; 73861 - revision = "1"; 73862 - editedCabalFile = "0y8a02jxz5cap0q4b2106ck4av7haxqlv5vjhm0nmrsq10cl4nss"; 73645 + version = "1.0.6"; 73646 + sha256 = "004n8kh8riw67aqwp6z9199jwv2c9r1dbkg92s71vd9zc04wxljv"; 73863 73647 isLibrary = true; 73864 73648 isExecutable = true; 73865 73649 enableSeparateDataOutput = true; ··· 73869 73657 executableHaskellDepends = [ base dhall ]; 73870 73658 testHaskellDepends = [ 73871 73659 base bytestring containers dhall directory doctest filepath foldl 73872 - path path-io pretty tasty tasty-hunit tasty-silver text turtle 73660 + hashable path path-io pretty tasty tasty-hunit tasty-silver text 73661 + turtle 73873 73662 ]; 73874 73663 description = "Generate HTML docs from a dhall package"; 73875 73664 license = lib.licenses.bsd3; ··· 73942 73729 maintainers = with lib.maintainers; [ Gabriel439 ]; 73943 73730 }) {}; 73944 73731 73732 + "dhall-json_1_7_7" = callPackage 73733 + ({ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal 73734 + , base, bytestring, containers, dhall, exceptions, filepath 73735 + , lens-family-core, optparse-applicative, prettyprinter 73736 + , prettyprinter-ansi-terminal, scientific, tasty, tasty-hunit 73737 + , tasty-silver, text, unordered-containers, vector 73738 + }: 73739 + mkDerivation { 73740 + pname = "dhall-json"; 73741 + version = "1.7.7"; 73742 + sha256 = "163600cr04a5c9gjqg0846wwjp4wl61yhfg80zvsadkaq5zfzlll"; 73743 + isLibrary = true; 73744 + isExecutable = true; 73745 + libraryHaskellDepends = [ 73746 + aeson aeson-pretty aeson-yaml base bytestring containers dhall 73747 + exceptions filepath lens-family-core optparse-applicative 73748 + prettyprinter scientific text unordered-containers vector 73749 + ]; 73750 + executableHaskellDepends = [ 73751 + aeson aeson-pretty ansi-terminal base bytestring dhall exceptions 73752 + optparse-applicative prettyprinter prettyprinter-ansi-terminal text 73753 + ]; 73754 + testHaskellDepends = [ 73755 + aeson base bytestring dhall tasty tasty-hunit tasty-silver text 73756 + ]; 73757 + description = "Convert between Dhall and JSON or YAML"; 73758 + license = lib.licenses.bsd3; 73759 + hydraPlatforms = lib.platforms.none; 73760 + maintainers = with lib.maintainers; [ Gabriel439 ]; 73761 + }) {}; 73762 + 73945 73763 "dhall-lex" = callPackage 73946 73764 ({ mkDerivation, alex, array, base, bytestring, criterion, deepseq 73947 73765 , hspec, hspec-dirstream, scientific ··· 74024 73780 maintainers = with lib.maintainers; [ Gabriel439 ]; 74025 73781 }) {}; 74026 73782 73783 + "dhall-lsp-server_1_0_15" = callPackage 73784 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers 73785 + , data-default, dhall, dhall-json, directory, doctest, filepath 73786 + , haskell-lsp, haskell-lsp-types, hslogger, hspec, lens, lsp-test 73787 + , megaparsec, mtl, network-uri, optparse-applicative, prettyprinter 73788 + , QuickCheck, rope-utf16-splay, tasty, tasty-hspec, text 73789 + , transformers, unordered-containers, uri-encode 73790 + }: 73791 + mkDerivation { 73792 + pname = "dhall-lsp-server"; 73793 + version = "1.0.15"; 73794 + sha256 = "0bq6k92g22vdym9zyj95gx052yyzvgr1jv7yszlcj8p5angbxdqy"; 73795 + isLibrary = true; 73796 + isExecutable = true; 73797 + libraryHaskellDepends = [ 73798 + aeson aeson-pretty base bytestring containers data-default dhall 73799 + dhall-json directory filepath haskell-lsp hslogger lens megaparsec 73800 + mtl network-uri prettyprinter rope-utf16-splay text transformers 73801 + unordered-containers uri-encode 73802 + ]; 73803 + executableHaskellDepends = [ base optparse-applicative ]; 73804 + testHaskellDepends = [ 73805 + base directory doctest filepath haskell-lsp-types hspec lsp-test 73806 + QuickCheck tasty tasty-hspec text 73807 + ]; 73808 + description = "Language Server Protocol (LSP) server for Dhall"; 73809 + license = lib.licenses.mit; 73810 + hydraPlatforms = lib.platforms.none; 73811 + maintainers = with lib.maintainers; [ Gabriel439 ]; 73812 + }) {}; 73813 + 74027 73814 "dhall-nix" = callPackage 74028 73815 ({ mkDerivation, base, containers, data-fix, dhall, hnix 74029 73816 , lens-family-core, neat-interpolation, optparse-generic, text ··· 74079 73804 maintainers = with lib.maintainers; [ Gabriel439 ]; 74080 73805 }) {}; 74081 73806 73807 + "dhall-nix_1_1_21" = callPackage 73808 + ({ mkDerivation, base, containers, data-fix, dhall, hnix 73809 + , lens-family-core, neat-interpolation, optparse-generic, text 73810 + }: 73811 + mkDerivation { 73812 + pname = "dhall-nix"; 73813 + version = "1.1.21"; 73814 + sha256 = "0yqqjq8yqswcaiqrrgx37rlwvxgciwhvird34hsaq4fr3kbjgv4h"; 73815 + isLibrary = true; 73816 + isExecutable = true; 73817 + libraryHaskellDepends = [ 73818 + base containers data-fix dhall hnix lens-family-core 73819 + neat-interpolation text 73820 + ]; 73821 + executableHaskellDepends = [ 73822 + base dhall hnix optparse-generic text 73823 + ]; 73824 + description = "Dhall to Nix compiler"; 73825 + license = lib.licenses.bsd3; 73826 + hydraPlatforms = lib.platforms.none; 73827 + maintainers = with lib.maintainers; [ Gabriel439 ]; 73828 + }) {}; 73829 + 74082 73830 "dhall-nixpkgs" = callPackage 74083 73831 ({ mkDerivation, aeson, base, data-fix, dhall, foldl, hnix 74084 73832 , lens-family-core, megaparsec, mmorph, neat-interpolation ··· 74110 73812 }: 74111 73813 mkDerivation { 74112 73814 pname = "dhall-nixpkgs"; 74113 - version = "1.0.4"; 74114 - sha256 = "0yr7z17dvmr1zipk29fmzm46myxxsz514587n6a7h00c56dyvnc3"; 74115 - revision = "1"; 74116 - editedCabalFile = "1y08jxg51sbxx0i7ra45ii2v81plzf4hssmwlrw35l8n5gib1vcg"; 73815 + version = "1.0.5"; 73816 + sha256 = "10gvkw2rdmz7pgr9675xqnhkgi8pwjid77mwsriid81d703z2b6j"; 74117 73817 isLibrary = false; 74118 73818 isExecutable = true; 74119 73819 executableHaskellDepends = [ ··· 74149 73853 maintainers = with lib.maintainers; [ Gabriel439 ]; 74150 73854 }) {}; 74151 73855 73856 + "dhall-openapi_1_0_1" = callPackage 73857 + ({ mkDerivation, aeson, base, containers, dhall, directory 73858 + , filepath, megaparsec, optparse-applicative, parser-combinators 73859 + , prettyprinter, scientific, sort, text, vector 73860 + }: 73861 + mkDerivation { 73862 + pname = "dhall-openapi"; 73863 + version = "1.0.1"; 73864 + sha256 = "1n34amb97dqpvz0s3mhqb46gjq1ix1gicsq700z6v6y7xssrgbz2"; 73865 + isLibrary = true; 73866 + isExecutable = true; 73867 + libraryHaskellDepends = [ 73868 + aeson base containers dhall prettyprinter scientific sort text 73869 + vector 73870 + ]; 73871 + executableHaskellDepends = [ 73872 + aeson base containers dhall directory filepath megaparsec 73873 + optparse-applicative parser-combinators prettyprinter sort text 73874 + vector 73875 + ]; 73876 + description = "Convert an OpenAPI specification to a Dhall package"; 73877 + license = lib.licenses.bsd3; 73878 + hydraPlatforms = lib.platforms.none; 73879 + maintainers = with lib.maintainers; [ Gabriel439 ]; 73880 + }) {}; 73881 + 74152 73882 "dhall-recursive-adt" = callPackage 74153 73883 ({ mkDerivation, base, data-fix, dhall, either, hedgehog 74154 - , neat-interpolation, recursion-schemes, tasty, tasty-hedgehog 74155 - , tasty-hunit 73884 + , recursion-schemes, tasty, tasty-hedgehog, tasty-hunit, yasi 74156 73885 }: 74157 73886 mkDerivation { 74158 73887 pname = "dhall-recursive-adt"; 74159 - version = "0.1.0.0"; 74160 - sha256 = "01wk6xsakbhsx14s59f0rj32mlccgxgc29a3n5d3b923yd5w64zm"; 74161 - revision = "1"; 74162 - editedCabalFile = "0gj4dsl70wjn4bpi62dqcqc9y9wwj2c9w6rai620ps4ykg36pygb"; 73888 + version = "0.1.0.1"; 73889 + sha256 = "09s3m86vflj5im2walab8d0wpvihsvxc5mzy55m10pfzr3gxsd11"; 74163 73890 libraryHaskellDepends = [ base data-fix dhall recursion-schemes ]; 74164 73891 testHaskellDepends = [ 74165 - base dhall either hedgehog neat-interpolation recursion-schemes 74166 - tasty tasty-hedgehog tasty-hunit 73892 + base dhall either hedgehog recursion-schemes tasty tasty-hedgehog 73893 + tasty-hunit yasi 74167 73894 ]; 74168 73895 description = "Convert recursive ADTs from and to Dhall"; 74169 73896 license = lib.licenses.cc0; ··· 74271 73952 maintainers = with lib.maintainers; [ Gabriel439 ]; 74272 73953 }) {}; 74273 73954 73955 + "dhall-yaml_1_2_7" = callPackage 73956 + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, dhall 73957 + , dhall-json, exceptions, HsYAML, HsYAML-aeson 73958 + , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal 73959 + , tasty, tasty-expected-failure, tasty-hunit, text, vector 73960 + }: 73961 + mkDerivation { 73962 + pname = "dhall-yaml"; 73963 + version = "1.2.7"; 73964 + sha256 = "17fpxjlhmjnra92l8iv4k40bxbx1plmhkijf6axxkjyhfh0ax303"; 73965 + isLibrary = true; 73966 + isExecutable = true; 73967 + libraryHaskellDepends = [ 73968 + aeson base bytestring dhall dhall-json HsYAML HsYAML-aeson 73969 + optparse-applicative text vector 73970 + ]; 73971 + executableHaskellDepends = [ 73972 + aeson ansi-terminal base bytestring dhall dhall-json exceptions 73973 + optparse-applicative prettyprinter prettyprinter-ansi-terminal text 73974 + ]; 73975 + testHaskellDepends = [ 73976 + base bytestring dhall dhall-json tasty tasty-expected-failure 73977 + tasty-hunit text 73978 + ]; 73979 + description = "Convert between Dhall and YAML"; 73980 + license = lib.licenses.gpl3Only; 73981 + hydraPlatforms = lib.platforms.none; 73982 + maintainers = with lib.maintainers; [ Gabriel439 ]; 73983 + }) {}; 73984 + 74274 73985 "dhcp-lease-parser" = callPackage 74275 73986 ({ mkDerivation, attoparsec, base, bytestring, chronos, ip, tasty 74276 73987 , tasty-hunit, text ··· 74318 73969 description = "Parse a DHCP lease file"; 74319 73970 license = lib.licenses.bsd3; 74320 73971 hydraPlatforms = lib.platforms.none; 73972 + broken = true; 74321 73973 }) {}; 74322 73974 74323 73975 "dhrun" = callPackage ··· 74825 74475 pname = "diagrams-lib"; 74826 74476 version = "1.4.4"; 74827 74477 sha256 = "09np7kj8si8kcb854f95a0cq392mgbxif8lnazbpfsa1k87d9vzy"; 74478 + revision = "1"; 74479 + editedCabalFile = "1c7kpnbvxwdcmk5znqyig3l6s986ppj168ck5v72dfbp8cjvwa8i"; 74828 74480 libraryHaskellDepends = [ 74829 74481 active adjunctions array base bytestring cereal colour containers 74830 74482 data-default-class diagrams-core diagrams-solve directory ··· 76429 76077 }: 76430 76078 mkDerivation { 76431 76079 pname = "discord-haskell"; 76432 - version = "1.8.7"; 76433 - sha256 = "0nby3267nhdgc8692k5c28yy0a2bzvl84dn54sg25j6nchzs991g"; 76080 + version = "1.8.8"; 76081 + sha256 = "0fvj9m59gsdicl061xlkqq8hrwsksyrysjdh5ijbv8gaql99k17v"; 76434 76082 isLibrary = true; 76435 76083 isExecutable = true; 76436 76084 libraryHaskellDepends = [ ··· 84805 84453 pname = "equational-reasoning"; 84806 84454 version = "0.7.0.0"; 84807 84455 sha256 = "0l6gyq43byh6cy2pblb9a4qjy7w5k9maa97c076dxlsf53myj01h"; 84808 - revision = "1"; 84809 - editedCabalFile = "1a8dw9givg0przqrm33kkmff9r0fdv1ih6ik3dqa99ww71cc8q66"; 84456 + revision = "2"; 84457 + editedCabalFile = "0zlcd62kapcybli65w47mb1kg5fnyzgdnf7kr8y8qgslg0lidzpp"; 84810 84458 libraryHaskellDepends = [ 84811 84459 base containers template-haskell th-desugar void 84812 84460 ]; ··· 87504 87152 pname = "exp-extended"; 87505 87153 version = "0.2"; 87506 87154 sha256 = "14bz6wfzd8b51s09d2psg5hv5zq4f8lplgx0yvd3n0z704x3mcy6"; 87155 + revision = "1"; 87156 + editedCabalFile = "1kzrlr1j6xfm8r9j1iz9vp2c7x72gmmqzmki1ypxaawdzibyfysl"; 87507 87157 libraryHaskellDepends = [ base ]; 87508 87158 description = "floating point with extended exponent range"; 87509 87159 license = lib.licenses.bsd3; ··· 87820 87466 benchmarkHaskellDepends = [ base leancheck ]; 87821 87467 description = "Dynamically-typed expressions involving applications and variables"; 87822 87468 license = lib.licenses.bsd3; 87469 + }) {}; 87470 + 87471 + "express_0_1_14" = callPackage 87472 + ({ mkDerivation, base, leancheck, template-haskell }: 87473 + mkDerivation { 87474 + pname = "express"; 87475 + version = "0.1.14"; 87476 + sha256 = "19sjh12sjpxhk7wg2b3abga7bpk6ckry19zi58imqmy8xbh6ds39"; 87477 + libraryHaskellDepends = [ base template-haskell ]; 87478 + testHaskellDepends = [ base leancheck ]; 87479 + benchmarkHaskellDepends = [ base leancheck ]; 87480 + description = "Dynamically-typed expressions involving applications and variables"; 87481 + license = lib.licenses.bsd3; 87482 + hydraPlatforms = lib.platforms.none; 87823 87483 }) {}; 87824 87484 87825 87485 "expression-parser" = callPackage ··· 97351 96983 ]; 97352 96984 description = "GHC plugin to make stream fusion more predictable"; 97353 96985 license = lib.licenses.asl20; 96986 + }) {}; 96987 + 96988 + "fusion-plugin_0_2_3" = callPackage 96989 + ({ mkDerivation, base, containers, directory, filepath 96990 + , fusion-plugin-types, ghc, syb, time, transformers 96991 + }: 96992 + mkDerivation { 96993 + pname = "fusion-plugin"; 96994 + version = "0.2.3"; 96995 + sha256 = "1lklrd3afvm8fwd14yiavx5h8zxjkn2k2vqnxbqwcakcnljxrfyq"; 96996 + libraryHaskellDepends = [ 96997 + base containers directory filepath fusion-plugin-types ghc syb time 96998 + transformers 96999 + ]; 97000 + description = "GHC plugin to make stream fusion more predictable"; 97001 + license = lib.licenses.asl20; 97002 + hydraPlatforms = lib.platforms.none; 97354 97003 }) {}; 97355 97004 97356 97005 "fusion-plugin-types" = callPackage ··· 114135 113750 broken = true; 114136 113751 }) {}; 114137 113752 113753 + "hackage-db_2_1_0" = callPackage 113754 + ({ mkDerivation, aeson, base, bytestring, Cabal, containers 113755 + , directory, exceptions, filepath, tar, time, utf8-string 113756 + }: 113757 + mkDerivation { 113758 + pname = "hackage-db"; 113759 + version = "2.1.0"; 113760 + sha256 = "1vsc0lrbrb525frycqq0c5z846whymgcjl888gnlqd16nknbsn3l"; 113761 + revision = "1"; 113762 + editedCabalFile = "1h3x5a8xmqkkcd3h1m7z0il1vbsh2c77685y68zmyp21zb1y88hy"; 113763 + isLibrary = true; 113764 + isExecutable = true; 113765 + libraryHaskellDepends = [ 113766 + aeson base bytestring Cabal containers directory exceptions 113767 + filepath tar time utf8-string 113768 + ]; 113769 + description = "Access cabal-install's Hackage database via Data.Map"; 113770 + license = lib.licenses.bsd3; 113771 + hydraPlatforms = lib.platforms.none; 113772 + maintainers = with lib.maintainers; [ peti ]; 113773 + }) {}; 113774 + 114138 113775 "hackage-db" = callPackage 114139 113776 ({ mkDerivation, aeson, base, bytestring, Cabal, containers 114140 113777 , directory, exceptions, filepath, tar, time, utf8-string ··· 115354 114947 , parsec, process, QuickCheck, random, regex-tdfa, resourcet 115355 114948 , scientific, tagsoup, tasty, tasty-golden, tasty-hunit 115356 114949 , tasty-quickcheck, template-haskell, text, time 115357 - , time-locale-compat, unordered-containers, utillinux, vector, wai 114950 + , time-locale-compat, unordered-containers, util-linux, vector, wai 115358 114951 , wai-app-static, warp, yaml 115359 114952 }: 115360 114953 mkDerivation { ··· 115378 114971 base bytestring containers filepath QuickCheck tasty tasty-golden 115379 114972 tasty-hunit tasty-quickcheck text unordered-containers yaml 115380 114973 ]; 115381 - testToolDepends = [ utillinux ]; 114974 + testToolDepends = [ util-linux ]; 115382 114975 description = "A static website compiler library"; 115383 114976 license = lib.licenses.bsd3; 115384 114977 maintainers = with lib.maintainers; [ erictapen ]; 115385 - }) {inherit (pkgs) utillinux;}; 114978 + }) {inherit (pkgs) util-linux;}; 115386 114979 115387 114980 "hakyll-R" = callPackage 115388 114981 ({ mkDerivation, base, directory, filepath, hakyll, pandoc, process ··· 121400 120993 121401 120994 "hasklepias" = callPackage 121402 120995 ({ mkDerivation, aeson, base, bytestring, containers, flow, hspec 121403 - , interval-algebra, QuickCheck, safe, text, time 120996 + , interval-algebra, lens, lens-aeson, QuickCheck, safe, text, time 121404 120997 , unordered-containers, vector, witherable 121405 120998 }: 121406 120999 mkDerivation { 121407 121000 pname = "hasklepias"; 121408 - version = "0.7.1"; 121409 - sha256 = "1w6gs3n1g12sw2w72l04l27na3kgmyqsip8d53wpmslqwccr6blc"; 121001 + version = "0.8.3"; 121002 + sha256 = "01lq7q9gq7b5zi2bwlc6wpj914l660cl5wlvbznimhfnkr1aqrgm"; 121410 121003 libraryHaskellDepends = [ 121411 - aeson base bytestring containers flow interval-algebra QuickCheck 121412 - safe text time unordered-containers vector witherable 121004 + aeson base bytestring containers flow interval-algebra lens 121005 + lens-aeson QuickCheck safe text time unordered-containers vector 121006 + witherable 121413 121007 ]; 121414 121008 testHaskellDepends = [ 121415 - aeson base bytestring containers flow hspec interval-algebra 121009 + aeson base bytestring containers flow hspec interval-algebra lens 121416 121010 QuickCheck text time unordered-containers vector 121417 121011 ]; 121418 121012 description = "Define features from events"; ··· 128686 128278 license = lib.licenses.mit; 128687 128279 hydraPlatforms = lib.platforms.none; 128688 128280 broken = true; 128281 + }) {}; 128282 + 128283 + "hindley-milner-type-check" = callPackage 128284 + ({ mkDerivation, base, containers, data-fix, deepseq 128285 + , deriving-compat, dlist, mtl, prettyprinter, tasty, tasty-hunit 128286 + , text 128287 + }: 128288 + mkDerivation { 128289 + pname = "hindley-milner-type-check"; 128290 + version = "0.1.0.0"; 128291 + sha256 = "0ym8jchjx6n9i6n76b852s511n0vafz8ixr22zx7lrzqi9ax4ayz"; 128292 + libraryHaskellDepends = [ 128293 + base containers data-fix deepseq deriving-compat dlist mtl 128294 + prettyprinter text 128295 + ]; 128296 + testHaskellDepends = [ 128297 + base containers data-fix prettyprinter tasty tasty-hunit text 128298 + ]; 128299 + description = "Type inference for Hindley-Milner based languages"; 128300 + license = lib.licenses.mit; 128689 128301 }) {}; 128690 128302 128691 128303 "hinduce-associations-apriori" = callPackage ··· 136396 135968 hydraPlatforms = lib.platforms.none; 136397 135969 broken = true; 136398 135970 }) {}; 135971 + 135972 + "hscdio" = callPackage 135973 + ({ mkDerivation, base, base-compat, bitwise, bytestring, c2hs, cdio 135974 + , containers, directory, hedgehog, hedgehog-classes, HUnit, mtl 135975 + , text, vector 135976 + }: 135977 + mkDerivation { 135978 + pname = "hscdio"; 135979 + version = "0.1.0.0"; 135980 + sha256 = "0lwyy8x5zrdl0mg7siclagic7xg2iywapwkdk8kcz3ksdsir7xpd"; 135981 + isLibrary = true; 135982 + isExecutable = true; 135983 + libraryHaskellDepends = [ 135984 + base bitwise bytestring containers mtl text vector 135985 + ]; 135986 + librarySystemDepends = [ cdio ]; 135987 + libraryToolDepends = [ c2hs ]; 135988 + testHaskellDepends = [ 135989 + base base-compat bytestring directory hedgehog hedgehog-classes 135990 + HUnit text 135991 + ]; 135992 + description = "Haskell bindings to the libcdio disc-reading library"; 135993 + license = lib.licenses.gpl3Plus; 135994 + hydraPlatforms = lib.platforms.none; 135995 + broken = true; 135996 + }) {cdio = null;}; 136399 135997 136400 135998 "hscharm" = callPackage 136401 135999 ({ mkDerivation, base, random, random-shuffle }: ··· 149626 149172 ]; 149627 149173 description = "Library for IP and MAC addresses"; 149628 149174 license = lib.licenses.bsd3; 149629 - hydraPlatforms = lib.platforms.none; 149630 149175 }) {}; 149631 149176 149632 149177 "ip-quoter" = callPackage ··· 150243 149790 description = "RFC-based resource identifier library"; 150244 149791 license = lib.licenses.mit; 150245 149792 hydraPlatforms = lib.platforms.none; 149793 + broken = true; 150246 149794 }) {}; 150247 149795 150248 149796 "iridium" = callPackage ··· 153420 152966 description = "High-performance JSON parser and encoder"; 153421 152967 license = lib.licenses.bsd3; 153422 152968 hydraPlatforms = lib.platforms.none; 152969 + broken = true; 153423 152970 }) {}; 153424 152971 153425 152972 "json-to-haskell" = callPackage ··· 160414 159959 license = lib.licenses.bsd3; 160415 159960 }) {}; 160416 159961 159962 + "leancheck_0_9_10" = callPackage 159963 + ({ mkDerivation, base, template-haskell }: 159964 + mkDerivation { 159965 + pname = "leancheck"; 159966 + version = "0.9.10"; 159967 + sha256 = "0d35w3y309fw3bkaj6fxyl67k4cp32mp003l44m3m2z2fvq08cdn"; 159968 + libraryHaskellDepends = [ base template-haskell ]; 159969 + testHaskellDepends = [ base ]; 159970 + description = "Enumerative property-based testing"; 159971 + license = lib.licenses.bsd3; 159972 + hydraPlatforms = lib.platforms.none; 159973 + }) {}; 159974 + 160417 159975 "leancheck-enum-instances" = callPackage 160418 159976 ({ mkDerivation, base, enum-types, leancheck }: 160419 159977 mkDerivation { ··· 161417 160949 }: 161418 160950 mkDerivation { 161419 160951 pname = "lentil"; 161420 - version = "1.5.1.0"; 161421 - sha256 = "03h7fk37rrxpnxfpckpfi5k3v7ch4v5vn601m9lj9shbs26h1cdx"; 160952 + version = "1.5.2.0"; 160953 + sha256 = "0mkr8ng7i4cli8wscqy2l8112nr7wdg8dh32li354fvahmv6i4si"; 161422 160954 isLibrary = false; 161423 160955 isExecutable = true; 161424 160956 executableHaskellDepends = [ ··· 161847 161379 "libarchive" = callPackage 161848 161380 ({ mkDerivation, base, bytestring, c2hs, Cabal, chs-cabal 161849 161381 , composition-prelude, cpphs, criterion, deepseq, dir-traverse 161850 - , directory, dlist, filepath, hspec, libarchive, mtl 161382 + , directory, dlist, filepath, hspec, hspec-core, libarchive, mtl 161851 161383 , pathological-bytestrings, tar, tar-conduit, temporary 161852 161384 , unix-compat 161853 161385 }: 161854 161386 mkDerivation { 161855 161387 pname = "libarchive"; 161856 - version = "3.0.2.1"; 161857 - sha256 = "16h5pw49g9nc4aq7g8hwj1bq1raf1jas09xcsk99sylssvf2yf43"; 161388 + version = "3.0.2.2"; 161389 + sha256 = "1i3zrby1pmlm7dwv1xra9xmlv4a30cgmbwz5zygdyw1mwy4y9wnh"; 161858 161390 setupHaskellDepends = [ base Cabal chs-cabal ]; 161859 161391 libraryHaskellDepends = [ 161860 161392 base bytestring composition-prelude deepseq dlist filepath mtl 161861 161393 unix-compat 161862 161394 ]; 161863 161395 libraryPkgconfigDepends = [ libarchive ]; 161864 - libraryToolDepends = [ c2hs ]; 161396 + libraryToolDepends = [ c2hs cpphs ]; 161865 161397 testHaskellDepends = [ 161866 161398 base bytestring composition-prelude dir-traverse directory filepath 161867 - hspec mtl pathological-bytestrings temporary 161399 + hspec hspec-core mtl pathological-bytestrings temporary 161868 161400 ]; 161869 161401 testToolDepends = [ cpphs ]; 161870 161402 benchmarkHaskellDepends = [ ··· 163144 162676 license = lib.licenses.bsd3; 163145 162677 hydraPlatforms = lib.platforms.none; 163146 162678 broken = true; 162679 + }) {}; 162680 + 162681 + "lifx-lan" = callPackage 162682 + ({ mkDerivation, base, binary, bytestring, composition, containers 162683 + , extra, monad-loops, mtl, network, random, safe, text, time 162684 + }: 162685 + mkDerivation { 162686 + pname = "lifx-lan"; 162687 + version = "0.1.0.2"; 162688 + sha256 = "0kk89h1jxz7djxcxz4scwk33r9y1raq8mskypcyx93hzs0f1b4y1"; 162689 + libraryHaskellDepends = [ 162690 + base binary bytestring composition containers extra monad-loops mtl 162691 + network random safe text time 162692 + ]; 162693 + description = "LIFX LAN API"; 162694 + license = lib.licenses.bsd3; 163147 162695 }) {}; 163148 162696 163149 162697 "ligature" = callPackage ··· 165229 164745 license = lib.licenses.mit; 165230 164746 }) {}; 165231 164747 164748 + "literatex_0_1_0_1" = callPackage 164749 + ({ mkDerivation, ansi-wl-pprint, base, bytestring, conduit 164750 + , filepath, optparse-applicative, tasty, tasty-hunit, text, ttc 164751 + , unliftio 164752 + }: 164753 + mkDerivation { 164754 + pname = "literatex"; 164755 + version = "0.1.0.1"; 164756 + sha256 = "0nig3k78h86b80hsfqm04g9jc24lsicbw2pc3wnvxfs3nhkmhl0b"; 164757 + isLibrary = true; 164758 + isExecutable = true; 164759 + libraryHaskellDepends = [ 164760 + base bytestring conduit text ttc unliftio 164761 + ]; 164762 + executableHaskellDepends = [ 164763 + ansi-wl-pprint base optparse-applicative ttc 164764 + ]; 164765 + testHaskellDepends = [ 164766 + base bytestring filepath tasty tasty-hunit text ttc unliftio 164767 + ]; 164768 + description = "transform literate source code to Markdown"; 164769 + license = lib.licenses.mit; 164770 + hydraPlatforms = lib.platforms.none; 164771 + }) {}; 164772 + 165232 164773 "little-earley" = callPackage 165233 164774 ({ mkDerivation, base, containers, mtl, tasty, tasty-hunit }: 165234 164775 mkDerivation { ··· 165267 164758 }) {}; 165268 164759 165269 164760 "little-logger" = callPackage 165270 - ({ mkDerivation, base, co-log, co-log-core, microlens, mtl, tasty 165271 - , tasty-hunit, text, unliftio-core 164761 + ({ mkDerivation, base, co-log, co-log-core, directory, microlens 164762 + , mtl, tasty, tasty-hunit, temporary, text, unliftio-core 165272 164763 }: 165273 164764 mkDerivation { 165274 164765 pname = "little-logger"; 165275 - version = "0.3.1"; 165276 - sha256 = "0iqnidlv7r2kw6764aq3dlvxbmvm1c7qk8jkgbhbpm5g07k97c68"; 164766 + version = "0.3.2"; 164767 + sha256 = "0pwywpxdladsaprdzw856njcn42js7l73f361m0w3gd86xprwm8y"; 165277 164768 libraryHaskellDepends = [ 165278 164769 base co-log co-log-core microlens mtl text unliftio-core 165279 164770 ]; 165280 164771 testHaskellDepends = [ 165281 - base co-log co-log-core microlens mtl tasty tasty-hunit text 165282 - unliftio-core 164772 + base co-log co-log-core directory microlens mtl tasty tasty-hunit 164773 + temporary text unliftio-core 165283 164774 ]; 165284 164775 description = "Basic logging based on co-log"; 165285 164776 license = lib.licenses.bsd3; ··· 167146 166637 pname = "long-double"; 167147 166638 version = "0.1.1"; 167148 166639 sha256 = "0byrpngsh1a8w9n5nbw9lfmj4nmh33avzfh883zw9ya10pfa7x3g"; 166640 + revision = "1"; 166641 + editedCabalFile = "0831x773ypp0lv14cgh6vr7rzbyvrjsvw99c40z41fr8bhdw2x4j"; 167149 166642 libraryHaskellDepends = [ base integer-gmp ]; 167150 166643 description = "FFI bindings for C long double"; 167151 166644 license = lib.licenses.bsd3; ··· 170617 170106 ]; 170618 170107 description = "Abstraction for HTML-embedded content"; 170619 170108 license = lib.licenses.bsd3; 170620 - hydraPlatforms = lib.platforms.none; 170621 170109 }) {}; 170622 170110 170623 170111 "markup-preview" = callPackage ··· 170868 170358 ]; 170869 170359 description = "Massiv (Массив) is an Array Library"; 170870 170360 license = lib.licenses.bsd3; 170361 + }) {}; 170362 + 170363 + "massiv_0_6_1_0" = callPackage 170364 + ({ mkDerivation, base, bytestring, deepseq, doctest, exceptions 170365 + , mersenne-random-pure64, primitive, QuickCheck, random, scheduler 170366 + , splitmix, template-haskell, unliftio-core, vector 170367 + }: 170368 + mkDerivation { 170369 + pname = "massiv"; 170370 + version = "0.6.1.0"; 170371 + sha256 = "0j3br93kxxyb1q5mdf440f8l8d2lc0gi9vhc3h3ri94ls4ix099v"; 170372 + libraryHaskellDepends = [ 170373 + base bytestring deepseq exceptions primitive scheduler 170374 + unliftio-core vector 170375 + ]; 170376 + testHaskellDepends = [ 170377 + base doctest mersenne-random-pure64 QuickCheck random splitmix 170378 + template-haskell 170379 + ]; 170380 + description = "Massiv (Массив) is an Array Library"; 170381 + license = lib.licenses.bsd3; 170382 + hydraPlatforms = lib.platforms.none; 170871 170383 }) {}; 170872 170384 170873 170385 "massiv-io" = callPackage ··· 179598 179066 }: 179599 179067 mkDerivation { 179600 179068 pname = "mp"; 179601 - version = "1.1.0"; 179602 - sha256 = "1msy52c1702q16pmbzc69iyj7bj9xdh4c72d15sigblh9hwvipmm"; 179069 + version = "1.2.0"; 179070 + sha256 = "0jn987fg2kah3m39rdgnkmqy940ks2c8f2ld8lrj8k2zyjbgls5b"; 179603 179071 isLibrary = false; 179604 179072 isExecutable = true; 179605 179073 enableSeparateDataOutput = true; ··· 179884 179352 testHaskellDepends = [ base HUnit ip text ]; 179885 179353 description = "A Multipath TCP path manager"; 179886 179354 license = lib.licenses.gpl3Only; 179355 + platforms = [ 179356 + "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 179357 + ]; 179887 179358 hydraPlatforms = lib.platforms.none; 179359 + broken = true; 179888 179360 }) {}; 179889 179361 179890 179362 "mpvguihs" = callPackage ··· 180970 180434 }) {}; 180971 180435 180972 180436 "multi-except" = callPackage 180973 - ({ mkDerivation, base, dlist, hspec, semigroupoids }: 180437 + ({ mkDerivation, base, dlist-nonempty, hspec, semigroupoids }: 180974 180438 mkDerivation { 180975 180439 pname = "multi-except"; 180976 - version = "0.2.1.0"; 180977 - sha256 = "0ai19lk32wbpsmwxig5wzc7iqi81h0mxpykrmfw05vv4zwjqiqfz"; 180978 - libraryHaskellDepends = [ base dlist semigroupoids ]; 180440 + version = "0.3.0.0"; 180441 + sha256 = "1zk8cihmv5dimdhld0h0h622zsvn71rdbhslj4b8dh3dv4qdfji0"; 180442 + libraryHaskellDepends = [ base dlist-nonempty semigroupoids ]; 180979 180443 testHaskellDepends = [ base hspec semigroupoids ]; 180980 180444 description = "Multiple Exceptions"; 180981 180445 license = lib.licenses.mit; ··· 182705 182169 }) {}; 182706 182170 182707 182171 "mysql" = callPackage 182708 - ({ mkDerivation, base, bytestring, Cabal, containers, hspec, mysql 182172 + ({ mkDerivation, base, bytestring, Cabal, containers, hspec 182173 + , libmysqlclient 182709 182174 }: 182710 182175 mkDerivation { 182711 182176 pname = "mysql"; ··· 182714 182177 sha256 = "16m8hv9yy2nf4jwgqg6n9z53n2pzskbc3gwbp2i3kgff8wsmf8sd"; 182715 182178 setupHaskellDepends = [ base Cabal ]; 182716 182179 libraryHaskellDepends = [ base bytestring containers ]; 182717 - librarySystemDepends = [ mysql ]; 182180 + librarySystemDepends = [ libmysqlclient ]; 182718 182181 testHaskellDepends = [ base bytestring hspec ]; 182719 182182 description = "A low-level MySQL client library"; 182720 182183 license = lib.licenses.bsd3; 182721 - }) {inherit (pkgs) mysql;}; 182184 + }) {inherit (pkgs) libmysqlclient;}; 182722 182185 182723 182186 "mysql-effect" = callPackage 182724 182187 ({ mkDerivation, base, bytestring, extensible-effects, mysql ··· 191752 191215 license = lib.licenses.asl20; 191753 191216 }) {}; 191754 191217 191218 + "opentelemetry_0_7_0" = callPackage 191219 + ({ mkDerivation, base, bytestring, exceptions, ghc-trace-events 191220 + , hashable 191221 + }: 191222 + mkDerivation { 191223 + pname = "opentelemetry"; 191224 + version = "0.7.0"; 191225 + sha256 = "10k9if33ydjc099mgjvgglp6fcmrz0zxpv6khwkhra6lcz35mylv"; 191226 + libraryHaskellDepends = [ 191227 + base bytestring exceptions ghc-trace-events hashable 191228 + ]; 191229 + license = lib.licenses.asl20; 191230 + hydraPlatforms = lib.platforms.none; 191231 + }) {}; 191232 + 191755 191233 "opentelemetry-extra" = callPackage 191756 191234 ({ mkDerivation, aeson, async, base, binary, bytestring, clock 191757 191235 , containers, directory, exceptions, filepath, gauge ··· 191801 191249 testToolDepends = [ tasty-discover ]; 191802 191250 benchmarkHaskellDepends = [ base gauge opentelemetry ]; 191803 191251 license = lib.licenses.asl20; 191252 + }) {}; 191253 + 191254 + "opentelemetry-extra_0_7_0" = callPackage 191255 + ({ mkDerivation, async, base, binary, bytestring, clock, containers 191256 + , directory, exceptions, filepath, generic-arbitrary, ghc-events 191257 + , hashable, hashtables, http-client, http-client-tls, http-types 191258 + , hvega, jsonifier, opentelemetry, process, QuickCheck 191259 + , quickcheck-instances, random, scientific, splitmix, stm, tasty 191260 + , tasty-bench, tasty-discover, tasty-hunit, tasty-quickcheck, text 191261 + , text-show, typed-process, unordered-containers 191262 + }: 191263 + mkDerivation { 191264 + pname = "opentelemetry-extra"; 191265 + version = "0.7.0"; 191266 + sha256 = "11lwhm3rpajmch7kjb4qwngram5ka8fbd3c0mxszlf4a9dlqag32"; 191267 + isLibrary = true; 191268 + isExecutable = true; 191269 + libraryHaskellDepends = [ 191270 + async base binary bytestring clock containers directory exceptions 191271 + filepath ghc-events hashable http-client http-client-tls http-types 191272 + jsonifier opentelemetry random scientific splitmix stm text 191273 + text-show unordered-containers 191274 + ]; 191275 + executableHaskellDepends = [ 191276 + async base bytestring clock containers directory exceptions 191277 + filepath hashtables http-client http-client-tls hvega opentelemetry 191278 + process text typed-process 191279 + ]; 191280 + testHaskellDepends = [ 191281 + base bytestring generic-arbitrary ghc-events hashable opentelemetry 191282 + QuickCheck quickcheck-instances splitmix tasty tasty-discover 191283 + tasty-hunit tasty-quickcheck text text-show unordered-containers 191284 + ]; 191285 + testToolDepends = [ tasty-discover ]; 191286 + benchmarkHaskellDepends = [ base opentelemetry tasty-bench ]; 191287 + license = lib.licenses.asl20; 191288 + hydraPlatforms = lib.platforms.none; 191804 191289 }) {}; 191805 191290 191806 191291 "opentelemetry-http-client" = callPackage ··· 191881 191292 license = lib.licenses.asl20; 191882 191293 }) {}; 191883 191294 191295 + "opentelemetry-lightstep_0_7_0" = callPackage 191296 + ({ mkDerivation, async, base, bytestring, clock, containers 191297 + , exceptions, filepath, ghc-events, http-client, http-client-tls 191298 + , http-types, network, opentelemetry, opentelemetry-extra 191299 + , scientific, splitmix, stm, text, typed-process 191300 + , unordered-containers 191301 + }: 191302 + mkDerivation { 191303 + pname = "opentelemetry-lightstep"; 191304 + version = "0.7.0"; 191305 + sha256 = "1yd6gzhwwmjjh41ipz2kifzpn7hha9nli3war2rqdjvhj349lrw8"; 191306 + isLibrary = true; 191307 + isExecutable = true; 191308 + libraryHaskellDepends = [ 191309 + async base bytestring exceptions http-client http-client-tls 191310 + http-types network opentelemetry opentelemetry-extra scientific stm 191311 + text unordered-containers 191312 + ]; 191313 + executableHaskellDepends = [ 191314 + async base bytestring clock containers exceptions filepath 191315 + ghc-events http-client http-types opentelemetry opentelemetry-extra 191316 + splitmix text typed-process unordered-containers 191317 + ]; 191318 + license = lib.licenses.asl20; 191319 + hydraPlatforms = lib.platforms.none; 191320 + }) {}; 191321 + 191884 191322 "opentelemetry-wai" = callPackage 191885 191323 ({ mkDerivation, base, bytestring, http-types, opentelemetry, text 191886 191324 , wai ··· 191920 191304 base bytestring http-types opentelemetry text wai 191921 191305 ]; 191922 191306 license = lib.licenses.asl20; 191307 + }) {}; 191308 + 191309 + "opentelemetry-wai_0_7_0" = callPackage 191310 + ({ mkDerivation, base, bytestring, http-types, opentelemetry, text 191311 + , wai 191312 + }: 191313 + mkDerivation { 191314 + pname = "opentelemetry-wai"; 191315 + version = "0.7.0"; 191316 + sha256 = "09mh8kfh49vx2gascwwmzs4s649sm5i90nsifp76kjvg1nvqhd1m"; 191317 + libraryHaskellDepends = [ 191318 + base bytestring http-types opentelemetry text wai 191319 + ]; 191320 + license = lib.licenses.asl20; 191321 + hydraPlatforms = lib.platforms.none; 191923 191322 }) {}; 191924 191323 191925 191324 "opentheory" = callPackage ··· 192180 191549 }: 192181 191550 mkDerivation { 192182 191551 pname = "opentracing"; 192183 - version = "0.1.0.0"; 192184 - sha256 = "0j791hv525mcskqmji3f9n8v803pailm8jrl336pxzdh3iacqvsl"; 191552 + version = "0.2.0"; 191553 + sha256 = "1yl3hhg32npj4ncqc9j5gl2jikzvczkpnrwp124nk45mzi13aszq"; 192185 191554 libraryHaskellDepends = [ 192186 191555 aeson async base base64-bytestring bytestring case-insensitive 192187 191556 clock containers http-types iproute lens mtl mwc-random network ··· 192196 191565 ({ mkDerivation, base, http-client, lens, mtl, opentracing, text }: 192197 191566 mkDerivation { 192198 191567 pname = "opentracing-http-client"; 192199 - version = "0.1.0.0"; 192200 - sha256 = "1jzdnlk2cacmymjkcfx4n569n6gqy6kwzh9dxrgjnagwh3jqk7q3"; 191568 + version = "0.2.0"; 191569 + sha256 = "19mwl69ggyd7zf1dvx5yjzsq5mlw5l94h989hgwc4ryvp8zqwv4n"; 192201 191570 libraryHaskellDepends = [ 192202 191571 base http-client lens mtl opentracing text 192203 191572 ]; ··· 192207 191576 192208 191577 "opentracing-jaeger" = callPackage 192209 191578 ({ mkDerivation, base, bytestring, exceptions, hashable 192210 - , http-client, http-types, lens, mtl, network, opentracing 192211 - , QuickCheck, safe-exceptions, text, thrift, unordered-containers 192212 - , vector 191579 + , http-client, http-types, lens, mtl, network, opentracing, pinch 191580 + , QuickCheck, safe-exceptions, text, unordered-containers, vector 191581 + , vector-instances 192213 191582 }: 192214 191583 mkDerivation { 192215 191584 pname = "opentracing-jaeger"; 192216 - version = "0.1.0.0"; 192217 - sha256 = "1yr9vhbpqq12hj9blv3v1wc26n9qsp0g7pjngxh0k1zcv759s1k0"; 191585 + version = "0.2.0"; 191586 + sha256 = "0ffcbmg8qzvyhm7vzk2zkk5czli4ndrp18cc328i7600gzv1gr81"; 192218 191587 libraryHaskellDepends = [ 192219 191588 base bytestring exceptions hashable http-client http-types lens mtl 192220 - network opentracing QuickCheck safe-exceptions text thrift 192221 - unordered-containers vector 191589 + network opentracing pinch QuickCheck safe-exceptions text 191590 + unordered-containers vector vector-instances 192222 191591 ]; 192223 191592 description = "Jaeger backend for OpenTracing"; 192224 191593 license = lib.licenses.asl20; ··· 192229 191598 ({ mkDerivation, base, lens, opentracing, text, wai }: 192230 191599 mkDerivation { 192231 191600 pname = "opentracing-wai"; 192232 - version = "0.1.0.0"; 192233 - sha256 = "1m68l4gxpyl81yhkd209kdgzydzyg632x8gl2jh3l4k83ysdg545"; 191601 + version = "0.2.0"; 191602 + sha256 = "178xxgg0rw94gld5jlvix6czsvg66q60h06nj2b1x7rnd0pjryc6"; 192234 191603 libraryHaskellDepends = [ base lens opentracing text wai ]; 192235 191604 description = "Middleware adding OpenTracing tracing for WAI applications"; 192236 191605 license = lib.licenses.asl20; ··· 192240 191609 ({ mkDerivation, aeson, base, opentracing, text }: 192241 191610 mkDerivation { 192242 191611 pname = "opentracing-zipkin-common"; 192243 - version = "0.1.0.0"; 192244 - sha256 = "00pg2k0v685gc4fmrcb464fapvpz8lw0249n6gmi2zkhpw8frnm0"; 191612 + version = "0.2.0"; 191613 + sha256 = "0yngiz8135v844wcx28izwhx18iz06di3dl8bm5xqh47ir43wdw6"; 192245 191614 libraryHaskellDepends = [ aeson base opentracing text ]; 192246 191615 description = "Zipkin OpenTracing Backend Commons"; 192247 191616 license = lib.licenses.asl20; ··· 192250 191619 "opentracing-zipkin-v1" = callPackage 192251 191620 ({ mkDerivation, base, bytestring, exceptions, hashable 192252 191621 , http-client, http-types, iproute, lens, opentracing 192253 - , opentracing-zipkin-common, QuickCheck, text, thrift 192254 - , unordered-containers, vector 191622 + , opentracing-zipkin-common, pinch, QuickCheck, text 191623 + , unordered-containers, vector, vector-instances 192255 191624 }: 192256 191625 mkDerivation { 192257 191626 pname = "opentracing-zipkin-v1"; 192258 - version = "0.1.0.0"; 192259 - sha256 = "0mw6x9jqh42ymn1a3maq47mw1mbzki5lv1axapqkhkx0w13824pp"; 191627 + version = "0.2.0"; 191628 + sha256 = "15n9m7affy81fr80zw7l54lch7gr6bvhcqpga797x7rvdxqqjv9j"; 192260 191629 libraryHaskellDepends = [ 192261 191630 base bytestring exceptions hashable http-client http-types iproute 192262 - lens opentracing opentracing-zipkin-common QuickCheck text thrift 192263 - unordered-containers vector 191631 + lens opentracing opentracing-zipkin-common pinch QuickCheck text 191632 + unordered-containers vector vector-instances 192264 191633 ]; 192265 191634 description = "Zipkin V1 backend for OpenTracing"; 192266 191635 license = lib.licenses.asl20; ··· 192274 191643 }: 192275 191644 mkDerivation { 192276 191645 pname = "opentracing-zipkin-v2"; 192277 - version = "0.1.0.0"; 192278 - sha256 = "0rmrlx2g228p4ys95d4zqc0l56a62avsawq320g4n9i2g0hrl5n4"; 191646 + version = "0.2.0"; 191647 + sha256 = "1ykssjhknfyiw02abjpz38zmlw8l03zb8c3y3ic5njmsg23nxfzb"; 192279 191648 libraryHaskellDepends = [ 192280 191649 aeson base base64-bytestring bytestring exceptions http-client 192281 191650 http-types lens opentracing opentracing-zipkin-common text ··· 193202 192571 }: 193203 192572 mkDerivation { 193204 192573 pname = "ordinal"; 193205 - version = "0.4.0.5"; 193206 - sha256 = "0m073n6yln9rfdzlkwd10fl04b725h3hpybz01r0wiyw4bfv2n3b"; 192574 + version = "0.4.0.6"; 192575 + sha256 = "0zpqhyn8f2iphgz2746fxsjk817ly8q6s4dz6129jrrd25v3kdc7"; 193207 192576 libraryHaskellDepends = [ 193208 192577 base containers data-default QuickCheck regex template-haskell text 193209 192578 time vector ··· 193250 192619 193251 192620 "org-mode" = callPackage 193252 192621 ({ mkDerivation, base, containers, filepath, hashable, megaparsec 193253 - , parser-combinators, tasty, tasty-hunit, text 192622 + , parser-combinators, tasty, tasty-hunit, text, time 193254 192623 }: 193255 192624 mkDerivation { 193256 192625 pname = "org-mode"; 193257 - version = "1.1.1"; 193258 - sha256 = "0kbfgafv3xkgczz27ap7xyqfvvn8a6sizc9h3ylklc8qrw38n149"; 192626 + version = "2.0.0"; 192627 + sha256 = "17yn9si0mxyydjgv40q6rc5nw579kswlx69ycyinhdx0q34ds7rl"; 193259 192628 libraryHaskellDepends = [ 193260 192629 base containers filepath hashable megaparsec parser-combinators 193261 - text 192630 + text time 193262 192631 ]; 193263 - testHaskellDepends = [ base megaparsec tasty tasty-hunit text ]; 192632 + testHaskellDepends = [ 192633 + base megaparsec tasty tasty-hunit text time 192634 + ]; 193264 192635 description = "Parser for Emacs org-mode files"; 193265 192636 license = lib.licenses.bsd3; 193266 192637 hydraPlatforms = lib.platforms.none; ··· 193274 192641 }: 193275 192642 mkDerivation { 193276 192643 pname = "org-mode-lucid"; 193277 - version = "1.6.0"; 193278 - sha256 = "0qkar6cwmz67zm2jlah1yi004vap8d136167qwvm485cpd3vwxz7"; 192644 + version = "1.6.1"; 192645 + sha256 = "0fkwwwrmfq22g1yak9srmlbq5yixf4kdwfapq0dyr8f3pqaglf1v"; 193279 192646 libraryHaskellDepends = [ 193280 192647 base containers hashable lucid org-mode text 193281 192648 ]; ··· 194505 193872 description = "Parse syslog traffic from PAN-OS"; 194506 193873 license = lib.licenses.bsd3; 194507 193874 hydraPlatforms = lib.platforms.none; 193875 + broken = true; 194508 193876 }) {}; 194509 193877 194510 193878 "panda" = callPackage ··· 195440 194806 license = lib.licenses.bsd3; 195441 194807 }) {}; 195442 194808 194809 + "pantry_0_5_2_2" = callPackage 194810 + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal 194811 + , casa-client, casa-types, conduit, conduit-extra, containers 194812 + , cryptonite, cryptonite-conduit, digest, exceptions, filelock 194813 + , generic-deriving, hackage-security, hedgehog, hpack, hspec 194814 + , http-client, http-client-tls, http-conduit, http-download 194815 + , http-types, memory, mtl, network-uri, path, path-io, persistent 194816 + , persistent-sqlite, persistent-template, primitive, QuickCheck 194817 + , raw-strings-qq, resourcet, rio, rio-orphans, rio-prettyprint 194818 + , tar-conduit, text, text-metrics, time, transformers, unix-compat 194819 + , unliftio, unordered-containers, vector, yaml, zip-archive 194820 + }: 194821 + mkDerivation { 194822 + pname = "pantry"; 194823 + version = "0.5.2.2"; 194824 + sha256 = "05ykb6jn19jiakrn6mdcz3gyc6v6hkg3r8drwxncf04syz0l60mm"; 194825 + libraryHaskellDepends = [ 194826 + aeson ansi-terminal base bytestring Cabal casa-client casa-types 194827 + conduit conduit-extra containers cryptonite cryptonite-conduit 194828 + digest filelock generic-deriving hackage-security hpack http-client 194829 + http-client-tls http-conduit http-download http-types memory mtl 194830 + network-uri path path-io persistent persistent-sqlite 194831 + persistent-template primitive resourcet rio rio-orphans 194832 + rio-prettyprint tar-conduit text text-metrics time transformers 194833 + unix-compat unliftio unordered-containers vector yaml zip-archive 194834 + ]; 194835 + testHaskellDepends = [ 194836 + aeson ansi-terminal base bytestring Cabal casa-client casa-types 194837 + conduit conduit-extra containers cryptonite cryptonite-conduit 194838 + digest exceptions filelock generic-deriving hackage-security 194839 + hedgehog hpack hspec http-client http-client-tls http-conduit 194840 + http-download http-types memory mtl network-uri path path-io 194841 + persistent persistent-sqlite persistent-template primitive 194842 + QuickCheck raw-strings-qq resourcet rio rio-orphans rio-prettyprint 194843 + tar-conduit text text-metrics time transformers unix-compat 194844 + unliftio unordered-containers vector yaml zip-archive 194845 + ]; 194846 + description = "Content addressable Haskell package management"; 194847 + license = lib.licenses.bsd3; 194848 + hydraPlatforms = lib.platforms.none; 194849 + }) {}; 194850 + 195443 194851 "pantry-tmp" = callPackage 195444 194852 ({ mkDerivation, aeson, ansi-terminal, array, base, base-orphans 195445 194853 , base64-bytestring, bytestring, Cabal, conduit, conduit-extra ··· 196060 195384 ({ mkDerivation, base, containers, extensible-exceptions, random }: 196061 195385 mkDerivation { 196062 195386 pname = "parallel-io"; 196063 - version = "0.3.4"; 196064 - sha256 = "10bglxm685pljh0i896zrgs6g3iz0n7gl1qslvfn63pjxgvz5v2a"; 195387 + version = "0.3.5"; 195388 + sha256 = "0b67rjz80n58grz7hcb1lvk15lmww41967kv7f85vlpacfykng49"; 196065 195389 isLibrary = true; 196066 195390 isExecutable = true; 196067 195391 libraryHaskellDepends = [ ··· 197589 196913 license = lib.licenses.bsd3; 197590 196914 }) {}; 197591 196915 196916 + "path-io_1_6_3" = callPackage 196917 + ({ mkDerivation, base, containers, directory, dlist, exceptions 196918 + , filepath, hspec, path, temporary, time, transformers, unix-compat 196919 + }: 196920 + mkDerivation { 196921 + pname = "path-io"; 196922 + version = "1.6.3"; 196923 + sha256 = "1dnc48hf8x83p0jy05qi8j8gmfmsy50swnql9ssdv74lsryp615n"; 196924 + libraryHaskellDepends = [ 196925 + base containers directory dlist exceptions filepath path temporary 196926 + time transformers unix-compat 196927 + ]; 196928 + testHaskellDepends = [ 196929 + base directory exceptions filepath hspec path transformers 196930 + unix-compat 196931 + ]; 196932 + description = "Interface to ‘directory’ package for users of ‘path’"; 196933 + license = lib.licenses.bsd3; 196934 + hydraPlatforms = lib.platforms.none; 196935 + }) {}; 196936 + 197592 196937 "path-like" = callPackage 197593 196938 ({ mkDerivation, base, path }: 197594 196939 mkDerivation { ··· 197647 196950 ]; 197648 196951 description = "Read and write UTF-8 text files"; 197649 196952 license = lib.licenses.asl20; 196953 + }) {}; 196954 + 196955 + "path-text-utf8_0_0_1_8" = callPackage 196956 + ({ mkDerivation, base, bytestring, path, safe-exceptions, text }: 196957 + mkDerivation { 196958 + pname = "path-text-utf8"; 196959 + version = "0.0.1.8"; 196960 + sha256 = "1xi60cw75qzhb03z2a66xfxgr17xz39bdk7wmjc7yprqy0v016jj"; 196961 + libraryHaskellDepends = [ 196962 + base bytestring path safe-exceptions text 196963 + ]; 196964 + description = "Read and write UTF-8 text files"; 196965 + license = lib.licenses.asl20; 196966 + hydraPlatforms = lib.platforms.none; 197650 196967 }) {}; 197651 196968 197652 196969 "path-utils" = callPackage ··· 199829 199118 license = lib.licenses.bsd3; 199830 199119 }) {}; 199831 199120 199121 + "persistent-mtl_0_2_2_0" = callPackage 199122 + ({ mkDerivation, base, bytestring, conduit, containers 199123 + , monad-logger, mtl, persistent, persistent-postgresql 199124 + , persistent-sqlite, persistent-template, resource-pool, resourcet 199125 + , tasty, tasty-golden, tasty-hunit, text, transformers, unliftio 199126 + , unliftio-core, unliftio-pool 199127 + }: 199128 + mkDerivation { 199129 + pname = "persistent-mtl"; 199130 + version = "0.2.2.0"; 199131 + sha256 = "0z78xs1gi45i3a9q28yr7jpsdsbzfqjahch3m27gygkja9dgm438"; 199132 + libraryHaskellDepends = [ 199133 + base conduit containers mtl persistent resource-pool resourcet text 199134 + transformers unliftio unliftio-core unliftio-pool 199135 + ]; 199136 + testHaskellDepends = [ 199137 + base bytestring conduit containers monad-logger persistent 199138 + persistent-postgresql persistent-sqlite persistent-template 199139 + resource-pool resourcet tasty tasty-golden tasty-hunit text 199140 + unliftio 199141 + ]; 199142 + description = "Monad transformer for the persistent API"; 199143 + license = lib.licenses.bsd3; 199144 + hydraPlatforms = lib.platforms.none; 199145 + }) {}; 199146 + 199832 199147 "persistent-mysql" = callPackage 199833 199148 ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit 199834 199149 , containers, fast-logger, hspec, http-api-data, HUnit ··· 201031 200294 }: 201032 200295 mkDerivation { 201033 200296 pname = "phonetic-languages-phonetics-basics"; 201034 - version = "0.6.3.0"; 201035 - sha256 = "1hc1wmq2syvi0xsbkrm52hd5k8j2kk80n45695zd85fqwbayhj2c"; 200297 + version = "0.7.0.0"; 200298 + sha256 = "16a8b5xpdrayfh03czs0nb1xz6kn95rr4k4dim5viqjxpc9f0zbn"; 201036 200299 isLibrary = true; 201037 200300 isExecutable = true; 201038 200301 libraryHaskellDepends = [ ··· 201198 200461 }: 201199 200462 mkDerivation { 201200 200463 pname = "phonetic-languages-simplified-generalized-examples-array"; 201201 - version = "0.2.1.0"; 201202 - sha256 = "0bz5lyl75i143crva3piz4005k81ia26rj455cgbgz3yknj3qpaf"; 200464 + version = "0.3.0.0"; 200465 + sha256 = "15k2nij8rpf1yvm5kjgkrvx1y4zlfskxfdxjbjirmaidamr2ha6d"; 201203 200466 libraryHaskellDepends = [ 201204 200467 base heaps mmsyn2-array parallel 201205 200468 phonetic-languages-constraints-array ··· 201220 200483 }: 201221 200484 mkDerivation { 201222 200485 pname = "phonetic-languages-simplified-generalized-examples-common"; 201223 - version = "0.1.2.0"; 201224 - sha256 = "1k65ynaz2mh35nqsf3izqq0lxqbkyj24i1g3r3gbfpbkajdhqz0v"; 200486 + version = "0.2.0.0"; 200487 + sha256 = "15ngw29ffsyp7j71rpyllfyifvqybgpb5mh2cfgi1vscl8c6zydl"; 201225 200488 libraryHaskellDepends = [ 201226 200489 base heaps phonetic-languages-phonetics-basics subG 201227 200490 ]; ··· 201236 200499 }: 201237 200500 mkDerivation { 201238 200501 pname = "phonetic-languages-simplified-generalized-properties-array"; 201239 - version = "0.1.2.0"; 201240 - sha256 = "1vlzgcq8pv22m9pxwx0p1xss9zzlvwap11gn88pdgn0zgkhcsm0b"; 200502 + version = "0.2.0.0"; 200503 + sha256 = "1k1id4dz0siz3qqax738k4k2dfj68slph4yy8ad6f4r9fink9jqr"; 201241 200504 libraryHaskellDepends = [ 201242 200505 base phonetic-languages-phonetics-basics 201243 200506 phonetic-languages-rhythmicity phonetic-languages-simplified-base 201244 200507 ]; 201245 - description = "Generalization of the functionality of the phonetic-languages-simplified-properties-array"; 200508 + description = "Some 'properties' of the phonetic languages approach text"; 201246 200509 license = lib.licenses.mit; 201247 200510 }) {}; 201248 200511 ··· 206886 206149 , quickcheck-assertions, quickcheck-instances, resource-pool 206887 206150 , semigroups, tasty, tasty-hunit, tasty-quickcheck, tasty-th 206888 206151 , template-haskell, text, th-lift, th-lift-instances, time 206889 - , transformers, transformers-base, transformers-compat, type-fun 206152 + , transformers, transformers-base, transformers-compat 206890 206153 }: 206891 206154 mkDerivation { 206892 206155 pname = "postgresql-query"; 206893 - version = "3.8.1"; 206894 - sha256 = "09lld8fibwn0brszpz040pr8q7b5wrpc9fzdw8pwf7gfsb02wvx1"; 206156 + version = "3.8.2"; 206157 + sha256 = "1vcfs5yg9ab0axdm661kjpsfxii7h3s8rrq38kgc68vhr280m110"; 206895 206158 libraryHaskellDepends = [ 206896 206159 aeson attoparsec base blaze-builder bytestring containers 206897 206160 data-default exceptions file-embed haskell-src-meta hreader hset 206898 206161 inflections monad-control monad-logger mtl postgresql-simple 206899 206162 resource-pool semigroups template-haskell text th-lift 206900 206163 th-lift-instances time transformers transformers-base 206901 - transformers-compat type-fun 206164 + transformers-compat 206902 206165 ]; 206903 206166 testHaskellDepends = [ 206904 206167 attoparsec base generic-arbitrary postgresql-simple QuickCheck ··· 209764 209027 pname = "process"; 209765 209028 version = "1.6.11.0"; 209766 209029 sha256 = "0nv8c2hnx1l6xls6b61l8sm7j250qfbj1fjj5n6m15ppk9f0d9jd"; 209767 - revision = "1"; 209768 - editedCabalFile = "136mp45m1jh27yayb0gx4giybp6imh7hbr774fsb2m9vj2l52b27"; 209030 + revision = "2"; 209031 + editedCabalFile = "1yz98g78syad217c816q5rrdb7w93lpsp3pcc4djsy050w9ji56n"; 209769 209032 libraryHaskellDepends = [ base deepseq directory filepath unix ]; 209770 209033 testHaskellDepends = [ base bytestring directory ]; 209771 209034 description = "Process libraries"; ··· 220368 219631 license = lib.licenses.bsd3; 220369 219632 }) {}; 220370 219633 219634 + "regex-tdfa_1_3_1_1" = callPackage 219635 + ({ mkDerivation, array, base, bytestring, containers, directory 219636 + , filepath, mtl, parsec, regex-base, text, utf8-string 219637 + }: 219638 + mkDerivation { 219639 + pname = "regex-tdfa"; 219640 + version = "1.3.1.1"; 219641 + sha256 = "1msrq31k4jmn2lmrdzn87jqarqhw265ca69rfg5jpa5adrzm3gmi"; 219642 + libraryHaskellDepends = [ 219643 + array base bytestring containers mtl parsec regex-base text 219644 + ]; 219645 + testHaskellDepends = [ 219646 + array base bytestring containers directory filepath mtl regex-base 219647 + text utf8-string 219648 + ]; 219649 + description = "Pure Haskell Tagged DFA Backend for \"Text.Regex\" (regex-base)"; 219650 + license = lib.licenses.bsd3; 219651 + hydraPlatforms = lib.platforms.none; 219652 + }) {}; 219653 + 220371 219654 "regex-tdfa-pipes" = callPackage 220372 219655 ({ mkDerivation, array, base, lens, monads-tf, pipes, regex-base 220373 219656 , regex-tdfa ··· 222226 221469 doCheck = false; 222227 221470 description = "Easy-to-use, type-safe, expandable, high-level HTTP client library"; 222228 221471 license = lib.licenses.bsd3; 221472 + maintainers = with lib.maintainers; [ maralorn ]; 221473 + }) {}; 221474 + 221475 + "req_3_9_1" = callPackage 221476 + ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder 221477 + , bytestring, case-insensitive, connection, exceptions, hspec 221478 + , hspec-core, hspec-discover, http-api-data, http-client 221479 + , http-client-tls, http-types, modern-uri, monad-control, mtl 221480 + , QuickCheck, retry, template-haskell, text, time, transformers 221481 + , transformers-base, unliftio-core, unordered-containers 221482 + }: 221483 + mkDerivation { 221484 + pname = "req"; 221485 + version = "3.9.1"; 221486 + sha256 = "0468ah4142jrqp5l3pw4izrw6f6kznisan888b30jhif4c6xncr0"; 221487 + enableSeparateDataOutput = true; 221488 + libraryHaskellDepends = [ 221489 + aeson authenticate-oauth base blaze-builder bytestring 221490 + case-insensitive connection exceptions http-api-data http-client 221491 + http-client-tls http-types modern-uri monad-control mtl retry 221492 + template-haskell text time transformers transformers-base 221493 + unliftio-core 221494 + ]; 221495 + testHaskellDepends = [ 221496 + aeson base blaze-builder bytestring case-insensitive hspec 221497 + hspec-core http-client http-types modern-uri monad-control mtl 221498 + QuickCheck retry template-haskell text time unordered-containers 221499 + ]; 221500 + testToolDepends = [ hspec-discover ]; 221501 + doCheck = false; 221502 + description = "HTTP client library"; 221503 + license = lib.licenses.bsd3; 221504 + hydraPlatforms = lib.platforms.none; 222229 221505 maintainers = with lib.maintainers; [ maralorn ]; 222230 221506 }) {}; 222231 221507 ··· 225546 224756 pname = "rounded"; 225547 224757 version = "1.1"; 225548 224758 sha256 = "0hja4ak3qd80zg996jwyi1kndj2vfsp10vwr4wyrcvppzl4gj4a0"; 224759 + revision = "1"; 224760 + editedCabalFile = "02zrazan3ljalfy1cnr3d0cdw7n426k5wg5xkifk87vb8ds2wx1j"; 225549 224761 libraryHaskellDepends = [ 225550 224762 base ghc-prim hgmp long-double reflection 225551 224763 ]; ··· 226004 225212 pname = "rss"; 226005 225213 version = "3000.2.0.7"; 226006 225214 sha256 = "0z48xb610k1h29rg03q19y08fp78agxp2gr48innw5y3rz00s6ym"; 226007 - revision = "1"; 226008 - editedCabalFile = "0ql1ffjw0g1sdyz9icin4cq86i5b9ljzhvpivfbbyaipg2nc9z0s"; 225215 + revision = "3"; 225216 + editedCabalFile = "02jbnl7y76ahjdj2bciyjwgcglfs7sy60733z5c8610rk34f99dy"; 226009 225217 libraryHaskellDepends = [ base HaXml network network-uri time ]; 226010 225218 description = "A library for generating RSS 2.0 feeds."; 226011 225219 license = lib.licenses.publicDomain; ··· 227055 226263 testHaskellDepends = [ base containers doctest ]; 227056 226264 description = "Safe arithmetic operations"; 227057 226265 license = lib.licenses.asl20; 227058 - hydraPlatforms = lib.platforms.none; 227059 226266 }) {}; 227060 226267 227061 226268 "safe-plugins" = callPackage ··· 229263 228472 ]; 229264 228473 description = "Scientific notation intended for tokenization"; 229265 228474 license = lib.licenses.bsd3; 229266 - hydraPlatforms = lib.platforms.none; 229267 228475 }) {}; 229268 228476 229269 228477 "scion" = callPackage ··· 232250 231460 pname = "servant-auth"; 232251 231461 version = "0.4.0.0"; 232252 231462 sha256 = "0v2g80kakjwpws92bk3anzy4k8vgxq99y7g3ib4amc5x6kxcmjh1"; 231463 + revision = "2"; 231464 + editedCabalFile = "0mbx44l1jnvfvppv6diiixqx5rdkb68djxl36m5sd12qz6rqmcx0"; 232253 231465 libraryHaskellDepends = [ 232254 231466 aeson base jose lens servant text unordered-containers 232255 231467 ]; ··· 232326 231534 pname = "servant-auth-docs"; 232327 231535 version = "0.2.10.0"; 232328 231536 sha256 = "0j1ynnrb6plrhpb2vzs2p7a9jb41llp0j1jwgap7hjhkwhyc7wxd"; 232329 - revision = "5"; 232330 - editedCabalFile = "1113d9hczzksy5bqf8pfriz9x158xr4a3p5na8p83vl46ddad82y"; 231537 + revision = "7"; 231538 + editedCabalFile = "10178ahxq36l9mik7dcn1c1f97fpp8b4r7xiqwiv21llp95s7cqp"; 232331 231539 setupHaskellDepends = [ base Cabal cabal-doctest ]; 232332 231540 libraryHaskellDepends = [ 232333 231541 base lens servant servant-auth servant-docs text ··· 232390 231598 pname = "servant-auth-server"; 232391 231599 version = "0.4.6.0"; 232392 231600 sha256 = "0isl9pzzhfbs8pgh3qr2vbgfp0bh741dfa59sq7n3cmbkc6ndpkk"; 231601 + revision = "2"; 231602 + editedCabalFile = "1vf0mnbq0wmwha3aa2fn593dwibaw00l4agspgvchx7574jyr5wp"; 232393 231603 libraryHaskellDepends = [ 232394 231604 aeson base base64-bytestring blaze-builder bytestring 232395 231605 case-insensitive cookie data-default-class entropy http-types jose ··· 232416 231622 pname = "servant-auth-swagger"; 232417 231623 version = "0.2.10.1"; 232418 231624 sha256 = "029nvb4wxwl98ah26bgcq1b7izrnvssxwn1682liimvsh4a8bady"; 231625 + revision = "2"; 231626 + editedCabalFile = "0b8fawx2wv9zshn9i4abnwy4lgf3fkhbhm8bhfpgm9d867dx21y4"; 232419 231627 libraryHaskellDepends = [ 232420 231628 base lens servant servant-auth servant-swagger swagger2 text 232421 231629 ]; ··· 232927 232131 pname = "servant-docs"; 232928 232132 version = "0.11.8"; 232929 232133 sha256 = "0zbsv75zyfg44l4822qnmvw2naxcxwgnpzc55jnvz766l2dydjrb"; 232134 + revision = "1"; 232135 + editedCabalFile = "0bfhypzm02aqwckjrvjmhvf602di0pmp4r0rjbfcraxzvkrzm6qv"; 232930 232136 isLibrary = true; 232931 232137 isExecutable = true; 232932 232138 libraryHaskellDepends = [ ··· 233178 232380 pname = "servant-foreign"; 233179 232381 version = "0.15.3"; 233180 232382 sha256 = "1bz2ry5pd8cx5pmsvg7q29r9gd5kqjjv9nd97f7abwjqi8as2413"; 233181 - revision = "1"; 233182 - editedCabalFile = "0d9h941g7ja73g10az13pad9rjlp126b662f71q7c8yd6kh4jl9r"; 232383 + revision = "2"; 232384 + editedCabalFile = "1fdbxyyp2h5gcighjrww2mbg8z6givmhx2in8293kw58w7y2im0i"; 233183 232385 libraryHaskellDepends = [ 233184 232386 base base-compat http-types lens servant text 233185 232387 ]; ··· 233433 232635 pname = "servant-js"; 233434 232636 version = "0.9.4.2"; 233435 232637 sha256 = "15n5s3i491cxjxj70wa8yhpipaz47q46s04l4ysc64wgijlnm8xy"; 232638 + revision = "1"; 232639 + editedCabalFile = "0lka70i2qjjj9x8i1ilsfgqq5hwdlrcyd2cj1qcpyhj85c9anxl3"; 233436 232640 isLibrary = true; 233437 232641 isExecutable = true; 233438 232642 libraryHaskellDepends = [ ··· 233645 232845 testHaskellDepends = [ 233646 232846 base bytestring http-types servant-server string-conversions tasty 233647 232847 tasty-wai text 232848 + ]; 232849 + description = "multipart/form-data (e.g file upload) support for servant"; 232850 + license = lib.licenses.bsd3; 232851 + }) {}; 232852 + 232853 + "servant-multipart_0_12_1" = callPackage 232854 + ({ mkDerivation, base, bytestring, directory, http-types, lens 232855 + , resourcet, servant, servant-docs, servant-foreign 232856 + , servant-multipart-api, servant-server, string-conversions, tasty 232857 + , tasty-wai, text, wai, wai-extra 232858 + }: 232859 + mkDerivation { 232860 + pname = "servant-multipart"; 232861 + version = "0.12.1"; 232862 + sha256 = "1p55kb3zhq25ncp7wimhggssn68abfgsnlldk13rk1iajaj6y8y5"; 232863 + libraryHaskellDepends = [ 232864 + base bytestring directory lens resourcet servant servant-docs 232865 + servant-foreign servant-multipart-api servant-server 232866 + string-conversions text wai wai-extra 232867 + ]; 232868 + testHaskellDepends = [ 232869 + base bytestring http-types servant-server string-conversions tasty 232870 + tasty-wai text 232871 + ]; 232872 + description = "multipart/form-data (e.g file upload) support for servant"; 232873 + license = lib.licenses.bsd3; 232874 + hydraPlatforms = lib.platforms.none; 232875 + }) {}; 232876 + 232877 + "servant-multipart-api" = callPackage 232878 + ({ mkDerivation, base, bytestring, servant, text, transformers }: 232879 + mkDerivation { 232880 + pname = "servant-multipart-api"; 232881 + version = "0.12.1"; 232882 + sha256 = "1gifa9g7ggs0plzffrd9a8j24dmqvgbkkdkfzyy7mpmwrjqw7mcj"; 232883 + libraryHaskellDepends = [ 232884 + base bytestring servant text transformers 232885 + ]; 232886 + description = "multipart/form-data (e.g file upload) support for servant"; 232887 + license = lib.licenses.bsd3; 232888 + }) {}; 232889 + 232890 + "servant-multipart-client" = callPackage 232891 + ({ mkDerivation, array, base, bytestring, http-client, http-media 232892 + , network, random, servant, servant-client, servant-client-core 232893 + , servant-multipart, servant-multipart-api, servant-server, text 232894 + , warp 232895 + }: 232896 + mkDerivation { 232897 + pname = "servant-multipart-client"; 232898 + version = "0.12.1"; 232899 + sha256 = "07haaf9nq96lfv2dhqf4319vl321f53v0mypbbg3swzb6rrfkw9h"; 232900 + isLibrary = true; 232901 + isExecutable = true; 232902 + libraryHaskellDepends = [ 232903 + array base bytestring http-media random servant servant-client-core 232904 + servant-multipart-api text 232905 + ]; 232906 + executableHaskellDepends = [ 232907 + base bytestring http-client network servant servant-client 232908 + servant-client-core servant-multipart servant-multipart-api 232909 + servant-server warp 233648 232910 ]; 233649 232911 description = "multipart/form-data (e.g file upload) support for servant"; 233650 232912 license = lib.licenses.bsd3; ··· 238656 237794 }: 238657 237795 mkDerivation { 238658 237796 pname = "simple-ui"; 238659 - version = "0.1.2"; 238660 - sha256 = "106fcxl97gnkpv2bc50bg5zv8j7f1cdyxbl1l99p3rsq6wr6mr0m"; 237797 + version = "0.2.0"; 237798 + sha256 = "0j0xq5s9l7dckbv0bakw96f3xnqsa2b7pqsji7s1y46k2fcr0r5s"; 238661 237799 enableSeparateDataOutput = true; 238662 237800 libraryHaskellDepends = [ 238663 237801 base data-default-class exceptions lens mtl stm template-haskell ··· 240444 239582 description = "Serialize to bytes"; 240445 239583 license = lib.licenses.bsd3; 240446 239584 hydraPlatforms = lib.platforms.none; 239585 + broken = true; 240447 239586 }) {}; 240448 239587 240449 239588 "smallarray" = callPackage ··· 240894 240031 libraryHaskellDepends = [ base bytesmith primitive ]; 240895 240032 description = "Parse arrays of tokens"; 240896 240033 license = lib.licenses.bsd3; 240897 - hydraPlatforms = lib.platforms.none; 240898 240034 }) {}; 240899 240035 240900 240036 "smith-cli" = callPackage ··· 243552 242690 }) {}; 243553 242691 243554 242692 "sound-collage" = callPackage 243555 - ({ mkDerivation, array, base, Cabal, carray, containers, fft 243556 - , filepath, numeric-prelude, optparse-applicative, pathtype 243557 - , sample-frame, soxlib, storablevector, storablevector-carray 242693 + ({ mkDerivation, array, base, carray, containers, fft, filepath 242694 + , numeric-prelude, optparse-applicative, pathtype, sample-frame 242695 + , shell-utility, soxlib, storablevector, storablevector-carray 243558 242696 , synthesizer-core, temporary, transformers, utility-ht 243559 242697 }: 243560 242698 mkDerivation { 243561 242699 pname = "sound-collage"; 243562 - version = "0.2.0.1"; 243563 - sha256 = "0ywsy3q8f6y6k0vg4g21v6cm3n7662ngbzvfx502makdkf47i75a"; 242700 + version = "0.2.0.2"; 242701 + sha256 = "11rirlg25iawv4shwhvc4bcnzk4axvgk5n7yj05nnbpyx4s6r0pp"; 243564 242702 isLibrary = false; 243565 242703 isExecutable = true; 243566 242704 executableHaskellDepends = [ 243567 - array base Cabal carray containers fft filepath numeric-prelude 243568 - optparse-applicative pathtype sample-frame soxlib storablevector 243569 - storablevector-carray synthesizer-core temporary transformers 243570 - utility-ht 242705 + array base carray containers fft filepath numeric-prelude 242706 + optparse-applicative pathtype sample-frame shell-utility soxlib 242707 + storablevector storablevector-carray synthesizer-core temporary 242708 + transformers utility-ht 243571 242709 ]; 243572 242710 description = "Approximate a song from other pieces of sound"; 243573 242711 license = lib.licenses.bsd3; ··· 250422 249560 license = lib.licenses.mit; 250423 249561 }) {}; 250424 249562 249563 + "stripe-concepts_1_0_2_8" = callPackage 249564 + ({ mkDerivation, base, bytestring, text }: 249565 + mkDerivation { 249566 + pname = "stripe-concepts"; 249567 + version = "1.0.2.8"; 249568 + sha256 = "03sqgmbbjqi18wjb96sc3lvc6p3bqk5sgsgbcf9z8k9rbdspribm"; 249569 + libraryHaskellDepends = [ base bytestring text ]; 249570 + description = "Types for the Stripe API"; 249571 + license = lib.licenses.mit; 249572 + hydraPlatforms = lib.platforms.none; 249573 + }) {}; 249574 + 250425 249575 "stripe-core" = callPackage 250426 249576 ({ mkDerivation, aeson, base, bytestring, mtl, text, time 250427 249577 , transformers, unordered-containers ··· 250537 249663 }: 250538 249664 mkDerivation { 250539 249665 pname = "stripe-scotty"; 250540 - version = "1.0.0.8"; 250541 - sha256 = "1r91lf3yjivfcxdnqy1ayfzs2ckszyx8x6f6fn8rjiz0gfv1v6hn"; 249666 + version = "1.1"; 249667 + sha256 = "15l3b01wf55k3cnwspkqvphs822cmdbnxyfcka8bi0vaj8xl84x9"; 250542 249668 libraryHaskellDepends = [ 250543 249669 aeson base bytestring http-types scotty stripe-concepts 250544 249670 stripe-signature text unordered-containers ··· 250570 249696 }: 250571 249697 mkDerivation { 250572 249698 pname = "stripe-signature"; 250573 - version = "1.0.0.8"; 250574 - sha256 = "0cybjsvzknsldqhf7fjd4ar2qjyym43x2ymmgw01f9a1ixyaxgmn"; 249699 + version = "1.0.0.10"; 249700 + sha256 = "04b5z6hnm000fii4qiczm4xpr41v55fgcj07yh35iwh4gwgc7c4h"; 250575 249701 libraryHaskellDepends = [ 250576 249702 base base16-bytestring bytestring cryptonite memory stripe-concepts 250577 249703 text ··· 250608 249734 }: 250609 249735 mkDerivation { 250610 249736 pname = "stripe-wreq"; 250611 - version = "1.0.1.8"; 250612 - sha256 = "1km0h94d1clgba0yy520yx54axdkf4xl5p5hnmn8ghg40r0pax73"; 249737 + version = "1.0.1.10"; 249738 + sha256 = "0pxaffbmnibivg8pdkvmyjkw8hz0grq3x84apd94mkji7vjg9xgh"; 250613 249739 libraryHaskellDepends = [ 250614 249740 aeson base bytestring lens stripe-concepts text 250615 249741 unordered-containers wreq ··· 252676 251802 hydraPlatforms = lib.platforms.none; 252677 251803 }) {}; 252678 251804 251805 + "sydtest_0_2_0_0" = callPackage 251806 + ({ mkDerivation, async, base, bytestring, containers, Diff, dlist 251807 + , envparse, filepath, MonadRandom, mtl, optparse-applicative, path 251808 + , path-io, pretty-show, QuickCheck, quickcheck-io, random-shuffle 251809 + , safe, safe-coloured-text, safe-coloured-text-terminfo, split, stm 251810 + , sydtest-discover, text, yaml, yamlparse-applicative 251811 + }: 251812 + mkDerivation { 251813 + pname = "sydtest"; 251814 + version = "0.2.0.0"; 251815 + sha256 = "1k0jpnvfizvgscwpgd827w7x4nczlv7krwj10y35byj79wb5xy2m"; 251816 + libraryHaskellDepends = [ 251817 + async base bytestring containers Diff dlist envparse filepath 251818 + MonadRandom mtl optparse-applicative path path-io pretty-show 251819 + QuickCheck quickcheck-io random-shuffle safe safe-coloured-text 251820 + safe-coloured-text-terminfo split text yaml yamlparse-applicative 251821 + ]; 251822 + testHaskellDepends = [ 251823 + base bytestring path path-io QuickCheck safe-coloured-text 251824 + safe-coloured-text-terminfo stm text 251825 + ]; 251826 + testToolDepends = [ sydtest-discover ]; 251827 + description = "A modern testing framework for Haskell with good defaults and advanced testing features"; 251828 + license = "unknown"; 251829 + hydraPlatforms = lib.platforms.none; 251830 + }) {}; 251831 + 251832 + "sydtest-aeson" = callPackage 251833 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, path 251834 + , path-io, sydtest, sydtest-discover, text 251835 + }: 251836 + mkDerivation { 251837 + pname = "sydtest-aeson"; 251838 + version = "0.0.0.0"; 251839 + sha256 = "0x4n27v60m6h44xwpf60j11j1r9r1zzixlszq21skrf2r6lla2gn"; 251840 + libraryHaskellDepends = [ 251841 + aeson aeson-pretty base bytestring path path-io sydtest text 251842 + ]; 251843 + testHaskellDepends = [ aeson base sydtest text ]; 251844 + testToolDepends = [ sydtest-discover ]; 251845 + description = "An aeson companion library for sydtest"; 251846 + license = "unknown"; 251847 + hydraPlatforms = lib.platforms.none; 251848 + }) {}; 251849 + 251850 + "sydtest-amqp" = callPackage 251851 + ({ mkDerivation, aeson, amqp, async, base, bytestring, network 251852 + , path, path-io, port-utils, process, stm, sydtest 251853 + , sydtest-discover, sydtest-rabbitmq, sydtest-typed-process, text 251854 + , typed-process 251855 + }: 251856 + mkDerivation { 251857 + pname = "sydtest-amqp"; 251858 + version = "0.1.0.0"; 251859 + sha256 = "122n2nf0z2s925yjg6zlp3bvl70yprip57v6775vqglhbr959v8m"; 251860 + libraryHaskellDepends = [ 251861 + aeson amqp async base bytestring network path path-io port-utils 251862 + process stm sydtest sydtest-rabbitmq sydtest-typed-process text 251863 + typed-process 251864 + ]; 251865 + testHaskellDepends = [ amqp base sydtest ]; 251866 + testToolDepends = [ sydtest-discover ]; 251867 + description = "An amqp companion library for sydtest"; 251868 + license = "unknown"; 251869 + hydraPlatforms = lib.platforms.none; 251870 + }) {}; 251871 + 252679 251872 "sydtest-discover" = callPackage 252680 251873 ({ mkDerivation, base, filepath, optparse-applicative, path 252681 251874 , path-io ··· 252758 251817 ]; 252759 251818 executableHaskellDepends = [ base ]; 252760 251819 description = "Automatic test suite discovery for sydtest"; 251820 + license = "unknown"; 251821 + hydraPlatforms = lib.platforms.none; 251822 + }) {}; 251823 + 251824 + "sydtest-hedis" = callPackage 251825 + ({ mkDerivation, base, bytestring, hedis, network, path, path-io 251826 + , port-utils, sydtest, sydtest-discover, sydtest-typed-process 251827 + , text, typed-process 251828 + }: 251829 + mkDerivation { 251830 + pname = "sydtest-hedis"; 251831 + version = "0.0.0.0"; 251832 + sha256 = "0y31aqn4ra92arq054amhkcxxng0wsngv59ngwn05gc5jv6whi9j"; 251833 + libraryHaskellDepends = [ 251834 + base bytestring hedis network path path-io port-utils sydtest 251835 + sydtest-typed-process text typed-process 251836 + ]; 251837 + testHaskellDepends = [ base hedis sydtest ]; 251838 + testToolDepends = [ sydtest-discover ]; 251839 + description = "An hedis companion library for sydtest"; 251840 + license = "unknown"; 251841 + hydraPlatforms = lib.platforms.none; 251842 + }) {}; 251843 + 251844 + "sydtest-hspec" = callPackage 251845 + ({ mkDerivation, base, hspec, hspec-core, mtl, sydtest 251846 + , sydtest-discover 251847 + }: 251848 + mkDerivation { 251849 + pname = "sydtest-hspec"; 251850 + version = "0.0.0.0"; 251851 + sha256 = "1fjj6v1f6rilzjcjgg0yqmhhmj067g45sw7q2xr8q9p7qiqnpkh1"; 251852 + libraryHaskellDepends = [ base hspec-core mtl sydtest ]; 251853 + testHaskellDepends = [ base hspec sydtest ]; 251854 + testToolDepends = [ sydtest-discover ]; 251855 + description = "An Hspec companion library for sydtest"; 251856 + license = "unknown"; 251857 + hydraPlatforms = lib.platforms.none; 251858 + }) {}; 251859 + 251860 + "sydtest-mongo" = callPackage 251861 + ({ mkDerivation, base, binary, bson, bytestring, mongoDB, network 251862 + , path, path-io, port-utils, process, sydtest, sydtest-discover 251863 + , sydtest-process, text, yaml 251864 + }: 251865 + mkDerivation { 251866 + pname = "sydtest-mongo"; 251867 + version = "0.0.0.0"; 251868 + sha256 = "0jm2c05dxri0w83ii3pyphb2rrla72fih5g26w0indb51i0wlnq1"; 251869 + libraryHaskellDepends = [ 251870 + base binary bson bytestring mongoDB network path path-io port-utils 251871 + process sydtest sydtest-process text yaml 251872 + ]; 251873 + testHaskellDepends = [ base mongoDB sydtest text ]; 251874 + testToolDepends = [ sydtest-discover ]; 251875 + description = "An mongoDB companion library for sydtest"; 251876 + license = "unknown"; 251877 + hydraPlatforms = lib.platforms.none; 251878 + }) {}; 251879 + 251880 + "sydtest-persistent-postgresql" = callPackage 251881 + ({ mkDerivation, base, monad-logger, mtl, persistent 251882 + , persistent-postgresql, persistent-template, sydtest 251883 + , sydtest-discover, tmp-postgres 251884 + }: 251885 + mkDerivation { 251886 + pname = "sydtest-persistent-postgresql"; 251887 + version = "0.1.0.0"; 251888 + sha256 = "1g669w4rcjd7pnf6hrcc5lb6li30m9fdkrchm00bmg1350kxmnmp"; 251889 + libraryHaskellDepends = [ 251890 + base monad-logger mtl persistent persistent-postgresql sydtest 251891 + tmp-postgres 251892 + ]; 251893 + testHaskellDepends = [ 251894 + base persistent persistent-postgresql persistent-template sydtest 251895 + ]; 251896 + testToolDepends = [ sydtest-discover ]; 251897 + description = "An persistent-postgresql companion library for sydtest"; 252761 251898 license = "unknown"; 252762 251899 hydraPlatforms = lib.platforms.none; 252763 251900 }) {}; ··· 252861 251842 hydraPlatforms = lib.platforms.none; 252862 251843 }) {}; 252863 251844 251845 + "sydtest-persistent-sqlite_0_1_0_0" = callPackage 251846 + ({ mkDerivation, base, monad-logger, mtl, persistent 251847 + , persistent-sqlite, persistent-template, sydtest, sydtest-discover 251848 + }: 251849 + mkDerivation { 251850 + pname = "sydtest-persistent-sqlite"; 251851 + version = "0.1.0.0"; 251852 + sha256 = "1al80sym9r2h769szky5kpkllbs7gm4lc8gn9nlavj0in663x0ly"; 251853 + libraryHaskellDepends = [ 251854 + base monad-logger mtl persistent persistent-sqlite 251855 + persistent-template sydtest 251856 + ]; 251857 + testHaskellDepends = [ 251858 + base persistent persistent-sqlite persistent-template sydtest 251859 + ]; 251860 + testToolDepends = [ sydtest-discover ]; 251861 + description = "A persistent-sqlite companion library for sydtest"; 251862 + license = "unknown"; 251863 + hydraPlatforms = lib.platforms.none; 251864 + }) {}; 251865 + 251866 + "sydtest-process" = callPackage 251867 + ({ mkDerivation, base, bytestring, process, sydtest 251868 + , sydtest-discover 251869 + }: 251870 + mkDerivation { 251871 + pname = "sydtest-process"; 251872 + version = "0.0.0.0"; 251873 + sha256 = "1afjwxq7bq4q0g5qznffxfn20ikxxmr7yywiksfyfnyh4n0a1zsf"; 251874 + libraryHaskellDepends = [ base process sydtest ]; 251875 + testHaskellDepends = [ base bytestring process sydtest ]; 251876 + testToolDepends = [ sydtest-discover ]; 251877 + description = "A typed-process companion library for sydtest"; 251878 + license = "unknown"; 251879 + hydraPlatforms = lib.platforms.none; 251880 + }) {}; 251881 + 251882 + "sydtest-rabbitmq" = callPackage 251883 + ({ mkDerivation, aeson, amqp, async, base, bytestring, network 251884 + , path, path-io, port-utils, process, stm, sydtest 251885 + , sydtest-discover, sydtest-typed-process, text, typed-process 251886 + }: 251887 + mkDerivation { 251888 + pname = "sydtest-rabbitmq"; 251889 + version = "0.1.0.0"; 251890 + sha256 = "0ra32y2w7hirjmaz67myq26waccznkl7gqmdnwdd93n6n1h1gb9p"; 251891 + libraryHaskellDepends = [ 251892 + aeson amqp async base bytestring network path path-io port-utils 251893 + process stm sydtest sydtest-typed-process text typed-process 251894 + ]; 251895 + testHaskellDepends = [ amqp base sydtest ]; 251896 + testToolDepends = [ sydtest-discover ]; 251897 + description = "An rabbitmq companion library for sydtest"; 251898 + license = "unknown"; 251899 + hydraPlatforms = lib.platforms.none; 251900 + }) {}; 251901 + 252864 251902 "sydtest-servant" = callPackage 252865 251903 ({ mkDerivation, base, http-client, servant, servant-client 252866 251904 , servant-server, stm, sydtest, sydtest-discover, sydtest-wai ··· 252939 251863 hydraPlatforms = lib.platforms.none; 252940 251864 }) {}; 252941 251865 251866 + "sydtest-servant_0_1_0_0" = callPackage 251867 + ({ mkDerivation, base, http-client, servant, servant-client 251868 + , servant-server, stm, sydtest, sydtest-discover, sydtest-wai 251869 + }: 251870 + mkDerivation { 251871 + pname = "sydtest-servant"; 251872 + version = "0.1.0.0"; 251873 + sha256 = "0mn7fys01qakapnrcrlpji1kwc3cgywblid4wpipmh2kdpy61ndk"; 251874 + libraryHaskellDepends = [ 251875 + base http-client servant servant-client servant-server sydtest 251876 + sydtest-wai 251877 + ]; 251878 + testHaskellDepends = [ 251879 + base servant servant-client servant-server stm sydtest 251880 + ]; 251881 + testToolDepends = [ sydtest-discover ]; 251882 + description = "A servant companion library for sydtest"; 251883 + license = "unknown"; 251884 + hydraPlatforms = lib.platforms.none; 251885 + }) {}; 251886 + 251887 + "sydtest-typed-process" = callPackage 251888 + ({ mkDerivation, base, bytestring, sydtest, sydtest-discover 251889 + , typed-process 251890 + }: 251891 + mkDerivation { 251892 + pname = "sydtest-typed-process"; 251893 + version = "0.0.0.0"; 251894 + sha256 = "0j5x2liimaxnd1p7bhkd1ic9vccxdph431rq3dmzl3f440qb3rws"; 251895 + libraryHaskellDepends = [ base sydtest typed-process ]; 251896 + testHaskellDepends = [ base bytestring sydtest typed-process ]; 251897 + testToolDepends = [ sydtest-discover ]; 251898 + description = "A typed-process companion library for sydtest"; 251899 + license = "unknown"; 251900 + hydraPlatforms = lib.platforms.none; 251901 + }) {}; 251902 + 252942 251903 "sydtest-wai" = callPackage 252943 251904 ({ mkDerivation, base, http-client, http-types, stm, sydtest 252944 251905 , sydtest-discover, wai, warp ··· 252985 251872 version = "0.0.0.0"; 252986 251873 sha256 = "01fqys32zj1rg9ciq04l7d4av3i1ynw3yinkgc84c3ia330i98ws"; 252987 251874 libraryHaskellDepends = [ base http-client sydtest wai warp ]; 251875 + testHaskellDepends = [ 251876 + base http-client http-types stm sydtest wai 251877 + ]; 251878 + testToolDepends = [ sydtest-discover ]; 251879 + description = "A wai companion library for sydtest"; 251880 + license = "unknown"; 251881 + hydraPlatforms = lib.platforms.none; 251882 + }) {}; 251883 + 251884 + "sydtest-wai_0_1_0_0" = callPackage 251885 + ({ mkDerivation, base, bytestring, case-insensitive, http-client 251886 + , http-types, mtl, network, pretty-show, stm, sydtest 251887 + , sydtest-discover, text, time, wai, warp 251888 + }: 251889 + mkDerivation { 251890 + pname = "sydtest-wai"; 251891 + version = "0.1.0.0"; 251892 + sha256 = "0fk1b7205h8ib35bp4pma37vk7cy7dwg0kkcv63k60sq1laj48rl"; 251893 + libraryHaskellDepends = [ 251894 + base bytestring case-insensitive http-client http-types mtl network 251895 + pretty-show sydtest text time wai warp 251896 + ]; 252988 251897 testHaskellDepends = [ 252989 251898 base http-client http-types stm sydtest wai 252990 251899 ]; ··· 255395 254260 255396 254261 "talash" = callPackage 255397 254262 ({ mkDerivation, alfred-margaret, base, brick, bytestring 255398 - , colorful-monoids, containers, directory, ghc-compact, intro 255399 - , microlens, microlens-th, text, unix, unordered-containers, vector 254263 + , colorful-monoids, directory, ghc-compact, intro, microlens 254264 + , microlens-th, text, unix, unordered-containers, vector 255400 254265 , vector-algorithms, vector-sized, vty 255401 254266 }: 255402 254267 mkDerivation { 255403 254268 pname = "talash"; 255404 - version = "0.1.0.1"; 255405 - sha256 = "1j28i5aipldjknfx22dil0xi1gwlv89frl1fn606yl1g84q1kr5n"; 254269 + version = "0.1.1.1"; 254270 + sha256 = "0sa4ay2dc4srh5wbk72iznjwr5bjjhggafhf27zyyxjhnjvfgsq1"; 255406 254271 isLibrary = true; 255407 254272 isExecutable = true; 255408 254273 libraryHaskellDepends = [ 255409 - alfred-margaret base brick bytestring colorful-monoids containers 255410 - directory ghc-compact intro microlens microlens-th text unix 254274 + alfred-margaret base brick bytestring colorful-monoids directory 254275 + ghc-compact intro microlens microlens-th text unix 255411 254276 unordered-containers vector vector-algorithms vector-sized vty 255412 254277 ]; 255413 - executableHaskellDepends = [ base ]; 254278 + executableHaskellDepends = [ base intro ]; 255414 254279 description = "Line oriented fast enough text search"; 255415 254280 license = lib.licenses.gpl3Only; 255416 254281 }) {}; ··· 261061 259926 }: 261062 259927 mkDerivation { 261063 259928 pname = "themoviedb"; 261064 - version = "1.2.0.1"; 261065 - sha256 = "1n6raffsjn9iq427nyh7hnnx1jvgvilisfy6dz72hl4ry5198sdq"; 259929 + version = "1.2.1"; 259930 + sha256 = "0dd1f0lhq0sdl2i3cz7maf49vif89jlv6ny64pw4ywnwycblq3if"; 261066 259931 isLibrary = true; 261067 259932 isExecutable = true; 261068 259933 libraryHaskellDepends = [ ··· 261079 259944 ]; 261080 259945 description = "Haskell API bindings for http://themoviedb.org"; 261081 259946 license = lib.licenses.mit; 259947 + hydraPlatforms = lib.platforms.none; 259948 + broken = true; 261082 259949 }) {}; 261083 259950 261084 259951 "themplate" = callPackage ··· 267030 265893 license = lib.licenses.mit; 267031 265894 }) {}; 267032 265895 265896 + "ttc_1_0_0_0" = callPackage 265897 + ({ mkDerivation, base, bytestring, tasty, tasty-hunit 265898 + , template-haskell, text 265899 + }: 265900 + mkDerivation { 265901 + pname = "ttc"; 265902 + version = "1.0.0.0"; 265903 + sha256 = "1w9xzgks9vj89mzrnjpgrx1iv67xbp6rn8s1ffc0qam268y8dbzv"; 265904 + libraryHaskellDepends = [ base bytestring template-haskell text ]; 265905 + testHaskellDepends = [ 265906 + base bytestring tasty tasty-hunit template-haskell text 265907 + ]; 265908 + description = "Textual Type Classes"; 265909 + license = lib.licenses.mit; 265910 + hydraPlatforms = lib.platforms.none; 265911 + }) {}; 265912 + 267033 265913 "ttl-hashtables" = callPackage 267034 265914 ({ mkDerivation, base, clock, containers, data-default, failable 267035 265915 , hashable, hashtables, hspec, mtl, transformers ··· 268439 267285 ({ mkDerivation, base }: 268440 267286 mkDerivation { 268441 267287 pname = "type-fun"; 268442 - version = "0.1.2"; 268443 - sha256 = "1qb9h6x1npq1pc8h7n6ism5a6jccysn76czqym1f69x0qh1jjlay"; 267288 + version = "0.1.3"; 267289 + sha256 = "0br31kghd0hm2qaz14pm6lxbl2z1ci3c0758qfpiq1dmm9mmc4ir"; 268444 267290 libraryHaskellDepends = [ base ]; 268445 267291 testHaskellDepends = [ base ]; 268446 267292 description = "Collection of widely reimplemented type families"; ··· 272346 271192 description = "maybes of numeric values with fewer indirections"; 272347 271193 license = lib.licenses.bsd3; 272348 271194 hydraPlatforms = lib.platforms.none; 271195 + broken = true; 272349 271196 }) {}; 272350 271197 272351 271198 "unpacked-maybe-text" = callPackage ··· 273075 271920 ]; 273076 271921 description = "Memory efficient url type and parser"; 273077 271922 license = lib.licenses.mit; 273078 - hydraPlatforms = lib.platforms.none; 273079 271923 }) {}; 273080 271924 273081 271925 "url-decoders" = callPackage ··· 273197 272043 ]; 273198 272044 description = "Painfully simple URL deployment"; 273199 272045 license = lib.licenses.bsd3; 273200 - hydraPlatforms = lib.platforms.none; 273201 272046 }) {}; 273202 272047 273203 272048 "urn" = callPackage ··· 273973 272820 ]; 273974 272821 description = "UUID parsing using byteverse packages"; 273975 272822 license = lib.licenses.mit; 273976 - hydraPlatforms = lib.platforms.none; 273977 272823 }) {}; 273978 272824 273979 272825 "uuid-crypto" = callPackage ··· 276310 275158 }: 276311 275159 mkDerivation { 276312 275160 pname = "vimeta"; 276313 - version = "0.3.0.1"; 276314 - sha256 = "0i834y50b4820109asrzp61bqprxs9rfgr9b8310zhsisrlbxgl3"; 275161 + version = "0.3.1"; 275162 + sha256 = "1q40cny80lf0yb38ahmpz42k0w6646mscajlny8zxb6rwylvscv9"; 276315 275163 isLibrary = true; 276316 275164 isExecutable = true; 276317 275165 libraryHaskellDepends = [ ··· 276326 275174 ]; 276327 275175 description = "Frontend for video metadata tagging tools"; 276328 275176 license = lib.licenses.bsd2; 275177 + hydraPlatforms = lib.platforms.none; 276329 275178 }) {}; 276330 275179 276331 275180 "vimus" = callPackage ··· 277175 276022 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 277176 276023 mkDerivation { 277177 276024 pname = "vulkan"; 277178 - version = "3.10.1"; 277179 - sha256 = "0lk4l65qvq1b3dz9fkz981zgm2m9nx38ylccnsxcgxns2s2zx9b3"; 276025 + version = "3.10.2"; 276026 + sha256 = "0l3afdavqn226vg96cq5di2ra7snl0ygmil5g8zcs46vkamgzcmy"; 277180 276027 libraryHaskellDepends = [ base bytestring transformers vector ]; 277181 276028 libraryPkgconfigDepends = [ vulkan ]; 277182 276029 description = "Bindings to the Vulkan graphics API"; ··· 278277 277124 ]; 278278 277125 description = "Route to different middlewares based on the incoming Accept header"; 278279 277126 license = lib.licenses.bsd3; 278280 - hydraPlatforms = lib.platforms.none; 278281 277127 }) {}; 278282 277128 278283 277129 "wai-middleware-crowd" = callPackage ··· 280708 279556 ({ mkDerivation, base, Cabal, gtk2hs-buildtools, webkitgtk }: 280709 279557 mkDerivation { 280710 279558 pname = "webkit2gtk3-javascriptcore"; 280711 - version = "0.14.4.1"; 280712 - sha256 = "0bi42gpw0cf5ymnwlffnfdq68jfvk0j4qcnqv8lvwz2vp1ngs23j"; 279559 + version = "0.14.4.2"; 279560 + sha256 = "1l77qh9iyrcvsf0kha9vcm1v6fayk5i71qprdzbvfp5sihbcnz3r"; 280713 279561 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 280714 279562 libraryHaskellDepends = [ base ]; 280715 279563 libraryPkgconfigDepends = [ webkitgtk ]; ··· 281450 280298 ]; 281451 280299 description = "Data types for large but fixed width signed and unsigned integers"; 281452 280300 license = lib.licenses.bsd2; 281453 - hydraPlatforms = lib.platforms.none; 281454 - broken = true; 281455 280301 }) {}; 281456 280302 281457 280303 "wide-word-instances" = callPackage ··· 281461 280311 libraryHaskellDepends = [ base binary serialise wide-word ]; 281462 280312 description = "Instances for wide-word"; 281463 280313 license = lib.licenses.bsd3; 281464 - hydraPlatforms = lib.platforms.none; 281465 280314 }) {}; 281466 280315 281467 280316 "wigner-symbols" = callPackage ··· 281602 280453 testToolDepends = [ hspec-discover ]; 281603 280454 description = "X11-specific implementation for WildBind"; 281604 280455 license = lib.licenses.bsd3; 280456 + }) {}; 280457 + 280458 + "wild-bind-x11_0_2_0_13" = callPackage 280459 + ({ mkDerivation, async, base, containers, fold-debounce, hspec 280460 + , hspec-discover, mtl, semigroups, stm, text, time, transformers 280461 + , wild-bind, X11 280462 + }: 280463 + mkDerivation { 280464 + pname = "wild-bind-x11"; 280465 + version = "0.2.0.13"; 280466 + sha256 = "0fs8k2kfzm6qq9xy35278xprgq7vf0v4qz7q0gz8qv480hffccc5"; 280467 + libraryHaskellDepends = [ 280468 + base containers fold-debounce mtl semigroups stm text transformers 280469 + wild-bind X11 280470 + ]; 280471 + testHaskellDepends = [ 280472 + async base hspec text time transformers wild-bind X11 280473 + ]; 280474 + testToolDepends = [ hspec-discover ]; 280475 + description = "X11-specific implementation for WildBind"; 280476 + license = lib.licenses.bsd3; 280477 + hydraPlatforms = lib.platforms.none; 281605 280478 }) {}; 281606 280479 281607 280480 "willow" = callPackage ··· 283280 282109 ]; 283281 282110 description = "A simple CLI utility for interacting with a websocket"; 283282 282111 license = lib.licenses.bsd3; 283283 - hydraPlatforms = lib.platforms.none; 283284 282112 }) {}; 283285 282113 283286 282114 "ws-chans" = callPackage ··· 286844 285674 license = lib.licenses.mit; 286845 285675 }) {}; 286846 285676 285677 + "yamlparse-applicative_0_2_0_0" = callPackage 285678 + ({ mkDerivation, aeson, base, bytestring, containers 285679 + , optparse-applicative, path, path-io, prettyprinter 285680 + , safe-coloured-text, scientific, text, unordered-containers 285681 + , validity, validity-text, vector, yaml 285682 + }: 285683 + mkDerivation { 285684 + pname = "yamlparse-applicative"; 285685 + version = "0.2.0.0"; 285686 + sha256 = "1c287mc7rl6xhwsb3gw51m6sx29dz88a9b6qa0b324hgcmf086sk"; 285687 + libraryHaskellDepends = [ 285688 + aeson base bytestring containers optparse-applicative path path-io 285689 + prettyprinter safe-coloured-text scientific text 285690 + unordered-containers validity validity-text vector yaml 285691 + ]; 285692 + description = "Declaritive configuration parsing with free docs"; 285693 + license = lib.licenses.mit; 285694 + hydraPlatforms = lib.platforms.none; 285695 + }) {}; 285696 + 286847 285697 "yampa-canvas" = callPackage 286848 285698 ({ mkDerivation, base, blank-canvas, stm, time, Yampa }: 286849 285699 mkDerivation { ··· 288638 287448 ]; 288639 287449 description = "Code for using the ip package with yesod"; 288640 287450 license = lib.licenses.bsd3; 288641 - hydraPlatforms = lib.platforms.none; 288642 287451 }) {}; 288643 287452 288644 287453 "yesod-job-queue" = callPackage ··· 291318 290129 ]; 291319 290130 description = "Operations on zip archives"; 291320 290131 license = lib.licenses.bsd3; 290132 + }) {}; 290133 + 290134 + "zip_1_7_1" = callPackage 290135 + ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive 290136 + , cereal, conduit, conduit-extra, conduit-zstd, containers, digest 290137 + , directory, dlist, exceptions, filepath, hspec, monad-control, mtl 290138 + , QuickCheck, resourcet, temporary, text, time, transformers 290139 + , transformers-base, unix 290140 + }: 290141 + mkDerivation { 290142 + pname = "zip"; 290143 + version = "1.7.1"; 290144 + sha256 = "0impiv9xsirbvnpnv1lh6lhnl8a4fqylpjif7niyjjbcvyxh4zqd"; 290145 + isLibrary = true; 290146 + isExecutable = true; 290147 + libraryHaskellDepends = [ 290148 + base bytestring bzlib-conduit case-insensitive cereal conduit 290149 + conduit-extra conduit-zstd containers digest directory dlist 290150 + exceptions filepath monad-control mtl resourcet text time 290151 + transformers transformers-base unix 290152 + ]; 290153 + executableHaskellDepends = [ base filepath ]; 290154 + testHaskellDepends = [ 290155 + base bytestring conduit containers directory dlist exceptions 290156 + filepath hspec QuickCheck temporary text time transformers 290157 + ]; 290158 + description = "Operations on zip archives"; 290159 + license = lib.licenses.bsd3; 290160 + hydraPlatforms = lib.platforms.none; 291321 290161 }) {}; 291322 290162 291323 290163 "zip-archive" = callPackage
+1 -1
pkgs/development/libraries/box2d/default.nix
··· 30 30 description = "2D physics engine"; 31 31 homepage = "https://box2d.org/"; 32 32 maintainers = [ maintainers.raskin ]; 33 - platforms = platforms.linux; 33 + platforms = platforms.unix; 34 34 license = licenses.zlib; 35 35 }; 36 36 }
+13 -14
pkgs/development/libraries/liblangtag/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchFromBitbucket, autoreconfHook, gtk-doc, gettext 1 + { lib, stdenv, fetchurl, autoreconfHook, gtk-doc, gettext 2 2 , pkg-config, glib, libxml2, gobject-introspection, gnome-common, unzip 3 3 }: 4 4 ··· 6 6 pname = "liblangtag"; 7 7 version = "0.6.3"; 8 8 9 - src = fetchFromBitbucket { 10 - owner = "tagoh"; 11 - repo = pname; 12 - rev = version; 13 - sha256 = "10rycs8xrxzf9frzalv3qx8cs1jcildhrr4imzxdmr9f4l585z96"; 9 + # Artifact tarball contains lt-localealias.h needed for darwin 10 + src = fetchurl { 11 + url = "https://bitbucket.org/tagoh/liblangtag/downloads/${pname}-${version}.tar.bz2"; 12 + sha256 = "sha256-HxKiCgLsOo0i5U3tuLaDpDycFgvaG6M3vxBgYHrnM70="; 14 13 }; 15 14 16 15 core_zip = fetchurl { ··· 30 31 cp "${language_subtag_registry}" data/language-subtag-registry 31 32 ''; 32 33 33 - configureFlags = [ 34 - "--with-locale-alias=${stdenv.cc.libc}/share/locale/locale.alias" 35 - ]; 34 + configureFlags = 35 + lib.optional 36 + (stdenv.hostPlatform.libc == "glibc") 37 + "--with-locale-alias=${stdenv.cc.libc}/share/locale/locale.alias"; 36 38 37 39 buildInputs = [ gettext glib libxml2 gobject-introspection gnome-common ]; 38 40 nativeBuildInputs = [ autoreconfHook gtk-doc gettext pkg-config unzip ]; 39 41 40 - meta = { 41 - inherit version; 42 + meta = with lib; { 42 43 description = "An interface library to access tags for identifying languages"; 43 - license = lib.licenses.mpl20; 44 - maintainers = [lib.maintainers.raskin]; 45 - platforms = lib.platforms.linux; 44 + license = licenses.mpl20; 45 + maintainers = [ maintainers.raskin ]; 46 + platforms = platforms.unix; 46 47 # There are links to a homepage that are broken by a BitBucket change 47 48 homepage = "https://bitbucket.org/tagoh/liblangtag/overview"; 48 49 };
+16 -18
pkgs/development/ocaml-modules/arp/default.nix
··· 8 8 9 9 buildDunePackage rec { 10 10 pname = "arp"; 11 - version = "2.3.1"; 12 - 13 - minimumOCamlVersion = "4.06"; 14 - 15 - useDune2 = true; 11 + version = "2.3.2"; 16 12 17 13 src = fetchurl { 18 14 url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz"; 19 - sha256 = "1nzm3fbkvz702g8f60fs49736lpffwchy64i1l1raxm9b4lmdk3p"; 15 + sha256 = "1s09ibj9v6pp2ckn96wxmn3mjifcj97asls5xc4zg75pflk0grgz"; 20 16 }; 17 + 18 + minimumOCamlVersion = "4.06"; 19 + useDune2 = true; 21 20 22 21 nativeBuildInputs = [ 23 22 bisect_ppx ··· 24 25 25 26 propagatedBuildInputs = [ 26 27 cstruct 27 - ipaddr 28 - macaddr 29 - logs 30 - mirage-time 31 - mirage-protocols 32 - lwt 33 28 duration 29 + ipaddr 30 + logs 31 + lwt 32 + macaddr 34 33 mirage-profile 34 + mirage-protocols 35 + mirage-time 35 36 ]; 36 37 37 38 doCheck = true; 38 39 checkInputs = [ 39 40 alcotest 41 + ethernet 42 + mirage-clock-unix 40 43 mirage-profile 41 44 mirage-random 42 45 mirage-random-test 43 - mirage-vnetif 44 - mirage-clock-unix 45 - mirage-random 46 46 mirage-time-unix 47 - ethernet 47 + mirage-vnetif 48 48 ]; 49 49 50 50 meta = with lib; { 51 51 description = "Address Resolution Protocol purely in OCaml"; 52 - license = licenses.isc; 53 52 homepage = "https://github.com/mirage/arp"; 54 - maintainers = [ maintainers.sternenseemann ]; 53 + license = licenses.isc; 54 + maintainers = with maintainers; [ sternenseemann ]; 55 55 }; 56 56 }
+25 -13
pkgs/development/ocaml-modules/index/default.nix
··· 6 6 7 7 buildDunePackage rec { 8 8 pname = "index"; 9 - version = "1.3.0"; 10 - 11 - minimumOCamlVersion = "4.08"; 12 - 13 - useDune2 = true; 9 + version = "1.3.1"; 14 10 15 11 src = fetchurl { 16 12 url = "https://github.com/mirage/index/releases/download/${version}/index-${version}.tbz"; 17 - sha256 = "00qwhwg79scs5bgp8nbppv06qs9yhicf686q7lh64ngh0642iz6n"; 13 + sha256 = "sha256-ycZi/TFLoGRloSpjYqH5FCHWP3eyiTCIDLESEn5inuI="; 18 14 }; 19 15 20 - buildInputs = [ stdlib-shims ]; 16 + minimumOCamlVersion = "4.08"; 17 + useDune2 = true; 18 + 19 + buildInputs = [ 20 + stdlib-shims 21 + ]; 21 22 propagatedBuildInputs = [ 22 - fmt logs mtime repr ppx_repr cmdliner progress semaphore-compat 23 + cmdliner 24 + fmt 25 + logs 26 + mtime 27 + ppx_repr 28 + progress 29 + repr 30 + semaphore-compat 23 31 ]; 24 32 33 + checkInputs = [ 34 + alcotest 35 + crowbar 36 + re 37 + ]; 25 38 doCheck = true; 26 - checkInputs = [ alcotest crowbar re ]; 27 39 28 - meta = { 29 - homepage = "https://github.com/mirage/index"; 40 + meta = with lib; { 30 41 description = "A platform-agnostic multi-level index"; 31 - license = lib.licenses.mit; 32 - maintainers = [ lib.maintainers.vbgl ]; 42 + homepage = "https://github.com/mirage/index"; 43 + license = licenses.mit; 44 + maintainers = with maintainers; [ vbgl ]; 33 45 }; 34 46 }
+56
pkgs/development/python-modules/ambee/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchFromGitHub 5 + , aiohttp 6 + , poetry-core 7 + , yarl 8 + , aresponses 9 + , pytest-asyncio 10 + , pytestCheckHook 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "ambee"; 15 + version = "0.2.1"; 16 + disabled = pythonOlder "3.8"; 17 + format = "pyproject"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "frenck"; 21 + repo = "python-ambee"; 22 + rev = "v${version}"; 23 + sha256 = "11liw2206lyrnx09giqapjpi25lr2qnbmigi6rgynr2a1i9vxy1s"; 24 + }; 25 + 26 + nativeBuildInputs = [ 27 + poetry-core 28 + ]; 29 + 30 + propagatedBuildInputs = [ 31 + aiohttp 32 + yarl 33 + ]; 34 + 35 + checkInputs = [ 36 + aresponses 37 + pytest-asyncio 38 + pytestCheckHook 39 + ]; 40 + 41 + postPatch = '' 42 + # Upstream doesn't set a version for the pyproject.toml 43 + substituteInPlace pyproject.toml \ 44 + --replace "0.0.0" "${version}" \ 45 + --replace "--cov" "" 46 + ''; 47 + 48 + pythonImportsCheck = [ "ambee" ]; 49 + 50 + meta = with lib; { 51 + description = "Python client for Ambee API"; 52 + homepage = "https://github.com/frenck/python-ambee"; 53 + license = with licenses; [ mit ]; 54 + maintainers = with maintainers; [ fab ]; 55 + }; 56 + }
+39
pkgs/development/scheme-modules/scheme-bytestructures/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , guile 5 + , autoreconfHook 6 + , pkg-config 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "scheme-bytestructures"; 11 + version = "1.0.7"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "TaylanUB"; 15 + repo = pname; 16 + rev = "v${version}"; 17 + sha256 = "0q0habjiy3h9cigb7q1br9kz6z212dn2ab31f6dgd3rrmsfn5rvb"; 18 + }; 19 + 20 + postConfigure = '' 21 + sed -i '/moddir\s*=/s%=.*%=''${out}/share/guile/site%' Makefile; 22 + sed -i '/godir\s*=/s%=.*%=''${out}/share/guile/ccache%' Makefile; 23 + ''; 24 + 25 + nativeBuildInputs = [ 26 + autoreconfHook pkg-config 27 + ]; 28 + buildInputs = [ 29 + guile 30 + ]; 31 + 32 + meta = with lib; { 33 + description = "Structured access to bytevector contents"; 34 + homepage = "https://github.com/TaylanUB/scheme-bytestructures"; 35 + license = licenses.gpl3Plus; 36 + maintainers = with maintainers; [ ethancedwards8 ]; 37 + platforms = platforms.linux; 38 + }; 39 + }
+2 -2
pkgs/development/tools/analysis/tflint/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tflint"; 5 - version = "0.29.0"; 5 + version = "0.29.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "terraform-linters"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "1ciwr2bwbxnw8366wvgl5ga3y2qj46i0h3yp3av1x9n2r8rddrlh"; 11 + sha256 = "1pkz8y3da7i4a3nm79a0640xjj4wfkx3dz6614c4hynqn5svji82"; 12 12 }; 13 13 14 14 vendorSha256 = "0k8v49sr0jmljfl4fa5pnvzd5k3pg865h201114l6cs257sdkczk";
+7 -12
pkgs/misc/emulators/wine/sources.nix
··· 44 44 45 45 unstable = fetchurl rec { 46 46 # NOTE: Don't forget to change the SHA256 for staging as well. 47 - version = "6.9"; 47 + version = "6.10"; 48 48 url = "https://dl.winehq.org/wine/source/6.x/wine-${version}.tar.xz"; 49 - sha256 = "sha256-GFVOYB3vhqmiAXKwhcZoMpFPwh511VX25U/4nn6uW/4="; 49 + sha256 = "sha256-WO3hSEgtSRiCYtWi0MnXAKdMacUcyqEcWt9j0/MUQZ8="; 50 50 inherit (stable) gecko32 gecko64; 51 51 52 52 ## see http://wiki.winehq.org/Mono 53 53 mono = fetchurl rec { 54 - version = "6.1.1"; 54 + version = "6.2.0"; 55 55 url = "https://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}-x86.msi"; 56 - sha256 = "sha256-rDsUvq/eNLhIIofllwABE9wGqRXzLJ/QbHfrgZB544s="; 56 + sha256 = "sha256-zY1TUT2DV7KHama6sIllTvmUH0LvaQ+1VcZJP1OB28o="; 57 57 }; 58 58 59 59 patches = [ ··· 65 65 staging = fetchFromGitHub rec { 66 66 # https://github.com/wine-staging/wine-staging/releases 67 67 inherit (unstable) version; 68 - sha256 = "sha256-g0NmiypafOAmKDRoRf4uz5NnhFo6uga0fKYNCF29jbE="; 68 + sha256 = "sha256-nqXgJe2i1xDW1aCAmwFPshiUI2PtZ/S7p8Cq2ODMTQk="; 69 69 owner = "wine-staging"; 70 70 repo = "wine-staging"; 71 - #rev = "v${version}"; 72 - # FIXME: replace with line above with 6.10 release 73 - # Fix https://bugs.winehq.org/show_bug.cgi?id=51172 74 - rev = "5bbe3e47a559b3c04bc8791e0b398a271c772af7"; 71 + rev = "v${version}"; 75 72 76 - # Actually only "d3d11-Deferred_Context" cause problems, two others only dependencies 77 - # see FIXME above 78 - disabledPatchsets = [ "d3d11-Deferred_Context" "wined3d-CSMT_Main" "nvapi-Stub_DLL" "nvcuvid-CUDA_Video_Support" "nvencodeapi-Video_Encoder" ]; 73 + disabledPatchsets = [ ]; 79 74 }; 80 75 81 76 winetricks = fetchFromGitHub rec {
+3 -9
pkgs/os-specific/darwin/mas/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "mas"; 10 - version = "1.8.1"; 10 + version = "1.8.2"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/mas-cli/mas/releases/download/v${version}/mas.pkg"; 14 - sha256 = "W/wgg+ETeJPoZ7MoVGH2uJzQiZMLIy3n1JYKUloc3ZU="; 14 + sha256 = "HlLQKBVIYKanS6kjkbYdabBi1T0irxE6fNd2H6mDKe4="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ libarchive p7zip ]; ··· 25 25 26 26 installPhase = '' 27 27 mkdir -p $out 28 - cp -r ./bin $out 29 - cp -r ./Frameworks $out 30 - ''; 31 - 32 - postFixup = '' 33 - install_name_tool -change @rpath/MasKit.framework/Versions/A/MasKit $out/Frameworks/MasKit.framework/Versions/A/MasKit $out/bin/mas 34 - install_name_tool -change @rpath/Commandant.framework/Commandant $out/Frameworks/MasKit.framework/Versions/A/Frameworks/Commandant.framework/Versions/A/Commandant $out/bin/mas 28 + cp -r ./usr/local/bin $out 35 29 ''; 36 30 37 31 meta = with lib; {
+2 -2
pkgs/servers/fileshare/default.nix
··· 1 - { stdenv, lib, fetchgit, pkg-config, git, libmicrohttpd_0_9_70 }: 1 + { stdenv, lib, fetchgit, pkg-config, git, libmicrohttpd }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "fileshare"; ··· 15 15 ''; 16 16 17 17 nativeBuildInputs = [ pkg-config git ]; 18 - buildInputs = [ libmicrohttpd_0_9_70 ]; 18 + buildInputs = [ libmicrohttpd ]; 19 19 20 20 makeFlags = [ "BUILD=release" ]; 21 21
+8 -4
pkgs/servers/monitoring/grafana/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "grafana"; 5 - version = "8.0.0"; 5 + version = "8.0.1"; 6 6 7 7 excludedPackages = [ "release_publisher" ]; 8 8 ··· 10 10 rev = "v${version}"; 11 11 owner = "grafana"; 12 12 repo = "grafana"; 13 - sha256 = "sha256-HtubiSx4Orf9knZcuYy4eF2qwclX/JVd2Ba9L33tM74="; 13 + sha256 = "sha256-Vs/4urH/XuoVly26YfhFbf/T3x5jdS4BgrVStuTHaHo="; 14 14 }; 15 15 16 16 srcStatic = fetchurl { 17 17 url = "https://dl.grafana.com/oss/release/grafana-${version}.linux-amd64.tar.gz"; 18 - sha256 = "sha256-bwBpkPy4kwfnkRsLOktUgQx+Sm8WJA2d65efMBCnGp4="; 18 + sha256 = "sha256-b05nUApLjdQW5vbS56HUK+/GXKcHo2UAHybfe6ZTr3U="; 19 19 }; 20 20 21 - vendorSha256 = "sha256-Hon5WrhXUvZUtMRxx3XcBDQe3rkRkfqbnXjY3xCzuuM="; 21 + vendorSha256 = "sha256-iwB1JtekxFYSHjaV+TqBDqnyE5zt3RJ4dQmf12AA53U="; 22 22 23 23 preBuild = '' 24 24 # The testcase makes an API call against grafana.com: ··· 36 36 37 37 # main module (github.com/grafana/grafana) does not contain package github.com/grafana/grafana/scripts/go 38 38 rm -r scripts/go 39 + ''; 40 + 41 + buildFlagsArray = '' 42 + -ldflags=-s -w -X main.version=${version} 39 43 ''; 40 44 41 45 postInstall = ''
+2 -2
pkgs/servers/sql/postgresql/ext/pgvector.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pgvector"; 5 - version = "0.1.5"; 5 + version = "0.1.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ankane"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "0zrb9r9yh05nip2gwg96fhfk766hwqwa8plcvj2b4x4hhjk6q1ps"; 11 + sha256 = "108qf5pvqhz4vh31sijikajf4hrrk7rknrqzwj999psr33acag4z"; 12 12 }; 13 13 14 14 buildInputs = [ postgresql ];
+4 -4
pkgs/servers/teleport/default.nix
··· 4 4 webassets = fetchFromGitHub { 5 5 owner = "gravitational"; 6 6 repo = "webassets"; 7 - rev = "cf396f868aebb8ba654ea2398c25f033181e7114"; 8 - sha256 = "sha256-12jkpWl/kL0ttRHtxyDnKjYAZNrheEGQF8HEGSXvvAk="; 7 + rev = "8c2812c169fa6bd5f31c13160bd93ef8b317bbc9"; 8 + sha256 = "sha256-O+H8N1yqQiH645mgXeSc330GRmxF+gxiJJ5iYn65Z6Q="; 9 9 }; 10 10 in 11 11 12 12 buildGoModule rec { 13 13 pname = "teleport"; 14 - version = "6.1.3"; 14 + version = "6.2.3"; 15 15 16 16 # This repo has a private submodule "e" which fetchgit cannot handle without failing. 17 17 src = fetchFromGitHub { 18 18 owner = "gravitational"; 19 19 repo = "teleport"; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-kb7qRPZKXDY0Qy3/72epAGaN2FCOO/XAN8lOoUYkoM0="; 21 + sha256 = "sha256-3syl1a2ui8/aTgCvihuhg575Df31loOXuENBNJG3nR0="; 22 22 }; 23 23 24 24 vendorSha256 = null;
+3 -3
pkgs/tools/admin/google-cloud-sdk/default.nix
··· 21 21 sources = name: system: { 22 22 x86_64-darwin = { 23 23 url = "${baseUrl}/${name}-darwin-x86_64.tar.gz"; 24 - sha256 = "1f86pkjsp8lrmk8ap40wh9zbzb2ni49vc2cjsdjbj4pkkwivihpv"; 24 + sha256 = "0xhy2sa04ir5ncjnnx25nyf66k21w3f649smhfpz9973s7vk5vhg"; 25 25 }; 26 26 27 27 x86_64-linux = { 28 28 url = "${baseUrl}/${name}-linux-x86_64.tar.gz"; 29 - sha256 = "1l47lq2wq8y0adrjij3w5ki1mm1f00503ks398flfmbzyav6bad3"; 29 + sha256 = "1dkj4cpy891nd3l1xcqaj1mfphirs9fzbm081i8pyn36nwmdpg2j"; 30 30 }; 31 31 }.${system}; 32 32 33 33 in stdenv.mkDerivation rec { 34 34 pname = "google-cloud-sdk"; 35 - version = "343.0.0"; 35 + version = "344.0.0"; 36 36 37 37 src = fetchurl (sources "${pname}-${version}" stdenv.hostPlatform.system); 38 38
+3 -3
pkgs/tools/misc/fend/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "fend"; 5 - version = "0.1.16"; 5 + version = "0.1.17"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "printfn"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ITS2wE4vwp0W/nlTyX55cY5E95VIwR46JBzF0pD/xsE="; 11 + sha256 = "sha256-Xq2UjeZiKy9BjNQ9xnC7tppEwrEtg8ZN5BVDz1bUOmw="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-YqOc/B+ZP1i9xJLrOguQ6fwQr6SV0qvQ3fWwguY2S0I="; 14 + cargoSha256 = "sha256-Bf3fYHhpoX05AmTdwwdRU2YRfGVb1EmaGDm75i+Vs2w="; 15 15 16 16 doInstallCheck = true; 17 17
+17 -25
pkgs/tools/security/secp256k1/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, jdk 2 - 3 - # Enable ECDSA pubkey recovery module 4 - , enableRecovery ? true 5 - 6 - # Enable ECDH shared secret computation (disabled by default because it is 7 - # experimental) 8 - , enableECDH ? false 9 - 10 - # Enable libsecp256k1_jni (disabled by default because it requires a jdk, 11 - # which is a large dependency) 12 - , enableJNI ? false 13 - 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 14 5 }: 15 - 16 - let inherit (lib) optionals; in 17 6 18 7 stdenv.mkDerivation { 19 8 pname = "secp256k1"; 20 9 21 10 # I can't find any version numbers, so we're just using the date of the 22 11 # last commit. 23 - version = "2020-08-16"; 12 + version = "unstable-2021-06-06"; 24 13 25 14 src = fetchFromGitHub { 26 15 owner = "bitcoin-core"; 27 16 repo = "secp256k1"; 28 - rev = "670cdd3f8be25f81472b2d16dcd228b0d24a5c45"; 29 - sha256 = "0ak2hrr0wznl5d9s905qwn5yds7k22i28d2jp957l4a8yf8cqv3s"; 17 + rev = "7973576f6e3ab27d036a09397152b124d747f4ae"; 18 + sha256 = "0vjk55dv0mkph4k6bqgkykmxn05ngzvhc4rzjnvn33xzi8dzlvah"; 30 19 }; 31 - 32 - buildInputs = optionals enableJNI [ jdk ]; 33 20 34 21 nativeBuildInputs = [ autoreconfHook ]; 35 22 36 - configureFlags = 37 - [ "--enable-benchmark=no" "--enable-tests=yes" "--enable-exhaustive-tests=no" ] ++ 38 - optionals enableECDH [ "--enable-module-ecdh" "--enable-experimental" ] ++ 39 - optionals enableRecovery [ "--enable-module-recovery" ] ++ 40 - optionals enableJNI [ "--enable-jni" ]; 23 + configureFlags = [ 24 + "--enable-benchmark=no" 25 + "--enable-exhaustive-tests=no" 26 + "--enable-experimental" 27 + "--enable-module-ecdh" 28 + "--enable-module-recovery" 29 + "--enable-module-schnorrsig" 30 + "--enable-tests=yes" 31 + ]; 41 32 42 33 doCheck = true; 34 + 43 35 checkPhase = "./tests"; 44 36 45 37 meta = with lib; {
+6 -11
pkgs/top-level/all-packages.nix
··· 7221 7221 7222 7222 nvchecker = with python3Packages; toPythonApplication nvchecker; 7223 7223 7224 - nvfetcher = with haskell.lib; overrideCabal (justStaticExecutables haskellPackages.nvfetcher) (drv: { 7225 - executableToolDepends = [ makeWrapper ]; 7226 - postInstall = '' 7227 - wrapProgram $out/bin/nvfetcher \ 7228 - --prefix PATH ":" "${nvchecker}/bin:${nix-prefetch-git}/bin" 7229 - ''; 7230 - }); 7224 + nvfetcher = haskell.lib.justStaticExecutables haskellPackages.nvfetcher; 7231 7225 7232 7226 miller = callPackage ../tools/text/miller { }; 7233 7227 ··· 12580 12586 12581 12587 scheme48 = callPackage ../development/interpreters/scheme48 { }; 12582 12588 12589 + scheme-bytestructures = callPackage ../development/scheme-modules/scheme-bytestructures { }; 12590 + 12583 12591 self = pkgsi686Linux.callPackage ../development/interpreters/self { }; 12584 12592 12585 12593 spark = callPackage ../applications/networking/cluster/spark { }; ··· 12655 12659 guile-commonmark = callPackage ../development/guile-modules/guile-commonmark { }; 12656 12660 12657 12661 guile-fibers = callPackage ../development/guile-modules/guile-fibers { }; 12662 + 12663 + guile-git = callPackage ../development/guile-modules/guile-git { }; 12658 12664 12659 12665 guile-gnome = callPackage ../development/guile-modules/guile-gnome { 12660 12666 gconf = gnome2.GConf; ··· 22741 22743 22742 22744 jnetmap = callPackage ../applications/networking/jnetmap {}; 22743 22745 22744 - libbitcoin = callPackage ../tools/misc/libbitcoin/libbitcoin.nix { 22745 - secp256k1 = secp256k1.override { enableECDH = true; }; 22746 - }; 22747 - 22746 + libbitcoin = callPackage ../tools/misc/libbitcoin/libbitcoin.nix { }; 22748 22747 libbitcoin-protocol = callPackage ../tools/misc/libbitcoin/libbitcoin-protocol.nix { }; 22749 22748 libbitcoin-client = callPackage ../tools/misc/libbitcoin/libbitcoin-client.nix { }; 22750 22749 libbitcoin-network = callPackage ../tools/misc/libbitcoin/libbitcoin-network.nix { };
-14
pkgs/top-level/dotnet-packages.nix
··· 481 481 outputFiles = [ "*" ]; 482 482 }; 483 483 484 - YamlDotNet = fetchNuGet { 485 - baseName = "YamlDotNet"; 486 - version = "11.1.1"; 487 - sha256 = "rwZ/QyDVrN3wGrEYKY3QY5Xqo2Tp3FkR6dh4QrC+QS0="; 488 - outputFiles = [ "lib/*" ]; 489 - 490 - meta = with lib; { 491 - description = "YamlDotNet is a .NET library for YAML"; 492 - homepage = "https://github.com/aaubry/YamlDotNet"; 493 - license = licenses.mit; 494 - maintainers = [ maintainers.ratsclub ]; 495 - }; 496 - }; 497 - 498 484 }; in self
+2
pkgs/top-level/python-packages.nix
··· 385 385 386 386 amazon_kclpy = callPackage ../development/python-modules/amazon_kclpy { }; 387 387 388 + ambee = callPackage ../development/python-modules/ambee { }; 389 + 388 390 ambiclimate = callPackage ../development/python-modules/ambiclimate { }; 389 391 390 392 amcrest = callPackage ../development/python-modules/amcrest { };
+1
pkgs/top-level/release-haskell.nix
··· 222 222 # working as expected. 223 223 cabal-install = all; 224 224 Cabal_3_4_0_0 = with compilerNames; [ ghc884 ghc8104 ]; 225 + cabal2nix-unstable = all; 225 226 funcmp = all; 226 227 # Doesn't currently work on ghc-9.0: 227 228 # https://github.com/haskell/haskell-language-server/issues/297