Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 41895efe 86f81104

+3795 -1590
+6
maintainers/maintainer-list.nix
··· 7238 githubId = 623509; 7239 name = "Martijn Vermaat"; 7240 }; 7241 martingms = { 7242 email = "martin@mg.am"; 7243 github = "martingms";
··· 7238 githubId = 623509; 7239 name = "Martijn Vermaat"; 7240 }; 7241 + martinetd = { 7242 + email = "f.ktfhrvnznqxacf@noclue.notk.org"; 7243 + github = "martinetd"; 7244 + githubId = 1729331; 7245 + name = "Dominique Martinet"; 7246 + }; 7247 martingms = { 7248 email = "martin@mg.am"; 7249 github = "martingms";
+9
nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
··· 66 <literal>enableParallelBuilding=false</literal>. 67 </para> 68 </listitem> 69 </itemizedlist> 70 </section> 71 <section xml:id="sec-release-22.05-notable-changes">
··· 66 <literal>enableParallelBuilding=false</literal>. 67 </para> 68 </listitem> 69 + <listitem> 70 + <para> 71 + <literal>pkgs.claws-mail-gtk2</literal>, representing Claws 72 + Mail’s older release version three, was removed in order to 73 + get rid of Python 2. Please switch to 74 + <literal>claws-mail</literal>, which is Claws Mail’s latest 75 + release based on GTK+3 and Python 3. 76 + </para> 77 + </listitem> 78 </itemizedlist> 79 </section> 80 <section xml:id="sec-release-22.05-notable-changes">
+3
nixos/doc/manual/release-notes/rl-2205.section.md
··· 29 30 - The `wafHook` hook now honors `NIX_BUILD_CORES` when `enableParallelBuilding` is not set explicitly. Packages can restore the old behaviour by setting `enableParallelBuilding=false`. 31 32 ## Other Notable Changes {#sec-release-22.05-notable-changes}
··· 29 30 - The `wafHook` hook now honors `NIX_BUILD_CORES` when `enableParallelBuilding` is not set explicitly. Packages can restore the old behaviour by setting `enableParallelBuilding=false`. 31 32 + - `pkgs.claws-mail-gtk2`, representing Claws Mail's older release version three, was removed in order to get rid of Python 2. 33 + Please switch to `claws-mail`, which is Claws Mail's latest release based on GTK+3 and Python 3. 34 + 35 ## Other Notable Changes {#sec-release-22.05-notable-changes}
+3 -3
nixos/modules/programs/bcc.nix
··· 1 - { config, lib, ... }: 2 { 3 options.programs.bcc.enable = lib.mkEnableOption "bcc"; 4 5 config = lib.mkIf config.programs.bcc.enable { 6 - environment.systemPackages = [ config.boot.kernelPackages.bcc ]; 7 - boot.extraModulePackages = [ config.boot.kernelPackages.bcc ]; 8 }; 9 }
··· 1 + { config, pkgs, lib, ... }: 2 { 3 options.programs.bcc.enable = lib.mkEnableOption "bcc"; 4 5 config = lib.mkIf config.programs.bcc.enable { 6 + environment.systemPackages = [ pkgs.bcc ]; 7 + boot.extraModulePackages = [ pkgs.bcc ]; 8 }; 9 }
+1
nixos/tests/all-tests.nix
··· 44 boot-stage1 = handleTest ./boot-stage1.nix {}; 45 borgbackup = handleTest ./borgbackup.nix {}; 46 botamusique = handleTest ./botamusique.nix {}; 47 btrbk = handleTest ./btrbk.nix {}; 48 buildbot = handleTest ./buildbot.nix {}; 49 buildkite-agents = handleTest ./buildkite-agents.nix {};
··· 44 boot-stage1 = handleTest ./boot-stage1.nix {}; 45 borgbackup = handleTest ./borgbackup.nix {}; 46 botamusique = handleTest ./botamusique.nix {}; 47 + bpf = handleTestOn ["x86_64-linux" "aarch64-linux"] ./bpf.nix {}; 48 btrbk = handleTest ./btrbk.nix {}; 49 buildbot = handleTest ./buildbot.nix {}; 50 buildkite-agents = handleTest ./buildkite-agents.nix {};
+25
nixos/tests/bpf.nix
···
··· 1 + import ./make-test-python.nix ({ pkgs, ... }: { 2 + name = "bpf"; 3 + meta.maintainers = with pkgs.lib.maintainers; [ martinetd ]; 4 + 5 + machine = { pkgs, ... }: { 6 + programs.bcc.enable = true; 7 + environment.systemPackages = with pkgs; [ bpftrace ]; 8 + }; 9 + 10 + testScript = '' 11 + ## bcc 12 + # syscount -d 1 stops 1s after probe started so is good for that 13 + print(machine.succeed("syscount -d 1")) 14 + 15 + ## bpftrace 16 + # list probes 17 + machine.succeed("bpftrace -l") 18 + # simple BEGIN probe (user probe on bpftrace itself) 19 + print(machine.succeed("bpftrace -e 'BEGIN { print(\"ok\"); exit(); }'")) 20 + # tracepoint 21 + print(machine.succeed("bpftrace -e 'tracepoint:syscalls:sys_enter_* { print(probe); exit(); }'")) 22 + # kprobe 23 + print(machine.succeed("bpftrace -e 'kprobe:schedule { print(probe); exit() }'")) 24 + ''; 25 + })
+2 -2
pkgs/applications/networking/browsers/lagrange/default.nix
··· 19 20 stdenv.mkDerivation rec { 21 pname = "lagrange"; 22 - version = "1.9.0"; 23 24 src = fetchFromGitHub { 25 owner = "skyjake"; 26 repo = "lagrange"; 27 rev = "v${version}"; 28 - sha256 = "sha256-T4LZcdQHqykcv1HnTHMt5LE/1gwKPjN3f0ZmqSCID/A="; 29 fetchSubmodules = true; 30 }; 31
··· 19 20 stdenv.mkDerivation rec { 21 pname = "lagrange"; 22 + version = "1.9.1"; 23 24 src = fetchFromGitHub { 25 owner = "skyjake"; 26 repo = "lagrange"; 27 rev = "v${version}"; 28 + sha256 = "sha256-5mZbx9L7YDG2VwrF/iFhYCw8R/0FOnZz9cRkA5Wl9MA="; 29 fetchSubmodules = true; 30 }; 31
+2 -2
pkgs/applications/networking/cluster/cilium/default.nix
··· 2 3 buildGoModule rec { 4 pname = "cilium-cli"; 5 - version = "0.9.2"; 6 7 src = fetchFromGitHub { 8 owner = "cilium"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-vIm5PkRyh41jtvDrLDxFVzSkhFipYYYEEY0/qxbOXGE="; 12 }; 13 14 vendorSha256 = null;
··· 2 3 buildGoModule rec { 4 pname = "cilium-cli"; 5 + version = "0.9.3"; 6 7 src = fetchFromGitHub { 8 owner = "cilium"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-t4Im3/2qcKnDDcKWmUUa/lsZszDDlos+uTERKxd7x1c="; 12 }; 13 14 vendorSha256 = null;
+2 -2
pkgs/applications/networking/instant-messengers/whatsapp-for-linux/default.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "whatsapp-for-linux"; 17 - version = "1.3.0"; 18 19 src = fetchFromGitHub { 20 owner = "eneshecan"; 21 repo = pname; 22 rev = "v${version}"; 23 - sha256 = "sha256-VdkCjzmZqP/ZVY1H9FxBGe5rN0nZEPZbMp3MVKL6WLc="; 24 }; 25 26 nativeBuildInputs = [
··· 14 15 stdenv.mkDerivation rec { 16 pname = "whatsapp-for-linux"; 17 + version = "1.3.1"; 18 19 src = fetchFromGitHub { 20 owner = "eneshecan"; 21 repo = pname; 22 rev = "v${version}"; 23 + sha256 = "sha256-TX6fMuhe6VHbhWJSsPM0iOV4CuCfULD5McJyHuTW4lI="; 24 }; 25 26 nativeBuildInputs = [
+11 -30
pkgs/applications/networking/mailreaders/claws-mail/default.nix
··· 1 { stdenv, lib, fetchgit, fetchpatch, wrapGAppsHook, autoreconfHook, bison, flex 2 - , curl, gtk2, gtk3, pkg-config, python2, python3, shared-mime-info 3 , glib-networking, gsettings-desktop-schemas 4 - 5 - # Selector between the GTK+ 3 and GTK+ 2 releases. 6 - , useGtk3 7 8 # Package compatibility: old parameters whose name were not directly derived 9 , enablePgp ? true ··· 34 , enablePluginBsfilter ? true 35 , enablePluginClamd ? true 36 , enablePluginDillo ? true 37 - , enablePluginFancy ? useGtk3, libsoup, webkitgtk 38 , enablePluginFetchInfo ? true 39 , enablePluginLibravatar ? enablePluginRavatar 40 , enablePluginLitehtmlViewer ? true, gumbo 41 , enablePluginMailmbox ? true 42 , enablePluginManageSieve ? true 43 , enablePluginNewMail ? true 44 - , enablePluginNotification ? (enablePluginNotificationDialogs || enablePluginNotificationSounds), libcanberra-gtk2, libcanberra-gtk3, libnotify 45 , enablePluginPdfViewer ? enablePluginPdf, poppler 46 , enablePluginPerl ? true, perl 47 , enablePluginPython ? true ··· 57 with lib; 58 59 let 60 - # Last release and hash for both the GTK+ 3 and GTK+ 2 version. 61 - version = if useGtk3 then "4.0.0" else "3.18.0"; 62 - 63 - gtk2src = { 64 - sha256 = "1vsiy3xsppw4d8ylsz70wsyrvmgy88lp2hj7vrc353ckny80r9lh"; 65 - }; 66 - 67 - gtk3src = { 68 - sha256 = "0mwnjiqg2sj61va0y9yi3v52iyr5kzmbnvsqxav3a48m2f8p27qn"; 69 - }; 70 - 71 - python = if useGtk3 then python3 else python2; 72 - pythonPkgs = if useGtk3 73 - then 74 - with python.pkgs; [ python wrapPython pygobject3 ] 75 - else 76 - with python.pkgs; [ python wrapPython pygtk pygobject2 ]; 77 78 features = [ 79 { flags = [ "acpi_notifier-plugin" ]; enabled = enablePluginAcpiNotifier; } ··· 99 { flags = [ "managesieve-plugin" ]; enabled = enablePluginManageSieve; } 100 { flags = [ "networkmanager" ]; enabled = enableNetworkManager; deps = [ networkmanager ]; } 101 { flags = [ "newmail-plugin" ]; enabled = enablePluginNewMail; } 102 - { flags = [ "notification-plugin" ]; enabled = enablePluginNotification; deps = [ libnotify ] ++ [(if useGtk3 then libcanberra-gtk3 else libcanberra-gtk2)]; } 103 { flags = [ "pdf_viewer-plugin" ]; enabled = enablePluginPdfViewer; deps = [ poppler ]; } 104 { flags = [ "perl-plugin" ]; enabled = enablePluginPerl; deps = [ perl ]; } 105 { flags = [ "pgpcore-plugin" "pgpinline-plugin" "pgpmime-plugin" ]; enabled = enablePluginPgp; deps = [ gnupg gpgme ]; } ··· 115 ]; 116 in stdenv.mkDerivation rec { 117 pname = "claws-mail"; 118 - inherit version; 119 120 - src = fetchgit ({ 121 rev = version; 122 url = "git://git.claws-mail.org/claws.git"; 123 - } // (if useGtk3 then gtk3src else gtk2src)); 124 125 outputs = [ "out" "dev" ]; 126 ··· 140 141 preConfigure = '' 142 # autotools check tries to dlopen libpython as a requirement for the python plugin 143 - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}${python}/lib 144 # generate version without .git 145 [ -e version ] || echo "echo ${version}" > version 146 ''; ··· 154 propagatedBuildInputs = pythonPkgs; 155 156 buildInputs = 157 - [ curl gsettings-desktop-schemas glib-networking ] 158 - ++ [(if useGtk3 then gtk3 else gtk2)] 159 ++ concatMap (f: optionals f.enabled f.deps) (filter (f: f ? deps) features) 160 ; 161
··· 1 { stdenv, lib, fetchgit, fetchpatch, wrapGAppsHook, autoreconfHook, bison, flex 2 + , curl, gtk3, pkg-config, python3, shared-mime-info 3 , glib-networking, gsettings-desktop-schemas 4 5 # Package compatibility: old parameters whose name were not directly derived 6 , enablePgp ? true ··· 31 , enablePluginBsfilter ? true 32 , enablePluginClamd ? true 33 , enablePluginDillo ? true 34 + , enablePluginFancy ? true, libsoup, webkitgtk 35 , enablePluginFetchInfo ? true 36 , enablePluginLibravatar ? enablePluginRavatar 37 , enablePluginLitehtmlViewer ? true, gumbo 38 , enablePluginMailmbox ? true 39 , enablePluginManageSieve ? true 40 , enablePluginNewMail ? true 41 + , enablePluginNotification ? (enablePluginNotificationDialogs || enablePluginNotificationSounds), libcanberra-gtk3, libnotify 42 , enablePluginPdfViewer ? enablePluginPdf, poppler 43 , enablePluginPerl ? true, perl 44 , enablePluginPython ? true ··· 54 with lib; 55 56 let 57 + pythonPkgs = with python3.pkgs; [ python3 wrapPython pygobject3 ]; 58 59 features = [ 60 { flags = [ "acpi_notifier-plugin" ]; enabled = enablePluginAcpiNotifier; } ··· 80 { flags = [ "managesieve-plugin" ]; enabled = enablePluginManageSieve; } 81 { flags = [ "networkmanager" ]; enabled = enableNetworkManager; deps = [ networkmanager ]; } 82 { flags = [ "newmail-plugin" ]; enabled = enablePluginNewMail; } 83 + { flags = [ "notification-plugin" ]; enabled = enablePluginNotification; deps = [ libnotify ] ++ [libcanberra-gtk3]; } 84 { flags = [ "pdf_viewer-plugin" ]; enabled = enablePluginPdfViewer; deps = [ poppler ]; } 85 { flags = [ "perl-plugin" ]; enabled = enablePluginPerl; deps = [ perl ]; } 86 { flags = [ "pgpcore-plugin" "pgpinline-plugin" "pgpmime-plugin" ]; enabled = enablePluginPgp; deps = [ gnupg gpgme ]; } ··· 96 ]; 97 in stdenv.mkDerivation rec { 98 pname = "claws-mail"; 99 + version = "4.0.0"; 100 101 + src = fetchgit { 102 rev = version; 103 url = "git://git.claws-mail.org/claws.git"; 104 + sha256 = "0mwnjiqg2sj61va0y9yi3v52iyr5kzmbnvsqxav3a48m2f8p27qn"; 105 + }; 106 107 outputs = [ "out" "dev" ]; 108 ··· 122 123 preConfigure = '' 124 # autotools check tries to dlopen libpython as a requirement for the python plugin 125 + export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}${python3}/lib 126 # generate version without .git 127 [ -e version ] || echo "echo ${version}" > version 128 ''; ··· 136 propagatedBuildInputs = pythonPkgs; 137 138 buildInputs = 139 + [ curl gsettings-desktop-schemas glib-networking gtk3 ] 140 ++ concatMap (f: optionals f.enabled f.deps) (filter (f: f ? deps) features) 141 ; 142
+1 -1
pkgs/applications/office/hledger-check-fancyassertions/default.nix
··· 16 "hledger-check-fancyassertions" 17 { 18 libraries = with haskellPackages; [ 19 - base base-compat base-compat-batteries filepath hledger-lib_1_23 20 megaparsec microlens optparse-applicative string-qq text time 21 transformers 22 ];
··· 16 "hledger-check-fancyassertions" 17 { 18 libraries = with haskellPackages; [ 19 + base base-compat base-compat-batteries filepath hledger-lib_1_24 20 megaparsec microlens optparse-applicative string-qq text time 21 transformers 22 ];
+2 -2
pkgs/applications/video/kodi/unwrapped.nix
··· 198 '' + lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) '' 199 # Need these tools on the build system when cross compiling, 200 # hacky, but have found no other way. 201 - CXX=${stdenv.cc.targetPrefix}c++ LD=ld make -C tools/depends/native/JsonSchemaBuilder 202 cmakeFlags+=" -DWITH_JSONSCHEMABUILDER=$PWD/tools/depends/native/JsonSchemaBuilder/bin" 203 204 - CXX=${stdenv.cc.targetPrefix}c++ LD=ld make EXTRA_CONFIGURE= -C tools/depends/native/TexturePacker 205 cmakeFlags+=" -DWITH_TEXTUREPACKER=$PWD/tools/depends/native/TexturePacker/bin" 206 ''; 207
··· 198 '' + lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) '' 199 # Need these tools on the build system when cross compiling, 200 # hacky, but have found no other way. 201 + CXX=$CXX_FOR_BUILD LD=ld make -C tools/depends/native/JsonSchemaBuilder 202 cmakeFlags+=" -DWITH_JSONSCHEMABUILDER=$PWD/tools/depends/native/JsonSchemaBuilder/bin" 203 204 + CXX=$CXX_FOR_BUILD LD=ld make EXTRA_CONFIGURE= -C tools/depends/native/TexturePacker 205 cmakeFlags+=" -DWITH_TEXTUREPACKER=$PWD/tools/depends/native/TexturePacker/bin" 206 ''; 207
+1 -1
pkgs/applications/video/kodi/wrapper.nix
··· 22 paths = [ kodi ] ++ addons; 23 pathsToLink = [ "/share" ]; 24 25 - buildInputs = [ makeWrapper ]; 26 27 postBuild = '' 28 mkdir $out/bin
··· 22 paths = [ kodi ] ++ addons; 23 pathsToLink = [ "/share" ]; 24 25 + nativeBuildInputs = [ makeWrapper ]; 26 27 postBuild = '' 28 mkdir $out/bin
+2 -2
pkgs/applications/virtualization/runc/default.nix
··· 16 17 buildGoModule rec { 18 pname = "runc"; 19 - version = "1.0.2"; 20 21 src = fetchFromGitHub { 22 owner = "opencontainers"; 23 repo = "runc"; 24 rev = "v${version}"; 25 - sha256 = "sha256-l+Uq7aiXFrI+qbKSOZpYFIXz0VJBBR7ZZxlAJeGb7K4="; 26 }; 27 28 vendorSha256 = null;
··· 16 17 buildGoModule rec { 18 pname = "runc"; 19 + version = "1.0.3"; 20 21 src = fetchFromGitHub { 22 owner = "opencontainers"; 23 repo = "runc"; 24 rev = "v${version}"; 25 + sha256 = "sha256-Tl/JKbIpao+FCjngPzaVkxse50zo3XQ9Mg/AdkblMcI="; 26 }; 27 28 vendorSha256 = null;
+4 -6
pkgs/data/misc/conway_polynomials/default.nix
··· 1 { lib, stdenv 2 , fetchurl 3 - , python2 4 }: 5 6 stdenv.mkDerivation rec { 7 pname = "conway_polynomials"; 8 version = "0.5"; 9 10 - pythonEnv = python2.withPackages (ps: with ps; [ six ]); 11 - 12 src = fetchurl { 13 url = "mirror://sageupstream/conway_polynomials/conway_polynomials-${version}.tar.bz2"; 14 sha256 = "05zb1ly9x2bbscqv0jgc45g48xx77mfs7qdbqhn4ihmihn57iwnq"; ··· 16 17 # Script that creates the "database" (nested python array) and pickles it 18 spkg-install = fetchurl { 19 - url = "https://git.sagemath.org/sage.git/plain/build/pkgs/conway_polynomials/spkg-install.py?id=07d6c37d18811e2b377a9689790a7c5e24da16ba"; 20 - sha256 = "0m12nfb37j3bn4bp06ddgnyp2d6z0hg5f83pbbjszxw7vxs33a82"; 21 }; 22 23 installPhase = '' ··· 31 export SAGE_SHARE="$out/share" 32 export PYTHONPATH=$PWD 33 34 - ${pythonEnv.interpreter} ${spkg-install} 35 ''; 36 37 meta = with lib; {
··· 1 { lib, stdenv 2 , fetchurl 3 + , python3 4 }: 5 6 stdenv.mkDerivation rec { 7 pname = "conway_polynomials"; 8 version = "0.5"; 9 10 src = fetchurl { 11 url = "mirror://sageupstream/conway_polynomials/conway_polynomials-${version}.tar.bz2"; 12 sha256 = "05zb1ly9x2bbscqv0jgc45g48xx77mfs7qdbqhn4ihmihn57iwnq"; ··· 14 15 # Script that creates the "database" (nested python array) and pickles it 16 spkg-install = fetchurl { 17 + url = "https://git.sagemath.org/sage.git/plain/build/pkgs/conway_polynomials/spkg-install.py?id=9.2"; 18 + sha256 = "1bwnqasnyv793hxg29viing4dnliz29grkhldsirq19d509yk1fs"; 19 }; 20 21 installPhase = '' ··· 29 export SAGE_SHARE="$out/share" 30 export PYTHONPATH=$PWD 31 32 + ${python3.interpreter} ${spkg-install} 33 ''; 34 35 meta = with lib; {
+2 -2
pkgs/data/misc/elliptic_curves/default.nix
··· 1 { lib, stdenv 2 , fetchurl 3 - , python2 4 }: 5 6 stdenv.mkDerivation rec { ··· 30 export SAGE_SHARE="$out/share" 31 export PYTHONPATH=$PWD 32 33 - ${python2.interpreter} ${spkg-install} 34 ''; 35 36 meta = with lib; {
··· 1 { lib, stdenv 2 , fetchurl 3 + , python3 4 }: 5 6 stdenv.mkDerivation rec { ··· 30 export SAGE_SHARE="$out/share" 31 export PYTHONPATH=$PWD 32 33 + ${python3.interpreter} ${spkg-install} 34 ''; 35 36 meta = with lib; {
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 { 2 - "commit": "5ac4efab1c8e40b19b0bc4ba833477a4abc75358", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/5ac4efab1c8e40b19b0bc4ba833477a4abc75358.tar.gz", 4 - "sha256": "0xnrdwmc646ghwzp61jp376s9fkpcd74slxc39law7akfp77v4ls", 5 - "msg": "Update from Hackage at 2021-11-18T20:32:52Z" 6 }
··· 1 { 2 + "commit": "d859530d8342c52d09a73d1d125c144725b5945d", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/d859530d8342c52d09a73d1d125c144725b5945d.tar.gz", 4 + "sha256": "0gjahsqqq99dc4bjcx9p3z8adpwy51w3mzrf57nib856jlvlfmv5", 5 + "msg": "Update from Hackage at 2021-12-02T21:05:02Z" 6 }
+2 -2
pkgs/desktops/gnome/apps/gnome-maps/default.nix
··· 29 30 stdenv.mkDerivation rec { 31 pname = "gnome-maps"; 32 - version = "41.1"; 33 34 src = fetchurl { 35 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 36 - sha256 = "sha256-XtyUpXlHDO1HztKSxUq6Z8vnBIGOF0BsCQwB1Dlb4a0="; 37 }; 38 39 doCheck = true;
··· 29 30 stdenv.mkDerivation rec { 31 pname = "gnome-maps"; 32 + version = "41.2"; 33 34 src = fetchurl { 35 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 36 + sha256 = "sha256-gYIbTK/GQc1QDXOzMMY85aBahPBDBxbWPoizyuqs/Qw="; 37 }; 38 39 doCheck = true;
+2 -2
pkgs/desktops/gnome/core/gnome-control-center/default.nix
··· 68 69 stdenv.mkDerivation rec { 70 pname = "gnome-control-center"; 71 - version = "41.1"; 72 73 src = fetchurl { 74 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 75 - sha256 = "sha256-6gxxSExlzizBE3b5sB5iEfpKf/0zT0MH/FLJPw/d1Mc="; 76 }; 77 78 patches = [
··· 68 69 stdenv.mkDerivation rec { 70 pname = "gnome-control-center"; 71 + version = "41.2"; 72 73 src = fetchurl { 74 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 75 + sha256 = "sha256-gnH8azPsJBileDBN0+V9Zl8NfMcGqZqXvkGYSGGP4kg="; 76 }; 77 78 patches = [
+2 -2
pkgs/desktops/gnome/core/gnome-initial-setup/default.nix
··· 35 36 stdenv.mkDerivation rec { 37 pname = "gnome-initial-setup"; 38 - version = "41.0"; 39 40 src = fetchurl { 41 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 42 - sha256 = "R/ZHW2bIQ+fVPZC6Dns5SHYt8VFjSkNvaMK5u6BQVgo="; 43 }; 44 45 patches = [
··· 35 36 stdenv.mkDerivation rec { 37 pname = "gnome-initial-setup"; 38 + version = "41.2"; 39 40 src = fetchurl { 41 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 42 + sha256 = "GTr79qMILaCjKncU8ejVKo20Vycpde0vNlQ2SjM5Gz8="; 43 }; 44 45 patches = [
+2 -2
pkgs/desktops/gnome/core/yelp-xsl/default.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "yelp-xsl"; 13 - version = "41.0"; 14 15 src = fetchurl { 16 url = "mirror://gnome/sources/yelp-xsl/${lib.versions.major version}/${pname}-${version}.tar.xz"; 17 - sha256 = "sha256-yM1kwJO72MXV5H/TiGTpCDG1+c90A1MIcCBvqWY2pKU="; 18 }; 19 20 nativeBuildInputs = [
··· 10 11 stdenv.mkDerivation rec { 12 pname = "yelp-xsl"; 13 + version = "41.1"; 14 15 src = fetchurl { 16 url = "mirror://gnome/sources/yelp-xsl/${lib.versions.major version}/${pname}-${version}.tar.xz"; 17 + sha256 = "sha256-DW2zesLvgSSD4BBHA/H6nPAy6eCVal8cOvvMI3kfilQ="; 18 }; 19 20 nativeBuildInputs = [
+2 -2
pkgs/desktops/gnome/games/aisleriot/default.nix
··· 19 20 stdenv.mkDerivation rec { 21 pname = "aisleriot"; 22 - version = "3.22.19"; 23 24 src = fetchFromGitLab { 25 domain = "gitlab.gnome.org"; 26 owner = "GNOME"; 27 repo = pname; 28 rev = version; 29 - sha256 = "sha256-YY0/HkafcbbW0xuE9RmjYMHN50lM0o0zugOyTefT0bE="; 30 }; 31 32 nativeBuildInputs = [
··· 19 20 stdenv.mkDerivation rec { 21 pname = "aisleriot"; 22 + version = "3.22.20"; 23 24 src = fetchFromGitLab { 25 domain = "gitlab.gnome.org"; 26 owner = "GNOME"; 27 repo = pname; 28 rev = version; 29 + sha256 = "sha256-5xFwlhT9qjtvNDQ8kfGd2BeK2KcJDzpfsEC8z4Ei3ns="; 30 }; 31 32 nativeBuildInputs = [
+34 -25
pkgs/development/haskell-modules/configuration-common.nix
··· 72 name = "git-annex-${super.git-annex.version}-src"; 73 url = "git://git-annex.branchable.com/"; 74 rev = "refs/tags/" + super.git-annex.version; 75 - sha256 = "06njg44840na3ps3s29kjhjba0962vdr2zpd12yvqf16rwgf4zmq"; 76 # delete android and Android directories which cause issues on 77 # darwin (case insensitive directory). Since we don't need them 78 # during the build process, we can delete it to prevent a hash ··· 852 }) 853 super.hledger-lib; 854 855 - # hledger-lib 1.23 depends on doctest >= 0.18 856 - hledger-lib_1_23 = super.hledger-lib_1_23.override { 857 doctest = self.doctest_0_18_2; 858 }; 859 ··· 946 dhall-json = generateOptparseApplicativeCompletions ["dhall-to-json" "dhall-to-yaml"] (dontCheck super.dhall-json); 947 dhall-nix = generateOptparseApplicativeCompletion "dhall-to-nix" super.dhall-nix; 948 dhall-yaml = generateOptparseApplicativeCompletions ["dhall-to-yaml-ng" "yaml-to-dhall"] super.dhall-yaml; 949 950 # https://github.com/haskell-hvr/netrc/pull/2#issuecomment-469526558 951 netrc = doJailbreak super.netrc; ··· 1348 resource-pool = self.hasura-resource-pool; 1349 ekg-core = self.hasura-ekg-core; 1350 ekg-json = self.hasura-ekg-json; 1351 - hspec = dontCheck self.hspec_2_9_1; 1352 - hspec-core = dontCheck self.hspec-core_2_9_1; 1353 - hspec-discover = dontCheck super.hspec-discover_2_9_1; 1354 tasty-hspec = self.tasty-hspec_1_2; 1355 })); 1356 hasura-ekg-core = doJailbreak (super.hasura-ekg-core.overrideScope (self: super: { 1357 - hspec = dontCheck self.hspec_2_9_1; 1358 - hspec-core = dontCheck self.hspec-core_2_9_1; 1359 - hspec-discover = dontCheck super.hspec-discover_2_9_1; 1360 })); 1361 hasura-ekg-json = super.hasura-ekg-json.overrideScope (self: super: { 1362 ekg-core = self.hasura-ekg-core; 1363 - hspec = dontCheck self.hspec_2_9_1; 1364 - hspec-core = dontCheck self.hspec-core_2_9_1; 1365 - hspec-discover = dontCheck super.hspec-discover_2_9_1; 1366 }); 1367 pg-client = overrideCabal (drv: { 1368 librarySystemDepends = with pkgs; [ postgresql krb5.dev openssl.dev ]; ··· 1842 # https://github.com/enomsg/science-constants-dimensional/pull/1 1843 science-constants-dimensional = doJailbreak super.science-constants-dimensional; 1844 1845 - # Tests are flaky on busy machines 1846 # https://github.com/merijn/paramtree/issues/4 1847 paramtree = dontCheck super.paramtree; 1848 ··· 1973 composite-aeson = assert super.composite-aeson.version == "0.7.5.0"; 1974 doJailbreak super.composite-aeson; 1975 1976 - # Too strict bounds on profunctors 1977 - # https://github.com/google/proto-lens/issues/413 1978 - proto-lens = doJailbreak super.proto-lens; 1979 - 1980 # 2021-06-20: Outdated upper bounds 1981 # https://github.com/Porges/email-validate-hs/issues/58 1982 email-validate = doJailbreak super.email-validate; ··· 2006 ghcup = doJailbreak (super.ghcup.overrideScope (self: super: { 2007 hspec-golden-aeson = self.hspec-golden-aeson_0_9_0_0; 2008 optics = self.optics_0_4; 2009 - streamly = self.streamly_0_8_0; 2010 Cabal = self.Cabal_3_6_2_0; 2011 libyaml-streamly = markUnbroken super.libyaml-streamly; 2012 })); ··· 2097 2098 # Jailbreak isn't sufficient, but this is ok as it's a leaf package. 2099 hadolint = super.hadolint.overrideScope (self: super: { 2100 - language-docker = self.language-docker_10_3_0; 2101 - hspec = dontCheck self.hspec_2_9_1; 2102 - hspec-core = dontCheck self.hspec-core_2_9_1; 2103 - hspec-discover = dontCheck self.hspec-discover_2_9_1; 2104 colourista = doJailbreak super.colourista; 2105 }); 2106 2107 # These should be updated in lockstep 2108 - hledger_1_23 = super.hledger_1_23.override { 2109 - hledger-lib = self.hledger-lib_1_23; 2110 }; 2111 2112 # Needs brick > 0.64 2113 nix-tree = super.nix-tree.override { 2114 - brick = self.brick_0_64_2; 2115 }; 2116 2117 # build newer version for `pkgs.shellcheck` 2118 ShellCheck_0_8_0 = doDistribute super.ShellCheck_0_8_0; 2119 2120 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
··· 72 name = "git-annex-${super.git-annex.version}-src"; 73 url = "git://git-annex.branchable.com/"; 74 rev = "refs/tags/" + super.git-annex.version; 75 + sha256 = "1x2d0gfqxxfygzigm34n0spaxh8bwipxs9317f6c5lkpj916p957"; 76 # delete android and Android directories which cause issues on 77 # darwin (case insensitive directory). Since we don't need them 78 # during the build process, we can delete it to prevent a hash ··· 852 }) 853 super.hledger-lib; 854 855 + # hledger-lib 1.24 depends on doctest >= 0.18 856 + hledger-lib_1_24 = super.hledger-lib_1_24.override { 857 doctest = self.doctest_0_18_2; 858 }; 859 ··· 946 dhall-json = generateOptparseApplicativeCompletions ["dhall-to-json" "dhall-to-yaml"] (dontCheck super.dhall-json); 947 dhall-nix = generateOptparseApplicativeCompletion "dhall-to-nix" super.dhall-nix; 948 dhall-yaml = generateOptparseApplicativeCompletions ["dhall-to-yaml-ng" "yaml-to-dhall"] super.dhall-yaml; 949 + # Too strict lower bound on base64-bytestring 950 + # https://github.com/dhall-lang/dhall-haskell/issues/2346 951 + dhall-nixpkgs = overrideCabal (drv: { 952 + revision = assert !(drv ? revision); "1"; 953 + editedCabalFile = "0ld4z4d3gw9mxyhm5g2hgw4w68izjnwrcqd6j7yhwhrblhdmqrr4"; 954 + }) (generateOptparseApplicativeCompletion "dhall-to-nixpkgs" super.dhall-nixpkgs); 955 956 # https://github.com/haskell-hvr/netrc/pull/2#issuecomment-469526558 957 netrc = doJailbreak super.netrc; ··· 1354 resource-pool = self.hasura-resource-pool; 1355 ekg-core = self.hasura-ekg-core; 1356 ekg-json = self.hasura-ekg-json; 1357 + hspec = dontCheck self.hspec_2_9_2; 1358 + hspec-core = dontCheck self.hspec-core_2_9_2; 1359 + hspec-discover = dontCheck super.hspec-discover_2_9_2; 1360 tasty-hspec = self.tasty-hspec_1_2; 1361 })); 1362 hasura-ekg-core = doJailbreak (super.hasura-ekg-core.overrideScope (self: super: { 1363 + hspec = dontCheck self.hspec_2_9_2; 1364 + hspec-core = dontCheck self.hspec-core_2_9_2; 1365 + hspec-discover = dontCheck super.hspec-discover_2_9_2; 1366 })); 1367 hasura-ekg-json = super.hasura-ekg-json.overrideScope (self: super: { 1368 ekg-core = self.hasura-ekg-core; 1369 + hspec = dontCheck self.hspec_2_9_2; 1370 + hspec-core = dontCheck self.hspec-core_2_9_2; 1371 + hspec-discover = dontCheck super.hspec-discover_2_9_2; 1372 }); 1373 pg-client = overrideCabal (drv: { 1374 librarySystemDepends = with pkgs; [ postgresql krb5.dev openssl.dev ]; ··· 1848 # https://github.com/enomsg/science-constants-dimensional/pull/1 1849 science-constants-dimensional = doJailbreak super.science-constants-dimensional; 1850 1851 + # Tests are flaky on busy machines, upstream doesn't intend to fix 1852 # https://github.com/merijn/paramtree/issues/4 1853 paramtree = dontCheck super.paramtree; 1854 ··· 1979 composite-aeson = assert super.composite-aeson.version == "0.7.5.0"; 1980 doJailbreak super.composite-aeson; 1981 1982 # 2021-06-20: Outdated upper bounds 1983 # https://github.com/Porges/email-validate-hs/issues/58 1984 email-validate = doJailbreak super.email-validate; ··· 2008 ghcup = doJailbreak (super.ghcup.overrideScope (self: super: { 2009 hspec-golden-aeson = self.hspec-golden-aeson_0_9_0_0; 2010 optics = self.optics_0_4; 2011 + streamly = self.streamly_0_8_1; 2012 Cabal = self.Cabal_3_6_2_0; 2013 libyaml-streamly = markUnbroken super.libyaml-streamly; 2014 })); ··· 2099 2100 # Jailbreak isn't sufficient, but this is ok as it's a leaf package. 2101 hadolint = super.hadolint.overrideScope (self: super: { 2102 + language-docker = self.language-docker_10_4_0; 2103 + hspec = dontCheck self.hspec_2_9_2; 2104 + hspec-core = dontCheck self.hspec-core_2_9_2; 2105 + hspec-discover = dontCheck self.hspec-discover_2_9_2; 2106 colourista = doJailbreak super.colourista; 2107 }); 2108 2109 # These should be updated in lockstep 2110 + hledger_1_24 = super.hledger_1_24.override { 2111 + hledger-lib = self.hledger-lib_1_24; 2112 }; 2113 2114 # Needs brick > 0.64 2115 nix-tree = super.nix-tree.override { 2116 + brick = self.brick_0_65; 2117 }; 2118 2119 # build newer version for `pkgs.shellcheck` 2120 ShellCheck_0_8_0 = doDistribute super.ShellCheck_0_8_0; 2121 + 2122 + # test suite requires stack to run, https://github.com/dino-/photoname/issues/24 2123 + photoname = dontCheck super.photoname; 2124 + 2125 + # Too strict bounds on recursive-zipper 2126 + # https://github.com/ChrisPenner/jet/issues/1 2127 + jet = doJailbreak super.jet; 2128 2129 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
+2 -2
pkgs/development/haskell-modules/configuration-darwin.nix
··· 250 c2hsc = addTestToolDepends [ pkgs.gcc ] super.c2hsc; 251 252 # streamly depends on Cocoa starting with 0.8.0 253 - streamly_0_8_0 = overrideCabal (drv: { 254 libraryFrameworkDepends = [ 255 darwin.apple_sdk.frameworks.Cocoa 256 ] ++ (drv.libraryFrameworkDepends or []); 257 - }) super.streamly_0_8_0; 258 259 } // lib.optionalAttrs pkgs.stdenv.isAarch64 { # aarch64-darwin 260
··· 250 c2hsc = addTestToolDepends [ pkgs.gcc ] super.c2hsc; 251 252 # streamly depends on Cocoa starting with 0.8.0 253 + streamly_0_8_1 = overrideCabal (drv: { 254 libraryFrameworkDepends = [ 255 darwin.apple_sdk.frameworks.Cocoa 256 ] ++ (drv.libraryFrameworkDepends or []); 257 + }) super.streamly_0_8_1; 258 259 } // lib.optionalAttrs pkgs.stdenv.isAarch64 { # aarch64-darwin 260
+13 -26
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 78 # 2021-11-08: Fixed in autoapply-0.4.2 79 autoapply = doJailbreak self.autoapply_0_4_1_1; 80 81 - # Doesn't allow Dhall 1.39.* 82 - weeder_2_3_0 = super.weeder_2_3_0.override { 83 - dhall = self.dhall_1_40_1; 84 - }; 85 86 # Upstream also disables test for GHC 9: https://github.com/kcsongor/generic-lens/pull/130 87 generic-lens_2_2_0_0 = dontCheck super.generic-lens_2_2_0_0; ··· 129 # 2021-09-18: Need semialign >= 1.2 for correct bounds 130 semialign = super.semialign_1_2_0_1; 131 132 - # Will probably be needed for brittany support 133 - # https://github.com/lspitzner/czipwith/pull/2 134 - #czipwith = appendPatch 135 - # (pkgs.fetchpatch { 136 - # url = "https://github.com/lspitzner/czipwith/commit/b6245884ae83e00dd2b5261762549b37390179f8.patch"; 137 - # sha256 = "08rpppdldsdwzb09fmn0j55l23pwyls2dyzziw3yjc1cm0j5vic5"; 138 - # }) super.czipwith; 139 - 140 - # 2021-09-18: https://github.com/mokus0/th-extras/pull/8 141 - # Release is missing, but asked for in the above PR. 142 - th-extras = overrideCabal (old: { 143 - version = assert old.version == "0.0.0.4"; "unstable-2021-09-18"; 144 - src = pkgs.fetchFromGitHub { 145 - owner = "mokus0"; 146 - repo = "th-extras"; 147 - rev = "0d050b24ec5ef37c825b6f28ebd46787191e2a2d"; 148 - sha256 = "045f36yagrigrggvyb96zqmw8y42qjsllhhx2h20q25sk5h44xsd"; 149 - }; 150 - libraryHaskellDepends = old.libraryHaskellDepends ++ [self.th-abstraction]; 151 - }) super.th-extras; 152 - 153 # 2021-09-18: GHC 9 compat release is missing 154 # Issue: https://github.com/obsidiansystems/dependent-sum/issues/65 155 dependent-sum-template = dontCheck (appendPatch ··· 173 # Restrictive upper bound on ormolu 174 hls-ormolu-plugin = doJailbreak super.hls-ormolu-plugin; 175 176 # 2021-09-18: The following plugins don‘t work yet on ghc9. 177 haskell-language-server = appendConfigureFlags [ 178 "-f-tactic" ··· 191 192 hls-fourmolu-plugin = null; # No upstream support, needs new fourmolu release 193 hls-stylish-haskell-plugin = null; # No upstream support 194 - hls-brittany-plugin = null; # No upstream support, needs new brittany release 195 }); 196 }
··· 78 # 2021-11-08: Fixed in autoapply-0.4.2 79 autoapply = doJailbreak self.autoapply_0_4_1_1; 80 81 + # Doesn't allow Dhall 1.39.*; forbids lens 5.1 82 + weeder_2_3_0 = doJailbreak (super.weeder_2_3_0.override { 83 + dhall = self.dhall_1_40_2; 84 + }); 85 86 # Upstream also disables test for GHC 9: https://github.com/kcsongor/generic-lens/pull/130 87 generic-lens_2_2_0_0 = dontCheck super.generic-lens_2_2_0_0; ··· 129 # 2021-09-18: Need semialign >= 1.2 for correct bounds 130 semialign = super.semialign_1_2_0_1; 131 132 # 2021-09-18: GHC 9 compat release is missing 133 # Issue: https://github.com/obsidiansystems/dependent-sum/issues/65 134 dependent-sum-template = dontCheck (appendPatch ··· 152 # Restrictive upper bound on ormolu 153 hls-ormolu-plugin = doJailbreak super.hls-ormolu-plugin; 154 155 + # Too strict bounds on base 156 + # https://github.com/lspitzner/multistate/issues/9 157 + multistate = doJailbreak super.multistate; 158 + # https://github.com/lspitzner/butcher/issues/7 159 + butcher = doJailbreak super.butcher; 160 + # Fixes a bug triggered on GHC 9.0.1 161 + text-short = self.text-short_0_1_4; 162 + 163 # 2021-09-18: The following plugins don‘t work yet on ghc9. 164 haskell-language-server = appendConfigureFlags [ 165 "-f-tactic" ··· 178 179 hls-fourmolu-plugin = null; # No upstream support, needs new fourmolu release 180 hls-stylish-haskell-plugin = null; # No upstream support 181 + hls-brittany-plugin = null; # Dependencies don't build with 9.0.1 182 }); 183 }
+24 -3
pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
··· 97 data-fix = doJailbreak super.data-fix; 98 dec = doJailbreak super.dec; 99 ed25519 = doJailbreak super.ed25519; 100 ghc-byteorder = doJailbreak super.ghc-byteorder; 101 ghc-lib = self.ghc-lib_9_2_1_20211101; 102 ghc-lib-parser = self.ghc-lib-parser_9_2_1_20211101; 103 ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_1; 104 hackage-security = doJailbreak super.hackage-security; 105 - hashable = super.hashable_1_4_0_0; 106 hashable-time = doJailbreak super.hashable-time_0_3; 107 hedgehog = doJailbreak super.hedgehog; 108 HTTP = overrideCabal (drv: { postPatch = "sed -i -e 's,! Socket,!Socket,' Network/TCP.hs"; }) (doJailbreak super.HTTP); ··· 112 lifted-async = doJailbreak super.lifted-async; 113 lukko = doJailbreak super.lukko; 114 network = super.network_3_1_2_5; 115 OneTuple = super.OneTuple_0_3_1; 116 parallel = doJailbreak super.parallel; 117 polyparse = overrideCabal (drv: { postPatch = "sed -i -e 's, <0.11, <0.12,' polyparse.cabal"; }) (doJailbreak super.polyparse); 118 primitive = doJailbreak super.primitive; 119 - quickcheck-instances = super.quickcheck-instances_0_3_26_1; 120 regex-posix = doJailbreak super.regex-posix; 121 resolv = doJailbreak super.resolv; 122 semialign = super.semialign_1_2_0_1; ··· 147 ] ++ drv.testFlags or []; 148 }) (doJailbreak super.hpack); 149 150 # lens >= 5.1 supports 9.2.1 151 lens = super.lens_5_1; 152 ··· 175 memory = appendPatch (pkgs.fetchpatch { 176 url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/memory-0.16.0.patch"; 177 sha256 = "1kjganx729a6xfgfnrb3z7q6mvnidl042zrsd9n5n5a3i76nl5nl"; 178 - }) super.memory_0_16_0; 179 180 # GHC 9.0.x doesn't like `import Spec (main)` in Main.hs 181 # https://github.com/snoyberg/mono-traversable/issues/192
··· 97 data-fix = doJailbreak super.data-fix; 98 dec = doJailbreak super.dec; 99 ed25519 = doJailbreak super.ed25519; 100 + genvalidity = self.genvalidity_1_0_0_1; 101 + genvalidity-property = self.genvalidity-property_1_0_0_0; 102 + genvalidity-hspec = self.genvalidity-hspec_1_0_0_0; 103 ghc-byteorder = doJailbreak super.ghc-byteorder; 104 ghc-lib = self.ghc-lib_9_2_1_20211101; 105 ghc-lib-parser = self.ghc-lib-parser_9_2_1_20211101; 106 ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_1; 107 hackage-security = doJailbreak super.hackage-security; 108 + hashable = super.hashable_1_4_0_1; 109 hashable-time = doJailbreak super.hashable-time_0_3; 110 hedgehog = doJailbreak super.hedgehog; 111 HTTP = overrideCabal (drv: { postPatch = "sed -i -e 's,! Socket,!Socket,' Network/TCP.hs"; }) (doJailbreak super.HTTP); ··· 115 lifted-async = doJailbreak super.lifted-async; 116 lukko = doJailbreak super.lukko; 117 network = super.network_3_1_2_5; 118 + ormolu = self.ormolu_0_4_0_0; 119 OneTuple = super.OneTuple_0_3_1; 120 parallel = doJailbreak super.parallel; 121 + path = doJailbreak super.path_0_9_1; 122 polyparse = overrideCabal (drv: { postPatch = "sed -i -e 's, <0.11, <0.12,' polyparse.cabal"; }) (doJailbreak super.polyparse); 123 primitive = doJailbreak super.primitive; 124 + quickcheck-instances = super.quickcheck-instances_0_3_27; 125 regex-posix = doJailbreak super.regex-posix; 126 resolv = doJailbreak super.resolv; 127 semialign = super.semialign_1_2_0_1; ··· 152 ] ++ drv.testFlags or []; 153 }) (doJailbreak super.hpack); 154 155 + validity = pkgs.lib.pipe super.validity_0_12_0_0 [ 156 + # head.hackage patch 157 + (appendPatch (pkgs.fetchpatch { 158 + url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/validity-0.11.0.1.patch"; 159 + sha256 = "0qs6g1naqvcvklk78cadnpsfqnff1yflryi2ms6im203w75f2fsc"; 160 + })) 161 + # head.hackage ignores test suite 162 + dontCheck 163 + # 0.12.0.0 disabled CPP in fetched file, breaks haddock 164 + (appendConfigureFlag "--ghc-option=-XCPP") 165 + dontHaddock 166 + ]; 167 + 168 # lens >= 5.1 supports 9.2.1 169 lens = super.lens_5_1; 170 ··· 193 memory = appendPatch (pkgs.fetchpatch { 194 url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/memory-0.16.0.patch"; 195 sha256 = "1kjganx729a6xfgfnrb3z7q6mvnidl042zrsd9n5n5a3i76nl5nl"; 196 + }) (overrideCabal { 197 + editedCabalFile = null; 198 + revision = null; 199 + } super.memory_0_16_0); 200 201 # GHC 9.0.x doesn't like `import Spec (main)` in Main.hs 202 # https://github.com/snoyberg/mono-traversable/issues/192
+2
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 1124 - docopt 1125 - docrecords 1126 - doctest-discover-configurator 1127 - doctest-prop 1128 - docusign-example 1129 - docvim ··· 3563 - pandoc-filter-indent 3564 - pandoc-include 3565 - pandoc-lens 3566 - pandoc-markdown-ghci-filter 3567 - pandoc-placetable 3568 - pandoc-pyplot
··· 1124 - docopt 1125 - docrecords 1126 - doctest-discover-configurator 1127 + - doctest-parallel 1128 - doctest-prop 1129 - docusign-example 1130 - docvim ··· 3564 - pandoc-filter-indent 3565 - pandoc-include 3566 - pandoc-lens 3567 + - pandoc-lua-marshal 3568 - pandoc-markdown-ghci-filter 3569 - pandoc-placetable 3570 - pandoc-pyplot
+7
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 122 - gi-webkit2webextension < 4.0.27 123 - gi-wnck < 3.0.11 124 # gi-cogl, gi-coglpango, gi-clutter, gi-json, gi-rsvg are only available for haskell-gi >= 0.26 125 126 extra-packages: 127 - base16-bytestring < 1 # required for cabal-install etc. ··· 155 - ghc-lib-parser == 9.0.1.* # 2021-11-05: Need one GHC 9.0.1 compatible version 156 - ghc-lib-parser-ex == 9.0.* # 2021-11-05: Need one GHC 9.0.1 compatible version 157 - doctest == 0.18.* # 2021-11-19: closest to stackage version for GHC 9.* 158 159 package-maintainers: 160 abbradar:
··· 122 - gi-webkit2webextension < 4.0.27 123 - gi-wnck < 3.0.11 124 # gi-cogl, gi-coglpango, gi-clutter, gi-json, gi-rsvg are only available for haskell-gi >= 0.26 125 + # 1.2.1.0 needs opaleye >= 0.8 which stackage doesn't provide 126 + - rel8 < 1.2.1.0 127 + # 0.14.0.0 drops support for every GHC < 9.0.1 128 + - brittany < 0.14 129 130 extra-packages: 131 - base16-bytestring < 1 # required for cabal-install etc. ··· 159 - ghc-lib-parser == 9.0.1.* # 2021-11-05: Need one GHC 9.0.1 compatible version 160 - ghc-lib-parser-ex == 9.0.* # 2021-11-05: Need one GHC 9.0.1 compatible version 161 - doctest == 0.18.* # 2021-11-19: closest to stackage version for GHC 9.* 162 + - brick == 0.64.* # 2021-12-03: matterhorn depends on brick < 0.65 163 + - path == 0.9.0 # 2021-12-03: path version building with stackage genvalidity and GHC 9.0.1 164 + - ormolu == 0.3.* # 2021-12-03: for HLS with GHC 9.0.1 165 166 package-maintainers: 167 abbradar:
+31 -31
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 18.17 2 # This file is auto-generated by 3 # maintainers/scripts/haskell/update-stackage.sh 4 default-package-overrides: ··· 155 - appendmap ==0.1.5 156 - apply-refact ==0.9.3.0 157 - apportionment ==0.0.0.3 158 - - approximate ==0.3.4 159 - approximate-equality ==1.1.0.2 160 - app-settings ==0.2.0.12 161 - arbor-lru-cache ==0.1.1.1 ··· 200 - autoexporter ==1.1.20 201 - auto-update ==0.1.6 202 - avro ==0.5.2.0 203 - - aws-cloudfront-signed-cookies ==0.2.0.8 204 - aws-xray-client ==0.1.0.1 205 - aws-xray-client-wai ==0.1.0.1 206 - backprop ==0.2.6.4 ··· 551 - data-dword ==0.3.2 552 - data-endian ==0.1.1 553 - data-fix ==0.3.2 554 - - data-forest ==0.1.0.8 555 - data-has ==0.4.0.0 556 - data-hash ==0.2.0.1 557 - data-interval ==2.1.1 ··· 624 - doctemplates ==0.9 625 - doctest ==0.17 626 - doctest-discover ==0.2.0.0 627 - - doctest-driver-gen ==0.3.0.4 628 - doctest-exitcode-stdio ==0.0 629 - doctest-extract ==0.1 630 - doctest-lib ==0.1 ··· 703 - error-or-utils ==0.1.1 704 - errors ==2.3.0 705 - errors-ext ==0.4.2 706 - - ersatz ==0.4.9 707 - esqueleto ==3.5.3.0 708 - essence-of-live-coding ==0.2.5 709 - essence-of-live-coding-gloss ==0.2.5 ··· 796 - fold-debounce ==0.2.0.9 797 - fold-debounce-conduit ==0.2.0.6 798 - foldl ==1.4.12 799 - - folds ==0.7.6 800 - follow-file ==0.0.3 801 - FontyFruity ==0.5.3.5 802 - foreign-store ==0.2 ··· 829 - fuzzcheck ==0.1.1 830 - fuzzy ==0.1.0.1 831 - fuzzy-dates ==0.1.1.2 832 - - fuzzyset ==0.2.1 833 - fuzzy-time ==0.1.0.0 834 - gauge ==0.2.5 835 - gd ==3000.7.3 ··· 919 - gi-gobject ==2.0.26 920 - gi-graphene ==1.0.3 921 - gi-gtk ==3.0.37 922 - - gi-gtk-hs ==0.3.10 923 - gi-harfbuzz ==0.0.4 924 - ginger ==0.10.1.0 925 - gingersnap ==0.3.1.0 ··· 938 - Glob ==0.10.2 939 - gloss ==1.13.2.1 940 - gloss-rendering ==1.13.1.1 941 - - GLURaw ==2.0.0.4 942 - GLUT ==2.7.0.16 943 - gluturtle ==0.0.58.1 944 - gnuplot ==0.5.6.1 ··· 1207 - hxt-unicode ==9.0.2.4 1208 - hybrid-vectors ==0.2.2 1209 - hyper ==0.2.1.1 1210 - - hyperloglog ==0.4.4 1211 - hyphenation ==0.8.2 1212 - iconv ==0.4.1.3 1213 - identicon ==0.2.2 ··· 1238 - inj ==1.0 1239 - inline-c ==0.9.1.5 1240 - inline-c-cpp ==0.4.0.3 1241 - - inline-r ==0.10.4 1242 - inliterate ==0.1.0 1243 - input-parsers ==0.2.3.1 1244 - - insert-ordered-containers ==0.2.5 1245 - inspection-testing ==0.4.6.0 1246 - instance-control ==0.1.2.0 1247 - int-cast ==0.2.0.0 ··· 1364 - leapseconds-announced ==2017.1.0.1 1365 - learn-physics ==0.6.5 1366 - lens ==4.19.2 1367 - - lens-action ==0.2.5 1368 - - lens-aeson ==1.1.2 1369 - lens-csv ==0.1.1.0 1370 - lens-datetime ==0.3 1371 - lens-family ==2.0.0 ··· 1417 - locators ==0.3.0.3 1418 - loch-th ==0.2.2 1419 - lockfree-queue ==0.2.3.1 1420 - - log-domain ==0.13.1 1421 - logfloat ==0.13.4 1422 - logging ==3.0.5 1423 - - logging-facade ==0.3.0 1424 - logging-facade-syslog ==1 1425 - logict ==0.7.1.0 1426 - logstash ==0.1.0.1 ··· 1639 - nonemptymap ==0.0.6.0 1640 - non-empty-sequence ==0.2.0.4 1641 - nonempty-vector ==0.2.1.0 1642 - - nonempty-zipper ==1.0.0.2 1643 - non-negative ==0.1.2 1644 - not-gloss ==0.7.7.0 1645 - no-value ==1.0.0.0 ··· 1679 - open-browser ==0.2.1.0 1680 - openexr-write ==0.1.0.2 1681 - OpenGL ==3.0.3.0 1682 - - OpenGLRaw ==3.3.4.0 1683 - openpgp-asciiarmor ==0.1.2 1684 - opensource ==0.1.1.0 1685 - openssl-streams ==1.2.3.0 ··· 1848 - primitive-addr ==0.1.0.2 1849 - primitive-extras ==0.10.1 1850 - primitive-unaligned ==0.1.1.1 1851 - - primitive-unlifted ==0.1.3.0 1852 - prim-uniq ==0.2 1853 - print-console-colors ==0.1.0.0 1854 - probability ==0.2.7 ··· 1882 - pureMD5 ==2.1.4 1883 - purescript-bridge ==0.14.0.0 1884 - pushbullet-types ==0.4.1.0 1885 - - pusher-http-haskell ==2.1.0.6 1886 - pvar ==1.0.0.0 1887 - PyF ==0.9.0.3 1888 - qchas ==1.1.0.1 ··· 1965 - regex ==1.1.0.0 1966 - regex-applicative ==0.3.4 1967 - regex-applicative-text ==0.1.0.1 1968 - - regex-base ==0.94.0.1 1969 - regex-compat ==0.95.2.1 1970 - regex-compat-tdfa ==0.95.1.4 1971 - regex-pcre ==0.95.0.0 ··· 2241 - storable-record ==0.0.5 2242 - storable-tuple ==0.0.3.3 2243 - storablevector ==0.2.13.1 2244 - - store ==0.7.12 2245 - store-core ==0.4.4.4 2246 - store-streaming ==0.2.0.3 2247 - stratosphere ==0.59.1 ··· 2392 - these-optics ==1.0.1.2 2393 - these-skinny ==0.7.4 2394 - th-expand-syns ==0.4.8.0 2395 - - th-extras ==0.0.0.4 2396 - th-lift ==0.8.2 2397 - th-lift-instances ==0.1.18 2398 - th-nowq ==0.1.0.5 ··· 2451 - tree-diff ==0.2.1 2452 - tree-fun ==0.8.1.0 2453 - tree-view ==0.5.1 2454 - - trifecta ==2.1.1 2455 - triplesec ==0.2.2.1 2456 - trivial-constraint ==0.7.0.0 2457 - tsv2csv ==0.1.0.2 ··· 2462 - tuples-homogenous-h98 ==0.1.1.0 2463 - tuple-sop ==0.3.1.0 2464 - tuple-th ==0.2.5 2465 - - turtle ==1.5.22 2466 - typecheck-plugin-nat-simple ==0.1.0.2 2467 - TypeCompose ==0.9.14 2468 - typed-process ==0.2.7.0 ··· 2498 - unexceptionalio-trans ==0.5.1 2499 - unicode ==0.0.1.1 2500 - unicode-collation ==0.1.3.1 2501 - - unicode-show ==0.1.0.5 2502 - unicode-transforms ==0.3.7.1 2503 - unification-fd ==0.11.1 2504 - union-angle ==0.1.0.1 ··· 2543 - utility-ht ==0.0.16 2544 - uuid ==1.3.15 2545 - uuid-types ==1.0.5 2546 - - validation ==1.1.1 2547 - validation-selective ==0.1.0.1 2548 - validity ==0.11.0.1 2549 - validity-aeson ==0.2.0.4 ··· 2608 - wai-slack-middleware ==0.2.0 2609 - wai-websockets ==3.0.1.2 2610 - wakame ==0.1.0.0 2611 - - warp ==3.3.17 2612 - warp-tls ==3.3.2 2613 - warp-tls-uid ==0.2.0.6 2614 - wave ==0.2.0 ··· 2686 - yaml ==0.11.7.0 2687 - yamlparse-applicative ==0.2.0.1 2688 - yesod ==1.6.1.2 2689 - - yesod-auth ==1.6.10.4 2690 - yesod-auth-hashdb ==1.7.1.7 2691 - yesod-auth-oauth2 ==0.6.3.4 2692 - yesod-bin ==1.6.1 ··· 2719 - zip ==1.7.2 2720 - zip-archive ==0.4.1 2721 - zipper-extra ==0.1.3.2 2722 - - zippers ==0.3.1 2723 - zip-stream ==0.2.1.0 2724 - zlib ==0.6.2.3 2725 - zlib-bindings ==0.1.1.5
··· 1 + # Stackage LTS 18.18 2 # This file is auto-generated by 3 # maintainers/scripts/haskell/update-stackage.sh 4 default-package-overrides: ··· 155 - appendmap ==0.1.5 156 - apply-refact ==0.9.3.0 157 - apportionment ==0.0.0.3 158 + - approximate ==0.3.5 159 - approximate-equality ==1.1.0.2 160 - app-settings ==0.2.0.12 161 - arbor-lru-cache ==0.1.1.1 ··· 200 - autoexporter ==1.1.20 201 - auto-update ==0.1.6 202 - avro ==0.5.2.0 203 + - aws-cloudfront-signed-cookies ==0.2.0.10 204 - aws-xray-client ==0.1.0.1 205 - aws-xray-client-wai ==0.1.0.1 206 - backprop ==0.2.6.4 ··· 551 - data-dword ==0.3.2 552 - data-endian ==0.1.1 553 - data-fix ==0.3.2 554 + - data-forest ==0.1.0.9 555 - data-has ==0.4.0.0 556 - data-hash ==0.2.0.1 557 - data-interval ==2.1.1 ··· 624 - doctemplates ==0.9 625 - doctest ==0.17 626 - doctest-discover ==0.2.0.0 627 + - doctest-driver-gen ==0.3.0.5 628 - doctest-exitcode-stdio ==0.0 629 - doctest-extract ==0.1 630 - doctest-lib ==0.1 ··· 703 - error-or-utils ==0.1.1 704 - errors ==2.3.0 705 - errors-ext ==0.4.2 706 + - ersatz ==0.4.10 707 - esqueleto ==3.5.3.0 708 - essence-of-live-coding ==0.2.5 709 - essence-of-live-coding-gloss ==0.2.5 ··· 796 - fold-debounce ==0.2.0.9 797 - fold-debounce-conduit ==0.2.0.6 798 - foldl ==1.4.12 799 + - folds ==0.7.7 800 - follow-file ==0.0.3 801 - FontyFruity ==0.5.3.5 802 - foreign-store ==0.2 ··· 829 - fuzzcheck ==0.1.1 830 - fuzzy ==0.1.0.1 831 - fuzzy-dates ==0.1.1.2 832 + - fuzzyset ==0.2.2 833 - fuzzy-time ==0.1.0.0 834 - gauge ==0.2.5 835 - gd ==3000.7.3 ··· 919 - gi-gobject ==2.0.26 920 - gi-graphene ==1.0.3 921 - gi-gtk ==3.0.37 922 + - gi-gtk-hs ==0.3.11 923 - gi-harfbuzz ==0.0.4 924 - ginger ==0.10.1.0 925 - gingersnap ==0.3.1.0 ··· 938 - Glob ==0.10.2 939 - gloss ==1.13.2.1 940 - gloss-rendering ==1.13.1.1 941 + - GLURaw ==2.0.0.5 942 - GLUT ==2.7.0.16 943 - gluturtle ==0.0.58.1 944 - gnuplot ==0.5.6.1 ··· 1207 - hxt-unicode ==9.0.2.4 1208 - hybrid-vectors ==0.2.2 1209 - hyper ==0.2.1.1 1210 + - hyperloglog ==0.4.5 1211 - hyphenation ==0.8.2 1212 - iconv ==0.4.1.3 1213 - identicon ==0.2.2 ··· 1238 - inj ==1.0 1239 - inline-c ==0.9.1.5 1240 - inline-c-cpp ==0.4.0.3 1241 + - inline-r ==0.10.5 1242 - inliterate ==0.1.0 1243 - input-parsers ==0.2.3.1 1244 + - insert-ordered-containers ==0.2.5.1 1245 - inspection-testing ==0.4.6.0 1246 - instance-control ==0.1.2.0 1247 - int-cast ==0.2.0.0 ··· 1364 - leapseconds-announced ==2017.1.0.1 1365 - learn-physics ==0.6.5 1366 - lens ==4.19.2 1367 + - lens-action ==0.2.6 1368 + - lens-aeson ==1.1.3 1369 - lens-csv ==0.1.1.0 1370 - lens-datetime ==0.3 1371 - lens-family ==2.0.0 ··· 1417 - locators ==0.3.0.3 1418 - loch-th ==0.2.2 1419 - lockfree-queue ==0.2.3.1 1420 + - log-domain ==0.13.2 1421 - logfloat ==0.13.4 1422 - logging ==3.0.5 1423 + - logging-facade ==0.3.1 1424 - logging-facade-syslog ==1 1425 - logict ==0.7.1.0 1426 - logstash ==0.1.0.1 ··· 1639 - nonemptymap ==0.0.6.0 1640 - non-empty-sequence ==0.2.0.4 1641 - nonempty-vector ==0.2.1.0 1642 + - nonempty-zipper ==1.0.0.3 1643 - non-negative ==0.1.2 1644 - not-gloss ==0.7.7.0 1645 - no-value ==1.0.0.0 ··· 1679 - open-browser ==0.2.1.0 1680 - openexr-write ==0.1.0.2 1681 - OpenGL ==3.0.3.0 1682 + - OpenGLRaw ==3.3.4.1 1683 - openpgp-asciiarmor ==0.1.2 1684 - opensource ==0.1.1.0 1685 - openssl-streams ==1.2.3.0 ··· 1848 - primitive-addr ==0.1.0.2 1849 - primitive-extras ==0.10.1 1850 - primitive-unaligned ==0.1.1.1 1851 + - primitive-unlifted ==0.1.3.1 1852 - prim-uniq ==0.2 1853 - print-console-colors ==0.1.0.0 1854 - probability ==0.2.7 ··· 1882 - pureMD5 ==2.1.4 1883 - purescript-bridge ==0.14.0.0 1884 - pushbullet-types ==0.4.1.0 1885 + - pusher-http-haskell ==2.1.0.7 1886 - pvar ==1.0.0.0 1887 - PyF ==0.9.0.3 1888 - qchas ==1.1.0.1 ··· 1965 - regex ==1.1.0.0 1966 - regex-applicative ==0.3.4 1967 - regex-applicative-text ==0.1.0.1 1968 + - regex-base ==0.94.0.2 1969 - regex-compat ==0.95.2.1 1970 - regex-compat-tdfa ==0.95.1.4 1971 - regex-pcre ==0.95.0.0 ··· 2241 - storable-record ==0.0.5 2242 - storable-tuple ==0.0.3.3 2243 - storablevector ==0.2.13.1 2244 + - store ==0.7.14 2245 - store-core ==0.4.4.4 2246 - store-streaming ==0.2.0.3 2247 - stratosphere ==0.59.1 ··· 2392 - these-optics ==1.0.1.2 2393 - these-skinny ==0.7.4 2394 - th-expand-syns ==0.4.8.0 2395 + - th-extras ==0.0.0.5 2396 - th-lift ==0.8.2 2397 - th-lift-instances ==0.1.18 2398 - th-nowq ==0.1.0.5 ··· 2451 - tree-diff ==0.2.1 2452 - tree-fun ==0.8.1.0 2453 - tree-view ==0.5.1 2454 + - trifecta ==2.1.2 2455 - triplesec ==0.2.2.1 2456 - trivial-constraint ==0.7.0.0 2457 - tsv2csv ==0.1.0.2 ··· 2462 - tuples-homogenous-h98 ==0.1.1.0 2463 - tuple-sop ==0.3.1.0 2464 - tuple-th ==0.2.5 2465 + - turtle ==1.5.23 2466 - typecheck-plugin-nat-simple ==0.1.0.2 2467 - TypeCompose ==0.9.14 2468 - typed-process ==0.2.7.0 ··· 2498 - unexceptionalio-trans ==0.5.1 2499 - unicode ==0.0.1.1 2500 - unicode-collation ==0.1.3.1 2501 + - unicode-show ==0.1.1.0 2502 - unicode-transforms ==0.3.7.1 2503 - unification-fd ==0.11.1 2504 - union-angle ==0.1.0.1 ··· 2543 - utility-ht ==0.0.16 2544 - uuid ==1.3.15 2545 - uuid-types ==1.0.5 2546 + - validation ==1.1.2 2547 - validation-selective ==0.1.0.1 2548 - validity ==0.11.0.1 2549 - validity-aeson ==0.2.0.4 ··· 2608 - wai-slack-middleware ==0.2.0 2609 - wai-websockets ==3.0.1.2 2610 - wakame ==0.1.0.0 2611 + - warp ==3.3.18 2612 - warp-tls ==3.3.2 2613 - warp-tls-uid ==0.2.0.6 2614 - wave ==0.2.0 ··· 2686 - yaml ==0.11.7.0 2687 - yamlparse-applicative ==0.2.0.1 2688 - yesod ==1.6.1.2 2689 + - yesod-auth ==1.6.10.5 2690 - yesod-auth-hashdb ==1.7.1.7 2691 - yesod-auth-oauth2 ==0.6.3.4 2692 - yesod-bin ==1.6.1 ··· 2719 - zip ==1.7.2 2720 - zip-archive ==0.4.1 2721 - zipper-extra ==0.1.3.2 2722 + - zippers ==0.3.2 2723 - zip-stream ==0.2.1.0 2724 - zlib ==0.6.2.3 2725 - zlib-bindings ==0.1.1.5
+1 -5
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 1112 - fields 1113 - filepath-crypto 1114 - filepath-io-access 1115 - - filepather 1116 - filesystem-enumerator 1117 - find-clumpiness 1118 - findhttp ··· 1153 - fortran-vars 1154 - foscam-directory 1155 - foscam-sort 1156 - - fp-ieee 1157 - fplll 1158 - fpnla-examples 1159 - frame-markdown ··· 2292 - pairing 2293 - panda 2294 - pandoc-japanese-filters 2295 - - pandoc_2_16_1 2296 - papa 2297 - papa-base 2298 - papa-base-implement ··· 2346 - phonetic-languages-simplified-generalized-examples-array 2347 - phonetic-languages-simplified-lists-examples 2348 - phooey 2349 - - photoname 2350 - pianola 2351 - pier 2352 - ping ··· 2641 - rose-trie 2642 - roshask 2643 - rosmsg-bin 2644 - - rounded-hw 2645 - roundtrip-xml 2646 - route-generator 2647 - route-planning
··· 1112 - fields 1113 - filepath-crypto 1114 - filepath-io-access 1115 - filesystem-enumerator 1116 - find-clumpiness 1117 - findhttp ··· 1152 - fortran-vars 1153 - foscam-directory 1154 - foscam-sort 1155 - fplll 1156 - fpnla-examples 1157 - frame-markdown ··· 2290 - pairing 2291 - panda 2292 - pandoc-japanese-filters 2293 + - pandoc_2_16_2 2294 - papa 2295 - papa-base 2296 - papa-base-implement ··· 2344 - phonetic-languages-simplified-generalized-examples-array 2345 - phonetic-languages-simplified-lists-examples 2346 - phooey 2347 - pianola 2348 - pier 2349 - ping ··· 2638 - rose-trie 2639 - roshask 2640 - rosmsg-bin 2641 - roundtrip-xml 2642 - route-generator 2643 - route-planning
+3398 -1237
pkgs/development/haskell-modules/hackage-packages.nix
··· 6729 ({ mkDerivation, base, libGL, libGLU, OpenGLRaw, transformers }: 6730 mkDerivation { 6731 pname = "GLURaw"; 6732 - version = "2.0.0.4"; 6733 - sha256 = "1i2xi35n5z0d372px9mh6cyhgg1m0cfaiy3fnspkf6kbn9fgsqxq"; 6734 - libraryHaskellDepends = [ base OpenGLRaw transformers ]; 6735 - librarySystemDepends = [ libGL libGLU ]; 6736 - description = "A raw binding for the OpenGL graphics system"; 6737 - license = lib.licenses.bsd3; 6738 - }) {inherit (pkgs) libGL; inherit (pkgs) libGLU;}; 6739 - 6740 - "GLURaw_2_0_0_5" = callPackage 6741 - ({ mkDerivation, base, libGL, libGLU, OpenGLRaw, transformers }: 6742 - mkDerivation { 6743 - pname = "GLURaw"; 6744 version = "2.0.0.5"; 6745 sha256 = "1b3rnva77k9naw5bl573bqgmsq7n9i8rrrvfvhbjcndqgmzhkini"; 6746 libraryHaskellDepends = [ base OpenGLRaw transformers ]; 6747 librarySystemDepends = [ libGL libGLU ]; 6748 description = "A raw binding for the OpenGL graphics system"; 6749 license = lib.licenses.bsd3; 6750 - hydraPlatforms = lib.platforms.none; 6751 }) {inherit (pkgs) libGL; inherit (pkgs) libGLU;}; 6752 6753 "GLUT" = callPackage ··· 7318 pname = "Glob"; 7319 version = "0.10.2"; 7320 sha256 = "1h3kh46qds4nqvixm4myy1kb5slg53f44hfn8aymrlr7hjn75xka"; 7321 - revision = "1"; 7322 - editedCabalFile = "10iqhx37v6hsw4wj174j3kcbpxm1diznys3hnss9f0vqr2dramgc"; 7323 libraryHaskellDepends = [ 7324 base containers directory dlist filepath transformers 7325 transformers-compat ··· 9786 license = "LGPL"; 9787 }) {}; 9788 9789 "Hach" = callPackage 9790 ({ mkDerivation, base, containers, network, old-locale, text, time 9791 , vty, vty-ui ··· 10802 pname = "HsOpenSSL"; 10803 version = "0.11.7.2"; 10804 sha256 = "0ysdfl8ck3nzhx597fa13dqf31jq5gzwajlak6r91jajks9w0dl5"; 10805 setupHaskellDepends = [ base Cabal ]; 10806 libraryHaskellDepends = [ base bytestring network time ]; 10807 librarySystemDepends = [ openssl ]; ··· 13573 pname = "MissingH"; 13574 version = "1.4.3.0"; 13575 sha256 = "196cniya5wzcv2d777nr0f7hinclpals4ia1mkzzv35870pqr6lw"; 13576 - revision = "1"; 13577 - editedCabalFile = "0f8x0vpwcbcvy3b421pahx1ff6l3lfaqvvfkyks1vllcr4p8ky9j"; 13578 libraryHaskellDepends = [ 13579 array base containers directory filepath hslogger mtl network 13580 network-bsd old-locale old-time parsec process random regex-compat ··· 14226 }: 14227 mkDerivation { 14228 pname = "NaCl"; 14229 - version = "0.0.4.0"; 14230 - sha256 = "13wjrki7d7a7zk67np00in5n3gkpmgw682hib09fmncnnisrwd9m"; 14231 libraryHaskellDepends = [ 14232 base bytestring libsodium memory safe-exceptions 14233 ]; ··· 15196 }: 15197 mkDerivation { 15198 pname = "OpenGLRaw"; 15199 - version = "3.3.4.0"; 15200 - sha256 = "0gmsmysqzpm13qnyq4vvqxm4dzw25nayfd9wi5x645pympm6jqbm"; 15201 - libraryHaskellDepends = [ 15202 - base bytestring containers fixed half text transformers 15203 - ]; 15204 - librarySystemDepends = [ libGL ]; 15205 - description = "A raw binding for the OpenGL graphics system"; 15206 - license = lib.licenses.bsd3; 15207 - }) {inherit (pkgs) libGL;}; 15208 - 15209 - "OpenGLRaw_3_3_4_1" = callPackage 15210 - ({ mkDerivation, base, bytestring, containers, fixed, half, libGL 15211 - , text, transformers 15212 - }: 15213 - mkDerivation { 15214 - pname = "OpenGLRaw"; 15215 version = "3.3.4.1"; 15216 sha256 = "07nk0rgm6jcxz6yshwhv5lj5frs6371w3hdjxwa4biws2kmbs6hj"; 15217 libraryHaskellDepends = [ ··· 15220 librarySystemDepends = [ libGL ]; 15221 description = "A raw binding for the OpenGL graphics system"; 15222 license = lib.licenses.bsd3; 15223 - hydraPlatforms = lib.platforms.none; 15224 }) {inherit (pkgs) libGL;}; 15225 15226 "OpenGLRaw21" = callPackage ··· 17865 pname = "STMonadTrans"; 17866 version = "0.4.6"; 17867 sha256 = "0rvhh0hhwz601ibpzisry7xf3j61r5sxfgp47imaa37i5bvrlynb"; 17868 libraryHaskellDepends = [ array base mtl ]; 17869 testHaskellDepends = [ 17870 array base tasty tasty-hunit tasty-quickcheck transformers ··· 20975 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 20976 mkDerivation { 20977 pname = "VulkanMemoryAllocator"; 20978 - version = "0.7.4"; 20979 - sha256 = "0rzvishkjp4vjwc64a12knj1kr7c793ncpgf9x54l2xj6q7a9mrj"; 20980 libraryHaskellDepends = [ 20981 base bytestring transformers vector vulkan 20982 ]; ··· 21335 platforms = lib.platforms.none; 21336 }) {}; 21337 21338 - "Win32_2_13_1_0" = callPackage 21339 ({ mkDerivation }: 21340 mkDerivation { 21341 pname = "Win32"; 21342 - version = "2.13.1.0"; 21343 - sha256 = "1a86hmkba4gd1qqfanl06vi2r77ip53l3dcbgvjp7wlp6rjampvc"; 21344 description = "A binding to Windows Win32 API"; 21345 license = lib.licenses.bsd3; 21346 platforms = lib.platforms.none; ··· 21726 libraryPkgconfigDepends = [ libXft ]; 21727 description = "Bindings to the Xft, X Free Type interface library, and some Xrender parts"; 21728 license = "LGPL"; 21729 }) {inherit (pkgs.xorg) libXft;}; 21730 21731 "X11-xshape" = callPackage ··· 22577 }) {}; 22578 22579 "acc" = callPackage 22580 - ({ mkDerivation, base, criterion, deepseq, QuickCheck 22581 , quickcheck-instances, rerebase, semigroupoids, tasty, tasty-hunit 22582 , tasty-quickcheck 22583 }: 22584 mkDerivation { 22585 pname = "acc"; 22586 - version = "0.1.3"; 22587 - sha256 = "12mzmxmdishmcym3ci8hihp97n17jl5hisnqg6y8yvqzfp7k3cd7"; 22588 libraryHaskellDepends = [ base deepseq semigroupoids ]; 22589 testHaskellDepends = [ 22590 QuickCheck quickcheck-instances rerebase tasty tasty-hunit 22591 tasty-quickcheck 22592 ]; 22593 - benchmarkHaskellDepends = [ criterion rerebase ]; 22594 description = "Sequence optimized for monoidal construction and folding"; 22595 license = lib.licenses.mit; 22596 hydraPlatforms = lib.platforms.none; ··· 24472 }: 24473 mkDerivation { 24474 pname = "advent-of-code-api"; 24475 - version = "0.2.8.0"; 24476 - sha256 = "1g1wybpir0053pjav8czccnva38jr35gnii1as0lbyinc1k7vlhq"; 24477 libraryHaskellDepends = [ 24478 aeson base bytestring containers deepseq directory filepath 24479 finite-typelits http-api-data http-client http-client-tls ··· 24574 pname = "aeson"; 24575 version = "1.5.6.0"; 24576 sha256 = "1s5z4bgb5150h6a4cjf5vh8dmyrn6ilh29gh05999v6jwd5w6q83"; 24577 - revision = "3"; 24578 - editedCabalFile = "08xh5gbvms73d6jnffhm8hjniw7q79yxf7zk6p3cxv21a3bkbma5"; 24579 libraryHaskellDepends = [ 24580 attoparsec base base-compat-batteries bytestring containers 24581 data-fix deepseq dlist ghc-prim hashable primitive scientific ··· 24664 pname = "aeson-better-errors"; 24665 version = "0.9.1.0"; 24666 sha256 = "09vkyrhwak3bmpfsqcd2az8hfqqkxyhg468hv5avgisy0nzh3w38"; 24667 libraryHaskellDepends = [ 24668 aeson base bytestring dlist mtl scientific text transformers 24669 transformers-compat unordered-containers vector void ··· 24780 pname = "aeson-compat"; 24781 version = "0.3.10"; 24782 sha256 = "0ia3qfdpbrzhwwg4ywpdwca0z1m85k081pcz6jh1sx8qjsvcr71w"; 24783 libraryHaskellDepends = [ 24784 aeson attoparsec attoparsec-iso8601 base base-compat bytestring 24785 containers exceptions hashable scientific tagged text time ··· 26852 license = lib.licenses.bsd3; 26853 }) {}; 26854 26855 "align-audio" = callPackage 26856 ({ mkDerivation, base, comfort-array, comfort-fftw, containers 26857 , netlib-ffi, numeric-prelude, optparse-applicative, shell-utility ··· 30640 license = lib.licenses.bsd3; 30641 }) {}; 30642 30643 "ansi-terminal-game" = callPackage 30644 ({ mkDerivation, ansi-terminal, array, base, bytestring, cereal 30645 - , clock, exceptions, hspec, linebreak, mintty, mtl, QuickCheck 30646 - , random, split, terminal-size, timers-tick, unidecode 30647 }: 30648 mkDerivation { 30649 pname = "ansi-terminal-game"; 30650 - version = "1.7.0.0"; 30651 - sha256 = "0cb2n8vp4wbqchdi9136zgkgdl8ksm538ysq6j30ciy53k5phirv"; 30652 isLibrary = true; 30653 isExecutable = true; 30654 libraryHaskellDepends = [ 30655 - ansi-terminal array base bytestring cereal clock exceptions 30656 - linebreak mintty mtl QuickCheck random split terminal-size 30657 - timers-tick unidecode 30658 ]; 30659 testHaskellDepends = [ 30660 - ansi-terminal array base bytestring cereal clock exceptions hspec 30661 - linebreak mintty mtl QuickCheck random split terminal-size 30662 - timers-tick unidecode 30663 ]; 30664 description = "sdl-like functions for terminal applications, based on ansi-terminal"; 30665 license = lib.licenses.gpl3Only; ··· 32324 }: 32325 mkDerivation { 32326 pname = "approximate"; 32327 - version = "0.3.4"; 32328 - sha256 = "06akbrmy66nkgnnk3x87jss9qgv5y9m638rvxy57mfzibf925kbd"; 32329 - libraryHaskellDepends = [ 32330 - base binary bytes cereal comonad deepseq ghc-prim hashable lens 32331 - log-domain pointed safecopy semigroupoids semigroups vector 32332 - ]; 32333 - description = "Approximate discrete values and numbers"; 32334 - license = lib.licenses.bsd3; 32335 - }) {}; 32336 - 32337 - "approximate_0_3_5" = callPackage 32338 - ({ mkDerivation, base, binary, bytes, cereal, comonad, deepseq 32339 - , ghc-prim, hashable, lens, log-domain, pointed, safecopy 32340 - , semigroupoids, semigroups, vector 32341 - }: 32342 - mkDerivation { 32343 - pname = "approximate"; 32344 version = "0.3.5"; 32345 sha256 = "1f168ac9xryrv50k7gvh89xv0mj6c42cxw7pj01pqcbppbs0rm3g"; 32346 libraryHaskellDepends = [ ··· 32349 ]; 32350 description = "Approximate discrete values and numbers"; 32351 license = lib.licenses.bsd3; 32352 - hydraPlatforms = lib.platforms.none; 32353 }) {}; 32354 32355 "approximate-equality" = callPackage ··· 35507 pname = "attoparsec"; 35508 version = "0.14.2"; 35509 sha256 = "157lc8s6a8jw4s8w1a1rylxlggsa6lyq239na8ix3czmi79g3jwz"; 35510 - revision = "1"; 35511 - editedCabalFile = "1lj36f2w5ja2qgwkdjzsvsr89k8932v7hm87xdmh1nj8xlb8wslb"; 35512 libraryHaskellDepends = [ 35513 array base bytestring containers deepseq ghc-prim scientific text 35514 transformers ··· 35653 pname = "attoparsec-iso8601"; 35654 version = "1.0.2.0"; 35655 sha256 = "162gc101mwhmjbfhhv1wm3yvk2h4ra34wpw5x87735cfqxvjv582"; 35656 - revision = "2"; 35657 - editedCabalFile = "18557xy5gvkhj0sb35wwxmhqirkiqrkwm0y0pqygsr0aimccs5zm"; 35658 libraryHaskellDepends = [ 35659 attoparsec base base-compat-batteries text time time-compat 35660 ]; ··· 36210 maintainers = with lib.maintainers; [ expipiplus1 ]; 36211 }) {}; 36212 36213 "autoexporter" = callPackage 36214 ({ mkDerivation, base, Cabal, directory, filepath }: 36215 mkDerivation { ··· 36872 ({ mkDerivation, aeson, aeson-pretty, asn1-encoding, asn1-types 36873 , base, base64-bytestring, bytestring, cookie, cryptonite, hedgehog 36874 , lens, lens-aeson, neat-interpolation, optparse-applicative, pem 36875 - , text, time, unordered-containers, vector 36876 - }: 36877 - mkDerivation { 36878 - pname = "aws-cloudfront-signed-cookies"; 36879 - version = "0.2.0.8"; 36880 - sha256 = "07640asv46gvqqzv8d050x19b2j6wjasm98gpy6047aqg1a6f3ac"; 36881 - isLibrary = true; 36882 - isExecutable = true; 36883 - libraryHaskellDepends = [ 36884 - aeson aeson-pretty asn1-encoding asn1-types base base64-bytestring 36885 - bytestring cookie cryptonite lens lens-aeson optparse-applicative 36886 - pem text time unordered-containers vector 36887 - ]; 36888 - executableHaskellDepends = [ base ]; 36889 - testHaskellDepends = [ base hedgehog neat-interpolation ]; 36890 - description = "Generate signed cookies for AWS CloudFront"; 36891 - license = lib.licenses.mit; 36892 - }) {}; 36893 - 36894 - "aws-cloudfront-signed-cookies_0_2_0_10" = callPackage 36895 - ({ mkDerivation, aeson, aeson-pretty, asn1-encoding, asn1-types 36896 - , base, base64-bytestring, bytestring, cookie, cryptonite, hedgehog 36897 - , lens, lens-aeson, neat-interpolation, optparse-applicative, pem 36898 , text, time, vector 36899 }: 36900 mkDerivation { ··· 36912 testHaskellDepends = [ base hedgehog neat-interpolation ]; 36913 description = "Generate signed cookies for AWS CloudFront"; 36914 license = lib.licenses.mit; 36915 - hydraPlatforms = lib.platforms.none; 36916 }) {}; 36917 36918 "aws-cloudfront-signer" = callPackage ··· 38677 pname = "base-compat-batteries"; 38678 version = "0.12.1"; 38679 sha256 = "12w3bpsz3xykhibc8wkhiii9nav7yxhlv424cy1b9v9ihbfkr3zr"; 38680 - revision = "1"; 38681 - editedCabalFile = "19w7sy7x3ikxx06brx33a82sqd5icx6rqikhin91k750d02v5p48"; 38682 libraryHaskellDepends = [ base base-compat ghc-prim OneTuple ]; 38683 testHaskellDepends = [ base hspec QuickCheck ]; 38684 testToolDepends = [ hspec-discover ]; ··· 39145 pname = "base64-bytestring-type"; 39146 version = "1.0.1"; 39147 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 39148 - revision = "10"; 39149 - editedCabalFile = "0d9nd34ga5xhgkvbysqzyn03w3zi42hgfjk6cza2ymiqxrl2yk9m"; 39150 libraryHaskellDepends = [ 39151 aeson base base-compat base64-bytestring binary bytestring cereal 39152 deepseq hashable http-api-data QuickCheck serialise text ··· 39951 pname = "beam-core"; 39952 version = "0.9.1.0"; 39953 sha256 = "1rw3db9qmf08wi5gcd0cbsz5cpndf8cwkbzkh74gbwwpcpa7lg39"; 39954 libraryHaskellDepends = [ 39955 aeson base bytestring containers dlist free ghc-prim hashable 39956 microlens mtl network-uri scientific tagged text time vector ··· 42801 ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring 42802 , bytestring-lexing, case-insensitive, clustering, conduit 42803 , conduit-extra, containers, criterion, data-default-class 42804 - , data-ordlist, double-conversion, hexpat, HsHTSLib, http-conduit 42805 - , IntervalMap, math-functions, matrices, microlens, microlens-th 42806 - , mtl, parallel, primitive, random, split, statistics, tasty 42807 - , tasty-golden, tasty-hunit, text, transformers 42808 , unordered-containers, vector, vector-algorithms, word8 42809 }: 42810 mkDerivation { 42811 pname = "bioinformatics-toolkit"; 42812 - version = "0.9.5"; 42813 - sha256 = "03nra5ngirlkfm9xhndiwsl51ixcgp5rf7xfwgvw0bfvzddrc6i9"; 42814 enableSeparateDataOutput = true; 42815 libraryHaskellDepends = [ 42816 aeson aeson-pretty attoparsec base bytestring bytestring-lexing 42817 case-insensitive clustering conduit conduit-extra containers 42818 - data-default-class data-ordlist double-conversion hexpat HsHTSLib 42819 - http-conduit IntervalMap math-functions matrices microlens 42820 microlens-th mtl parallel primitive split statistics text 42821 transformers unordered-containers vector vector-algorithms word8 42822 ]; ··· 42826 unordered-containers vector 42827 ]; 42828 benchmarkHaskellDepends = [ 42829 - base bytestring clustering conduit criterion data-default-class mtl 42830 - random 42831 ]; 42832 description = "A collection of bioinformatics tools"; 42833 license = lib.licenses.mit; ··· 46608 hydraPlatforms = lib.platforms.none; 46609 }) {}; 46610 46611 "brick-dropdownmenu" = callPackage 46612 ({ mkDerivation, base, brick, containers, microlens, microlens-ghc 46613 , microlens-th, pointedlist, vector, vty ··· 46841 license = lib.licenses.agpl3Only; 46842 }) {}; 46843 46844 "broadcast-chan" = callPackage 46845 ({ mkDerivation, async, base, criterion, deepseq, stm, transformers 46846 , unliftio-core ··· 47529 broken = true; 47530 }) {}; 47531 47532 "bugsnag-hs" = callPackage 47533 ({ mkDerivation, aeson, base, bytestring, hedgehog, http-client 47534 , text, time, unordered-containers ··· 47856 testHaskellDepends = [ base containers hspec QuickCheck text ]; 47857 description = "Parse and render URI templates"; 47858 license = lib.licenses.isc; 47859 }) {}; 47860 47861 "burst-detection" = callPackage ··· 48254 48255 "bytebuild" = callPackage 48256 ({ mkDerivation, base, byteslice, bytestring, gauge 48257 - , integer-logarithms, natural-arithmetic, primitive 48258 - , primitive-offset, primitive-unlifted, QuickCheck 48259 , quickcheck-classes, quickcheck-instances, run-st, tasty 48260 - , tasty-hunit, tasty-quickcheck, text, text-short, vector 48261 - , wide-word 48262 }: 48263 mkDerivation { 48264 pname = "bytebuild"; 48265 - version = "0.3.8.0"; 48266 - sha256 = "19gg4qjlj595j8zd0n6cz2kgz70g8z6w666c6wlf5lj32j8p6yh5"; 48267 libraryHaskellDepends = [ 48268 - base byteslice bytestring integer-logarithms natural-arithmetic 48269 - primitive primitive-offset primitive-unlifted run-st text-short 48270 - wide-word 48271 ]; 48272 testHaskellDepends = [ 48273 base byteslice bytestring natural-arithmetic primitive 48274 primitive-unlifted QuickCheck quickcheck-classes 48275 - quickcheck-instances tasty tasty-hunit tasty-quickcheck text vector 48276 - wide-word 48277 ]; 48278 benchmarkHaskellDepends = [ 48279 base byteslice gauge natural-arithmetic primitive text-short ··· 48808 license = lib.licenses.mit; 48809 }) {}; 48810 48811 "bytestring-substring" = callPackage 48812 ({ mkDerivation, base, bytestring, pipes, primitive }: 48813 mkDerivation { ··· 48875 }) {}; 48876 48877 "bytestring-trie" = callPackage 48878 - ({ mkDerivation, base, binary, bytestring }: 48879 mkDerivation { 48880 pname = "bytestring-trie"; 48881 - version = "0.2.5.3"; 48882 - sha256 = "1751g4bgkvyjh46nzzy4m8cj71ml7znchqaicyz74n93j1bqpj89"; 48883 libraryHaskellDepends = [ base binary bytestring ]; 48884 description = "An efficient finite map from (byte)strings to values"; 48885 license = lib.licenses.bsd3; 48886 }) {}; ··· 49720 license = lib.licenses.bsd3; 49721 }) {}; 49722 49723 "cabal-fmt" = callPackage 49724 ({ mkDerivation, base, bytestring, Cabal, containers, directory 49725 , filepath, mtl, optparse-applicative, parsec, pretty, process ··· 49862 pname = "cabal-install"; 49863 version = "3.6.2.0"; 49864 sha256 = "0dihpm4h3xh13vnpvwflnb7v614qdvljycc6ffg5cvhwbwfrxyfw"; 49865 isLibrary = false; 49866 isExecutable = true; 49867 executableHaskellDepends = [ ··· 51382 pname = "call-alloy"; 51383 version = "0.2.2.0"; 51384 sha256 = "09xy823lxmp4siqxbv8f6v192a9bs0vmq36293cbiv7g7w65bnvi"; 51385 - revision = "1"; 51386 - editedCabalFile = "0fpgqjb8njrw43pz1rf9nck6v0n0pb2drwx5gzhvlgjpppygwpyj"; 51387 libraryHaskellDepends = [ 51388 base bytestring containers directory file-embed filepath hashable 51389 mtl process split trifecta unix ··· 51872 }: 51873 mkDerivation { 51874 pname = "capnp"; 51875 - version = "0.14.0.0"; 51876 - sha256 = "15v0s597wq0ipvikd727fzcqg5r6685lvr8y1x93q5mdl975gi8m"; 51877 - revision = "1"; 51878 - editedCabalFile = "1s57x426qkn54g8zj8rbn77qg849mx5ps1zwjj6gwfjifddgd5g5"; 51879 isLibrary = true; 51880 isExecutable = true; 51881 libraryHaskellDepends = [ ··· 53289 broken = true; 53290 }) {}; 53291 53292 "cayley-dickson" = callPackage 53293 ({ mkDerivation, base, random }: 53294 mkDerivation { ··· 53357 pname = "cborg"; 53358 version = "0.2.6.0"; 53359 sha256 = "1mvsavi8ngsvmcvlmaygsnygf7hn8kdqdhfff91n1zajgpz577h6"; 53360 libraryHaskellDepends = [ 53361 array base bytestring containers deepseq ghc-prim half integer-gmp 53362 primitive text ··· 56888 license = lib.licenses.mit; 56889 }) {}; 56890 56891 "classy-prelude-conduit" = callPackage 56892 ({ mkDerivation, base, bytestring, classy-prelude, conduit, hspec 56893 , monad-control, QuickCheck, resourcet, transformers, void ··· 62169 license = lib.licenses.bsd2; 62170 }) {}; 62171 62172 "concurrent-resource-map" = callPackage 62173 ({ mkDerivation, base, containers, random, stm }: 62174 mkDerivation { ··· 64468 pname = "contiguous"; 64469 version = "0.6.1"; 64470 sha256 = "1cgmz0adrv1kv1z21cfs4s4lmzbyp4acq5v2ly96bckp8a35cbix"; 64471 libraryHaskellDepends = [ 64472 base deepseq primitive primitive-unlifted run-st 64473 ]; ··· 65451 license = lib.licenses.mit; 65452 }) {}; 65453 65454 - "core-program_0_4_0_0" = callPackage 65455 ({ mkDerivation, async, base, bytestring, chronologique, core-data 65456 , core-text, directory, exceptions, filepath, fsnotify, hashable 65457 , hourglass, mtl, prettyprinter, safe-exceptions, stm ··· 65460 }: 65461 mkDerivation { 65462 pname = "core-program"; 65463 - version = "0.4.0.0"; 65464 - sha256 = "116l104ljadjg3bsri5ypgmj8abzihqwdsds9ziqljcw5079b0kp"; 65465 libraryHaskellDepends = [ 65466 async base bytestring chronologique core-data core-text directory 65467 exceptions filepath fsnotify hashable hourglass mtl prettyprinter ··· 67662 }: 67663 mkDerivation { 67664 pname = "crypto-sodium"; 67665 - version = "0.0.4.0"; 67666 - sha256 = "0wypzd06z12mc7pffryp7bq7rzzws348i79yg3x25d4kmi6xqydw"; 67667 libraryHaskellDepends = [ 67668 base bytestring cereal libsodium memory NaCl random safe-exceptions 67669 ]; ··· 69138 license = lib.licenses.mit; 69139 }) {}; 69140 69141 "cursor-brick" = callPackage 69142 ({ mkDerivation, base, brick, cursor, text }: 69143 mkDerivation { ··· 69148 license = lib.licenses.mit; 69149 }) {}; 69150 69151 "cursor-fuzzy-time" = callPackage 69152 ({ mkDerivation, base, containers, cursor, deepseq, fuzzy-time 69153 , megaparsec, microlens, text, time, validity, validity-time ··· 69172 }: 69173 mkDerivation { 69174 pname = "cursor-fuzzy-time-gen"; 69175 - version = "0.0.0.0"; 69176 - sha256 = "1m18d7098vivbqj079axmhrwzwk7mr89m159apnx2ff9200br31z"; 69177 libraryHaskellDepends = [ 69178 base containers cursor-fuzzy-time cursor-gen deepseq fuzzy-time 69179 fuzzy-time-gen genvalidity genvalidity-time megaparsec time ··· 69213 ]; 69214 description = "Generators for Purely Functional Cursors"; 69215 license = lib.licenses.mit; 69216 }) {}; 69217 69218 "curve25519" = callPackage ··· 69430 pname = "czipwith"; 69431 version = "1.0.1.4"; 69432 sha256 = "0zvi7wmbh09ngbyvavvhn6s3vz1pnps59fl1sq3vih6s03s0zmai"; 69433 libraryHaskellDepends = [ base template-haskell ]; 69434 testHaskellDepends = [ base transformers ]; 69435 description = "CZipWith class and deriving via TH"; ··· 70946 }) {}; 70947 70948 "data-forest" = callPackage 70949 - ({ mkDerivation, base, doctest }: 70950 - mkDerivation { 70951 - pname = "data-forest"; 70952 - version = "0.1.0.8"; 70953 - sha256 = "0b9b7h526580rsyqv8cfcc3109qjz4rv3prb7p98ddygcpbhm6rl"; 70954 - libraryHaskellDepends = [ base ]; 70955 - testHaskellDepends = [ base doctest ]; 70956 - description = "A simple multi-way tree data structure"; 70957 - license = lib.licenses.asl20; 70958 - }) {}; 70959 - 70960 - "data-forest_0_1_0_9" = callPackage 70961 ({ mkDerivation, base }: 70962 mkDerivation { 70963 pname = "data-forest"; ··· 70967 testHaskellDepends = [ base ]; 70968 description = "A simple multi-way tree data structure"; 70969 license = lib.licenses.asl20; 70970 - hydraPlatforms = lib.platforms.none; 70971 }) {}; 70972 70973 "data-fresh" = callPackage ··· 73183 pname = "dear-imgui"; 73184 version = "1.2.2"; 73185 sha256 = "095mv60dvikw1pmj59kwq6p9s8yp04zd8ndbcq3fdia8w0razrxf"; 73186 isLibrary = true; 73187 isExecutable = true; 73188 libraryHaskellDepends = [ ··· 73480 }) {}; 73481 73482 "decision-diagrams" = callPackage 73483 - ({ mkDerivation, base, containers, hashable, hashtables, intern 73484 - , mwc-random, primitive, QuickCheck, random, reflection, statistics 73485 - , tasty, tasty-hunit, tasty-quickcheck, tasty-th 73486 - , unordered-containers 73487 }: 73488 mkDerivation { 73489 pname = "decision-diagrams"; 73490 - version = "0.1.0.0"; 73491 - sha256 = "056990c7bv7y4f51743jwqgdqpklgljn2v5g942wrzp71bkmgm9q"; 73492 - revision = "2"; 73493 - editedCabalFile = "01bcy569xp71b2vgiwxfd844pcicg7vmi1szggd6j73lk36sggr4"; 73494 libraryHaskellDepends = [ 73495 base containers hashable hashtables intern mwc-random primitive 73496 - random reflection unordered-containers 73497 ]; 73498 testHaskellDepends = [ 73499 - base containers mwc-random QuickCheck statistics tasty tasty-hunit 73500 - tasty-quickcheck tasty-th 73501 ]; 73502 description = "Binary Decision Diagrams (BDD) and Zero-suppressed Binary Decision Diagrams (ZDD)"; 73503 license = lib.licenses.bsd3; ··· 73713 pname = "deepseq-generics"; 73714 version = "0.2.0.0"; 73715 sha256 = "17bwghc15mc9pchfd1w46jh2p3wzc86aj6a537wqwxn08rayzcxh"; 73716 - revision = "6"; 73717 - editedCabalFile = "1qwnpdjsrqzn18pjmvv9aqz3l12fbdcimf62wkj33yfh69rx4s42"; 73718 libraryHaskellDepends = [ base deepseq ghc-prim ]; 73719 testHaskellDepends = [ 73720 base deepseq ghc-prim HUnit test-framework test-framework-hunit ··· 74230 }: 74231 mkDerivation { 74232 pname = "dep-t"; 74233 - version = "0.5.0.0"; 74234 - sha256 = "1l62zn12zknn3zlngyrsfwz1f7rxb7cf23lkmlg4ysbdh1wdf8sz"; 74235 libraryHaskellDepends = [ base mtl transformers unliftio-core ]; 74236 testHaskellDepends = [ 74237 aeson barbies base bytestring containers doctest mtl rank2classes ··· 74246 74247 "dep-t-advice" = callPackage 74248 ({ mkDerivation, aeson, barbies, base, containers, criterion, dep-t 74249 - , doctest, mtl, rank2classes, sop-core, tasty, tasty-hunit 74250 - , template-haskell, text, transformers, unliftio-core 74251 }: 74252 mkDerivation { 74253 pname = "dep-t-advice"; 74254 - version = "0.5.0.0"; 74255 - sha256 = "1bc5x0h9rsxp8da7h2qcvvgv0whg5zjfbv7js5i0aihvikywfjpx"; 74256 libraryHaskellDepends = [ 74257 base dep-t mtl sop-core transformers unliftio-core 74258 ]; 74259 testHaskellDepends = [ 74260 - aeson barbies base containers dep-t doctest mtl rank2classes 74261 - sop-core tasty tasty-hunit template-haskell text transformers 74262 - unliftio-core 74263 ]; 74264 benchmarkHaskellDepends = [ 74265 base criterion dep-t mtl rank2classes sop-core template-haskell 74266 text transformers unliftio-core 74267 ]; 74268 - description = "Giving good advice to functions in a record-of-functions"; 74269 license = lib.licenses.bsd3; 74270 hydraPlatforms = lib.platforms.none; 74271 }) {}; ··· 74457 license = lib.licenses.publicDomain; 74458 }) {}; 74459 74460 "depends" = callPackage 74461 ({ mkDerivation, base, containers, directory, filepath, hspec 74462 , process, QuickCheck, transformers, yaml-config ··· 75491 maintainers = with lib.maintainers; [ Gabriel439 ]; 75492 }) {}; 75493 75494 - "dhall_1_40_1" = callPackage 75495 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write 75496 - , base, bytestring, case-insensitive, cborg, cborg-json, containers 75497 - , contravariant, cryptonite, data-fix, deepseq, Diff, directory 75498 - , doctest, dotgen, either, exceptions, filepath, foldl, gauge 75499 - , generic-random, half, hashable, haskeline, http-client 75500 - , http-client-tls, http-types, lens-family-core, megaparsec, memory 75501 - , mmorph, mockery, mtl, network-uri, optparse-applicative 75502 - , parser-combinators, parsers, pretty-simple, prettyprinter 75503 - , prettyprinter-ansi-terminal, profunctors, QuickCheck 75504 - , quickcheck-instances, repline, scientific, serialise 75505 - , special-values, spoon, tasty, tasty-expected-failure, tasty-hunit 75506 - , tasty-quickcheck, tasty-silver, template-haskell, temporary, text 75507 - , text-manipulate, th-lift-instances, time, transformers, turtle 75508 , unordered-containers, uri-encode, vector 75509 }: 75510 mkDerivation { 75511 pname = "dhall"; 75512 - version = "1.40.1"; 75513 - sha256 = "0m2fw9ak9l6fz8ylpbi0cdihf2j66jlnd5j3vf56r7wlqgbkxhi1"; 75514 - revision = "5"; 75515 - editedCabalFile = "1dp9byzmjd2kvydc0q5s3mv59a131jqwhc9cl22jgbhp0whq9jgc"; 75516 isLibrary = true; 75517 isExecutable = true; 75518 enableSeparateDataOutput = true; 75519 libraryHaskellDepends = [ 75520 - aeson aeson-pretty ansi-terminal atomic-write base bytestring 75521 - case-insensitive cborg cborg-json containers contravariant 75522 - cryptonite data-fix deepseq Diff directory dotgen either exceptions 75523 - filepath half hashable haskeline http-client http-client-tls 75524 - http-types lens-family-core megaparsec memory mmorph mtl 75525 - network-uri optparse-applicative parser-combinators parsers 75526 - pretty-simple prettyprinter prettyprinter-ansi-terminal profunctors 75527 - repline scientific serialise template-haskell text text-manipulate 75528 - th-lift-instances time transformers unordered-containers uri-encode 75529 - vector 75530 ]; 75531 executableHaskellDepends = [ base ]; 75532 testHaskellDepends = [ ··· 75534 either filepath foldl generic-random http-client http-client-tls 75535 lens-family-core megaparsec mockery prettyprinter QuickCheck 75536 quickcheck-instances scientific serialise special-values spoon 75537 - tasty tasty-expected-failure tasty-hunit tasty-quickcheck 75538 - tasty-silver template-haskell temporary text time transformers 75539 - turtle unordered-containers vector 75540 ]; 75541 benchmarkHaskellDepends = [ 75542 base bytestring containers directory gauge text ··· 75570 maintainers = with lib.maintainers; [ Gabriel439 ]; 75571 }) {}; 75572 75573 - "dhall-bash_1_0_38" = callPackage 75574 ({ mkDerivation, base, bytestring, containers, dhall 75575 , neat-interpolation, optparse-generic, shell-escape, text 75576 }: 75577 mkDerivation { 75578 pname = "dhall-bash"; 75579 - version = "1.0.38"; 75580 - sha256 = "0pfwqz4l3nn4mr16pv5703j517g3nsgzpmiv18kzl4fs6141d881"; 75581 isLibrary = true; 75582 isExecutable = true; 75583 libraryHaskellDepends = [ ··· 75621 }: 75622 mkDerivation { 75623 pname = "dhall-csv"; 75624 - version = "1.0.0"; 75625 - sha256 = "1dg310mq4c00ykkm1vsvrcicls25zbx7iypcg0nqa8ggchac5jmh"; 75626 - revision = "1"; 75627 - editedCabalFile = "06mya0h8kw8609chxrbkq24gi7yk3fviz2q6balyv5gp3wivzzvg"; 75628 isLibrary = true; 75629 isExecutable = true; 75630 libraryHaskellDepends = [ ··· 75647 }) {}; 75648 75649 "dhall-docs" = callPackage 75650 - ({ mkDerivation, base, bytestring, containers, cryptonite, dhall 75651 - , directory, doctest, file-embed, filepath, foldl, hashable 75652 - , lens-family-core, lucid, megaparsec, memory, mmark, mtl 75653 , optparse-applicative, path, path-io, pretty, prettyprinter, tasty 75654 , tasty-hunit, tasty-silver, text, transformers, turtle 75655 }: 75656 mkDerivation { 75657 pname = "dhall-docs"; 75658 - version = "1.0.7"; 75659 - sha256 = "1h7bzpp3xa5m8zknhi24q0wh1n6w6z26ka780mdsbmchhhj59njm"; 75660 - revision = "2"; 75661 - editedCabalFile = "19mn12l8qljrf41n0xs58hqi89xaaab4wp6dldvi7pym276zg7pn"; 75662 isLibrary = true; 75663 isExecutable = true; 75664 enableSeparateDataOutput = true; 75665 libraryHaskellDepends = [ 75666 - base bytestring containers cryptonite dhall directory file-embed 75667 - filepath lens-family-core lucid megaparsec memory mmark mtl 75668 - optparse-applicative path path-io prettyprinter text transformers 75669 ]; 75670 executableHaskellDepends = [ base dhall ]; 75671 testHaskellDepends = [ 75672 base bytestring containers dhall directory doctest filepath foldl 75673 - hashable path path-io pretty tasty tasty-hunit tasty-silver text 75674 turtle 75675 ]; 75676 description = "Generate HTML docs from a dhall package"; ··· 75743 maintainers = with lib.maintainers; [ Gabriel439 ]; 75744 }) {}; 75745 75746 - "dhall-json_1_7_8" = callPackage 75747 ({ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal 75748 , base, bytestring, containers, dhall, exceptions, filepath 75749 , lens-family-core, optparse-applicative, prettyprinter ··· 75752 }: 75753 mkDerivation { 75754 pname = "dhall-json"; 75755 - version = "1.7.8"; 75756 - sha256 = "0g4c71di93r6vnbhajsj5k3ivhzvn0n0aicvvc2j9nbjfhvahd3h"; 75757 isLibrary = true; 75758 isExecutable = true; 75759 libraryHaskellDepends = [ ··· 75825 maintainers = with lib.maintainers; [ Gabriel439 ]; 75826 }) {}; 75827 75828 "dhall-nix" = callPackage 75829 ({ mkDerivation, base, containers, data-fix, dhall, hnix 75830 , lens-family-core, neat-interpolation, optparse-generic, text ··· 75849 maintainers = with lib.maintainers; [ Gabriel439 ]; 75850 }) {}; 75851 75852 - "dhall-nix_1_1_22" = callPackage 75853 ({ mkDerivation, base, containers, data-fix, dhall, hnix 75854 , lens-family-core, neat-interpolation, optparse-generic, text 75855 }: 75856 mkDerivation { 75857 pname = "dhall-nix"; 75858 - version = "1.1.22"; 75859 - sha256 = "1da64h52fz4imvk7hqblri27zg54r9rcs6hlyzkbnqg4yivpiclg"; 75860 isLibrary = true; 75861 isExecutable = true; 75862 libraryHaskellDepends = [ ··· 75873 }) {}; 75874 75875 "dhall-nixpkgs" = callPackage 75876 - ({ mkDerivation, aeson, base, data-fix, dhall, foldl, hnix 75877 - , lens-family-core, megaparsec, mmorph, neat-interpolation 75878 - , network-uri, optparse-applicative, prettyprinter, text 75879 - , transformers, turtle 75880 }: 75881 mkDerivation { 75882 pname = "dhall-nixpkgs"; 75883 - version = "1.0.6"; 75884 - sha256 = "12sfxz7n86m69m1xbnrrr1ybggh70rfwmr4maflq522bhkc2hgvk"; 75885 - revision = "2"; 75886 - editedCabalFile = "13i04l52jb8xyhqa48r8rlr0d4p657aarfhsxm407ziph5pi60vk"; 75887 isLibrary = false; 75888 isExecutable = true; 75889 executableHaskellDepends = [ 75890 - aeson base data-fix dhall foldl hnix lens-family-core megaparsec 75891 - mmorph neat-interpolation network-uri optparse-applicative 75892 - prettyprinter text transformers turtle 75893 ]; 75894 description = "Convert Dhall projects to Nix packages"; 75895 license = lib.licenses.bsd3; ··· 75903 }: 75904 mkDerivation { 75905 pname = "dhall-openapi"; 75906 - version = "1.0.2"; 75907 - sha256 = "1p678nn1gfj2xp0kmw8i5pzsv6s5bpnsmyng45adb9pnpiyxbcyj"; 75908 - revision = "2"; 75909 - editedCabalFile = "0gkxzfadkpz4dcmcfbyf66s2xa656lf2vw0n282qnc1rsy74ra85"; 75910 isLibrary = true; 75911 isExecutable = true; 75912 libraryHaskellDepends = [ ··· 75999 }: 76000 mkDerivation { 76001 pname = "dhall-toml"; 76002 - version = "1.0.0"; 76003 - sha256 = "13pz6y0l70h3x62wkhay2jiws6s5m6dy9v7kpd2c5mqzaspfy0w2"; 76004 isLibrary = true; 76005 isExecutable = true; 76006 libraryHaskellDepends = [ ··· 76047 maintainers = with lib.maintainers; [ Gabriel439 ]; 76048 }) {}; 76049 76050 - "dhall-yaml_1_2_8" = callPackage 76051 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, dhall 76052 , dhall-json, exceptions, HsYAML, HsYAML-aeson 76053 , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal ··· 76055 }: 76056 mkDerivation { 76057 pname = "dhall-yaml"; 76058 - version = "1.2.8"; 76059 - sha256 = "1p766ybwib3f2i5h7m1hh71vc255ahvf7237bpprdapqw3ag8nak"; 76060 - revision = "1"; 76061 - editedCabalFile = "06jr2b5zj82zcsq7dp6d8v9rfarkpqkp6m1s61d76vlzv9kc2pp2"; 76062 isLibrary = true; 76063 isExecutable = true; 76064 libraryHaskellDepends = [ ··· 77449 }: 77450 mkDerivation { 77451 pname = "digit"; 77452 - version = "0.10"; 77453 - sha256 = "1qvz2gj4f2fcq8m8s4h6q5r2y3z55dhk4zxxijxha3mqfiybh4ky"; 77454 libraryHaskellDepends = [ 77455 base lens parsers scientific semigroupoids semigroups 77456 template-haskell ··· 78168 }: 78169 mkDerivation { 78170 pname = "discord-haskell"; 78171 - version = "1.9.1"; 78172 - sha256 = "10k45mw4z36j9imgcnpv7xnldl6gv556fbyzfnpq9bsgz1cyxdcs"; 78173 isLibrary = true; 78174 isExecutable = true; 78175 libraryHaskellDepends = [ ··· 80342 ({ mkDerivation, base, doctest }: 80343 mkDerivation { 80344 pname = "doctest-driver-gen"; 80345 - version = "0.3.0.4"; 80346 - sha256 = "1fbqi4s4ajxhyv4a7nbh3v98limla0z8rfqlh02pwc1a90qpwy1a"; 80347 - revision = "2"; 80348 - editedCabalFile = "1hf8ncgj3jybyyw2vw96pznr39gsadj6jf7p34s82hkmsnalxfql"; 80349 - isLibrary = true; 80350 - isExecutable = true; 80351 - libraryHaskellDepends = [ base ]; 80352 - executableHaskellDepends = [ base ]; 80353 - testHaskellDepends = [ base doctest ]; 80354 - description = "Generate driver file for doctest's cabal integration"; 80355 - license = lib.licenses.bsd3; 80356 - }) {}; 80357 - 80358 - "doctest-driver-gen_0_3_0_5" = callPackage 80359 - ({ mkDerivation, base, doctest }: 80360 - mkDerivation { 80361 - pname = "doctest-driver-gen"; 80362 version = "0.3.0.5"; 80363 sha256 = "08zv5c1cfklknpbw974sw4rb6jiijd3q28cpjw1cncc06n2jy85b"; 80364 isLibrary = true; ··· 80368 testHaskellDepends = [ base doctest ]; 80369 description = "Generate driver file for doctest's cabal integration"; 80370 license = lib.licenses.bsd3; 80371 - hydraPlatforms = lib.platforms.none; 80372 }) {}; 80373 80374 "doctest-exitcode-stdio" = callPackage ··· 80419 license = lib.licenses.mit; 80420 }) {}; 80421 80422 "doctest-prop" = callPackage 80423 ({ mkDerivation, base, doctest, HUnit, QuickCheck }: 80424 mkDerivation { ··· 80911 ]; 80912 description = "Loads environment variables from dotenv files"; 80913 license = lib.licenses.mit; 80914 }) {}; 80915 80916 "dotfs" = callPackage ··· 82230 }: 82231 mkDerivation { 82232 pname = "dump-core"; 82233 - version = "0.1.3.2"; 82234 - sha256 = "04p3x8lvf4if82xjin9cxhc3r478lp3zmr3xn33xqp37lmcqvr5k"; 82235 enableSeparateDataOutput = true; 82236 libraryHaskellDepends = [ 82237 aeson base bytestring containers directory filepath ghc monadLib ··· 85607 ({ mkDerivation, aeson, async, base, blaze-html, blaze-markup 85608 , commonmark, commonmark-extensions, commonmark-pandoc, containers 85609 , data-default, directory, filepath, filepattern, fsnotify 85610 - , http-types, lvar, monad-logger, monad-logger-extras 85611 - , neat-interpolation, optparse-applicative, pandoc-types 85612 - , profunctors, relude, safe-exceptions, shower, stm, tagged, text 85613 - , time, unliftio, wai, wai-middleware-static, wai-websockets, warp 85614 - , websockets 85615 }: 85616 mkDerivation { 85617 pname = "ema"; 85618 - version = "0.1.0.0"; 85619 - sha256 = "0b7drwqcdap52slnw59vx3mhpabcl72p7rinnfkzsh74jfx21vz0"; 85620 - isLibrary = true; 85621 - isExecutable = true; 85622 libraryHaskellDepends = [ 85623 aeson async base blaze-html blaze-markup commonmark 85624 commonmark-extensions commonmark-pandoc containers data-default 85625 - directory filepath filepattern fsnotify http-types lvar 85626 monad-logger monad-logger-extras neat-interpolation 85627 - optparse-applicative pandoc-types profunctors relude 85628 - safe-exceptions shower stm tagged text time unliftio wai 85629 - wai-middleware-static wai-websockets warp websockets 85630 ]; 85631 - executableHaskellDepends = [ base ]; 85632 description = "Static site generator library with hot reload"; 85633 license = lib.licenses.agpl3Only; 85634 }) {}; ··· 87482 "ersatz" = callPackage 87483 ({ mkDerivation, array, attoparsec, base, bytestring, containers 87484 , data-default, fail, lens, mtl, parsec, process, semigroups 87485 - , temporary, transformers, unordered-containers 87486 - }: 87487 - mkDerivation { 87488 - pname = "ersatz"; 87489 - version = "0.4.9"; 87490 - sha256 = "1pnqz7zvkfw70pjhhs5lm965iydrj8cgbj685fh50fpm0wapnmfd"; 87491 - isLibrary = true; 87492 - isExecutable = true; 87493 - enableSeparateDataOutput = true; 87494 - libraryHaskellDepends = [ 87495 - array attoparsec base bytestring containers data-default lens mtl 87496 - process semigroups temporary transformers unordered-containers 87497 - ]; 87498 - executableHaskellDepends = [ 87499 - array base containers fail lens mtl parsec semigroups 87500 - ]; 87501 - testHaskellDepends = [ array base ]; 87502 - description = "A monad for expressing SAT or QSAT problems using observable sharing"; 87503 - license = lib.licenses.bsd3; 87504 - hydraPlatforms = lib.platforms.none; 87505 - broken = true; 87506 - }) {}; 87507 - 87508 - "ersatz_0_4_10" = callPackage 87509 - ({ mkDerivation, array, attoparsec, base, bytestring, containers 87510 - , data-default, fail, lens, mtl, parsec, process, semigroups 87511 , streams, temporary, transformers, unordered-containers 87512 }: 87513 mkDerivation { ··· 88747 }: 88748 mkDerivation { 88749 pname = "eventlog2html"; 88750 - version = "0.9.1"; 88751 - sha256 = "17fp0q44lk3nkqzpilxlvzbr0b25girbh7j18yl6blcp5mcmq2cd"; 88752 - revision = "1"; 88753 - editedCabalFile = "17p7h7xii3p0k8ji11jw7dcprmcrwhw0lfpyq2f557s87cpwlinf"; 88754 isLibrary = true; 88755 isExecutable = true; 88756 libraryHaskellDepends = [ ··· 89094 pname = "exact-pi"; 89095 version = "0.5.0.1"; 89096 sha256 = "0q0qrkmpff835m3zz3w60i1y4sqicnzqb6vqmk13cjh4ign5d0ax"; 89097 - revision = "1"; 89098 - editedCabalFile = "1l55d7x61i2d5rlh7sh2nhn0af9cyp92gzdmqqnnjzg55d347qsm"; 89099 libraryHaskellDepends = [ base numtype-dk ]; 89100 testHaskellDepends = [ 89101 base numtype-dk QuickCheck tasty tasty-hunit tasty-quickcheck ··· 89252 license = lib.licenses.bsd3; 89253 }) {}; 89254 89255 "exception-via" = callPackage 89256 ({ mkDerivation, base, template-haskell }: 89257 mkDerivation { ··· 89532 pname = "exiftool"; 89533 version = "0.2.0.0"; 89534 sha256 = "138d25fxqz3vg62mfgmva52flyzjxd8dxr0kc7ayfil1zk3bp4jg"; 89535 - revision = "1"; 89536 - editedCabalFile = "0sgi3w8x1zlch0v3zpxrjhisxd1s6wj1qznjlm0gz2r5d1pzc03z"; 89537 libraryHaskellDepends = [ 89538 aeson base base64 bytestring hashable process scientific 89539 string-conversions temporary text unordered-containers vector ··· 91239 broken = true; 91240 }) {}; 91241 91242 - "faktory_1_1_2_0" = callPackage 91243 ({ mkDerivation, aeson, aeson-casing, aeson-qq, async, base 91244 , bytestring, connection, cryptonite, errors, hspec, markdown-unlit 91245 , megaparsec, memory, mtl, network, random, safe-exceptions ··· 91247 }: 91248 mkDerivation { 91249 pname = "faktory"; 91250 - version = "1.1.2.0"; 91251 - sha256 = "0rsypmqy6gkpsjgzzc20wy5jjw13bb4j2zsxwn9zchyihfpak36a"; 91252 isLibrary = true; 91253 isExecutable = true; 91254 libraryHaskellDepends = [ ··· 92443 pname = "feed"; 92444 version = "1.3.2.0"; 92445 sha256 = "0kv3vx3njqlhwvkmf12m1gmwl8jj97kfa60da2362vwdavhcf4dk"; 92446 - revision = "2"; 92447 - editedCabalFile = "12kl1bsgv6jdbvm1dblxjkvc2n8p83wgcpalp8vyf414lhxrjnpx"; 92448 enableSeparateDataOutput = true; 92449 libraryHaskellDepends = [ 92450 base base-compat bytestring old-locale old-time safe text time ··· 93623 }) {}; 93624 93625 "filepather" = callPackage 93626 - ({ mkDerivation, base, comonad, comonad-transformers, data-lens 93627 - , directory, filepath, mtl, transformers 93628 }: 93629 mkDerivation { 93630 pname = "filepather"; 93631 - version = "0.3.0"; 93632 - sha256 = "1gqnanmnhrpdw5iryf757qwj7j9izyzx1j4y74ydivxafz8w469v"; 93633 libraryHaskellDepends = [ 93634 - base comonad comonad-transformers data-lens directory filepath mtl 93635 - transformers 93636 ]; 93637 description = "Functions on System.FilePath"; 93638 license = lib.licenses.bsd3; 93639 - hydraPlatforms = lib.platforms.none; 93640 }) {}; 93641 93642 "filepattern" = callPackage ··· 95652 license = lib.licenses.mit; 95653 }) {}; 95654 95655 "flow-er" = callPackage 95656 ({ mkDerivation, base, doctest, flow, QuickCheck }: 95657 mkDerivation { ··· 96376 pname = "foldl"; 96377 version = "1.4.12"; 96378 sha256 = "0zf4yljh3s2ddxa7dhzdglmylj14kfldhkclc44g37zvjq6kcnag"; 96379 libraryHaskellDepends = [ 96380 base bytestring comonad containers contravariant hashable primitive 96381 profunctors random semigroupoids text transformers ··· 96509 }: 96510 mkDerivation { 96511 pname = "folds"; 96512 - version = "0.7.6"; 96513 - sha256 = "06sy3arl37k7qz6zm2rscpvzl9za165214f5bgjppj7zdv0qkc3v"; 96514 - configureFlags = [ "-f-test-hlint" ]; 96515 - libraryHaskellDepends = [ 96516 - adjunctions base bifunctors comonad constraints contravariant 96517 - data-reify distributive lens mtl pointed profunctors reflection 96518 - semigroupoids transformers unordered-containers vector 96519 - ]; 96520 - description = "Beautiful Folding"; 96521 - license = lib.licenses.bsd3; 96522 - }) {}; 96523 - 96524 - "folds_0_7_7" = callPackage 96525 - ({ mkDerivation, adjunctions, base, bifunctors, comonad 96526 - , constraints, contravariant, data-reify, distributive, lens, mtl 96527 - , pointed, profunctors, reflection, semigroupoids, transformers 96528 - , unordered-containers, vector 96529 - }: 96530 - mkDerivation { 96531 - pname = "folds"; 96532 version = "0.7.7"; 96533 sha256 = "1hggk92i61f3nxcjdxvgs3b8am3jypig09s9wqwrwzaclx0mk5sh"; 96534 configureFlags = [ "-f-test-hlint" ]; ··· 96539 ]; 96540 description = "Beautiful Folding"; 96541 license = lib.licenses.bsd3; 96542 - hydraPlatforms = lib.platforms.none; 96543 }) {}; 96544 96545 "folds-common" = callPackage ··· 97489 pname = "fourmolu"; 97490 version = "0.4.0.0"; 97491 sha256 = "1mq0h6nsl7ssfwh6zqhyja7w212vn8msmlm5iwwimca279hzwywb"; 97492 isLibrary = true; 97493 isExecutable = true; 97494 libraryHaskellDepends = [ ··· 97511 }) {}; 97512 97513 "fp-ieee" = callPackage 97514 - ({ mkDerivation, base, decimal-arithmetic, doctest, gauge, hspec 97515 - , hspec-core, integer-gmp, integer-logarithms, QuickCheck, random 97516 }: 97517 mkDerivation { 97518 pname = "fp-ieee"; 97519 - version = "0.1.0.1"; 97520 - sha256 = "11hj4ldpxcvpnyqhs02s0ryfjiql9pmn1h1caly3cfd1r9aairl9"; 97521 libraryHaskellDepends = [ base integer-gmp integer-logarithms ]; 97522 testHaskellDepends = [ 97523 - base decimal-arithmetic doctest hspec hspec-core integer-logarithms 97524 - QuickCheck random 97525 ]; 97526 - benchmarkHaskellDepends = [ base gauge ]; 97527 description = "IEEE 754-2019 compliant operations"; 97528 license = lib.licenses.bsd3; 97529 - hydraPlatforms = lib.platforms.none; 97530 }) {}; 97531 97532 "fpco-api" = callPackage ··· 97803 97804 "franz" = callPackage 97805 ({ mkDerivation, base, bytestring, cereal, concurrent-resource-map 97806 - , containers, cpu, deepseq, directory, fast-builder, filepath 97807 - , fsnotify, mtl, network, optparse-applicative, process, retry 97808 - , sendfile, stm, stm-delay, transformers, unboxed-ref 97809 - , unordered-containers, vector 97810 }: 97811 mkDerivation { 97812 pname = "franz"; 97813 - version = "0.3.0.1"; 97814 - sha256 = "0lzi5ckz2x88yayrlq5w15wd6x05bx44210b10w0yz5vg9dfz2y0"; 97815 isLibrary = true; 97816 isExecutable = true; 97817 libraryHaskellDepends = [ 97818 base bytestring cereal concurrent-resource-map containers cpu 97819 - deepseq directory fast-builder filepath fsnotify mtl network 97820 - process retry sendfile stm stm-delay transformers unboxed-ref 97821 - unordered-containers vector 97822 ]; 97823 executableHaskellDepends = [ 97824 base bytestring network optparse-applicative stm vector ··· 100184 license = lib.licenses.isc; 100185 }) {}; 100186 100187 - "futhark_0_20_6" = callPackage 100188 ({ mkDerivation, aeson, alex, ansi-terminal, array, base 100189 , base16-bytestring, binary, blaze-html, bmp, bytestring 100190 , bytestring-to-vector, cmark-gfm, containers, cryptohash-md5 ··· 100199 }: 100200 mkDerivation { 100201 pname = "futhark"; 100202 - version = "0.20.6"; 100203 - sha256 = "1ysbxv597v1m1n655f5d8fvcx4mmxgip2858q81jv4lw9m3xg89l"; 100204 isLibrary = true; 100205 isExecutable = true; 100206 libraryHaskellDepends = [ ··· 100401 license = lib.licenses.mit; 100402 }) {}; 100403 100404 "fuzzy-time-gen" = callPackage 100405 ({ mkDerivation, base, containers, criterion, fuzzy-time 100406 , genvalidity, genvalidity-criterion, genvalidity-hspec ··· 100409 }: 100410 mkDerivation { 100411 pname = "fuzzy-time-gen"; 100412 - version = "0.1.0.0"; 100413 - sha256 = "01hvzb6x25qbsbcfacjba1niwfswkxmarspniiaa7agzcfds45z3"; 100414 libraryHaskellDepends = [ 100415 base containers fuzzy-time genvalidity genvalidity-time megaparsec 100416 QuickCheck time ··· 100472 }: 100473 mkDerivation { 100474 pname = "fuzzyset"; 100475 - version = "0.2.1"; 100476 - sha256 = "13hzy1qkxd7d7qirxhixi1qyrcjjvx6y3qmbggw5c0mkgckw7gpi"; 100477 - libraryHaskellDepends = [ 100478 - base data-default text text-metrics unordered-containers vector 100479 - ]; 100480 - testHaskellDepends = [ 100481 - base data-default hspec ieee754 text text-metrics 100482 - unordered-containers vector 100483 - ]; 100484 - description = "Fuzzy set for approximate string matching"; 100485 - license = lib.licenses.bsd3; 100486 - }) {}; 100487 - 100488 - "fuzzyset_0_2_2" = callPackage 100489 - ({ mkDerivation, base, data-default, hspec, ieee754, text 100490 - , text-metrics, unordered-containers, vector 100491 - }: 100492 - mkDerivation { 100493 - pname = "fuzzyset"; 100494 version = "0.2.2"; 100495 sha256 = "1153xv53l6khw7yy36pfaf7pmmlwpg4ig7ywk4rxj375janlg1g8"; 100496 libraryHaskellDepends = [ ··· 100502 ]; 100503 description = "Fuzzy set for approximate string matching"; 100504 license = lib.licenses.bsd3; 100505 - hydraPlatforms = lib.platforms.none; 100506 }) {}; 100507 100508 "fuzzytime" = callPackage ··· 101523 hydraPlatforms = lib.platforms.none; 101524 }) {}; 101525 101526 "gemini-router" = callPackage 101527 ({ mkDerivation, base, gemini-server, HsOpenSSL, network-uri 101528 , transformers ··· 102256 license = lib.licenses.mit; 102257 }) {}; 102258 102259 - "generic-random_1_5_0_0" = callPackage 102260 ({ mkDerivation, base, deepseq, QuickCheck }: 102261 mkDerivation { 102262 pname = "generic-random"; 102263 - version = "1.5.0.0"; 102264 - sha256 = "033cs5vkx57ny035ngndhg3n32jbzyp98li9559gyiz8glp79pzg"; 102265 - revision = "1"; 102266 - editedCabalFile = "0p0im7py1hrarad8pg5vcggz52d702p749nvx3h5glcygzlag14v"; 102267 libraryHaskellDepends = [ base QuickCheck ]; 102268 testHaskellDepends = [ base deepseq QuickCheck ]; 102269 description = "Generic random generators for QuickCheck"; ··· 102695 license = lib.licenses.mit; 102696 }) {}; 102697 102698 "genvalidity-aeson" = callPackage 102699 ({ mkDerivation, aeson, base, genvalidity, genvalidity-hspec 102700 , genvalidity-scientific, genvalidity-text ··· 102717 license = lib.licenses.mit; 102718 }) {}; 102719 102720 "genvalidity-bytestring" = callPackage 102721 ({ mkDerivation, base, bytestring, criterion, deepseq, genvalidity 102722 , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck ··· 102742 license = lib.licenses.mit; 102743 }) {}; 102744 102745 "genvalidity-containers" = callPackage 102746 ({ mkDerivation, base, containers, criterion, genvalidity 102747 , genvalidity-criterion, genvalidity-hspec, genvalidity-property ··· 102764 ]; 102765 description = "GenValidity support for containers"; 102766 license = lib.licenses.mit; 102767 }) {}; 102768 102769 "genvalidity-criterion" = callPackage ··· 102783 license = lib.licenses.mit; 102784 }) {}; 102785 102786 "genvalidity-hspec" = callPackage 102787 ({ mkDerivation, base, genvalidity, genvalidity-property, hspec 102788 , hspec-core, QuickCheck, transformers, validity ··· 102802 license = lib.licenses.mit; 102803 }) {}; 102804 102805 "genvalidity-hspec-aeson" = callPackage 102806 ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity 102807 , genvalidity-aeson, genvalidity-hspec, genvalidity-property ··· 102824 license = lib.licenses.mit; 102825 }) {}; 102826 102827 "genvalidity-hspec-binary" = callPackage 102828 ({ mkDerivation, base, binary, deepseq, genvalidity 102829 , genvalidity-hspec, genvalidity-property, hspec, QuickCheck ··· 102843 license = lib.licenses.mit; 102844 }) {}; 102845 102846 "genvalidity-hspec-cereal" = callPackage 102847 ({ mkDerivation, base, cereal, deepseq, genvalidity 102848 , genvalidity-hspec, genvalidity-property, hspec, QuickCheck ··· 102863 license = lib.licenses.mit; 102864 }) {}; 102865 102866 "genvalidity-hspec-hashable" = callPackage 102867 ({ mkDerivation, base, genvalidity, genvalidity-hspec 102868 , genvalidity-property, hashable, hspec, hspec-core, QuickCheck ··· 102884 license = lib.licenses.mit; 102885 }) {}; 102886 102887 "genvalidity-hspec-optics" = callPackage 102888 ({ mkDerivation, base, genvalidity, genvalidity-hspec 102889 , genvalidity-property, hspec, microlens, QuickCheck, validity ··· 102903 license = lib.licenses.mit; 102904 }) {}; 102905 102906 "genvalidity-hspec-persistent" = callPackage 102907 ({ mkDerivation, base, genvalidity, genvalidity-hspec 102908 , genvalidity-property, genvalidity-text, hspec, persistent ··· 102923 license = lib.licenses.mit; 102924 }) {}; 102925 102926 "genvalidity-mergeful" = callPackage 102927 ({ mkDerivation, base, containers, criterion, genvalidity 102928 , genvalidity-containers, genvalidity-criterion, genvalidity-hspec ··· 102948 license = lib.licenses.mit; 102949 }) {}; 102950 102951 "genvalidity-mergeless" = callPackage 102952 ({ mkDerivation, base, containers, criterion, genvalidity 102953 , genvalidity-containers, genvalidity-criterion, genvalidity-hspec ··· 102974 license = lib.licenses.mit; 102975 }) {}; 102976 102977 "genvalidity-path" = callPackage 102978 ({ mkDerivation, base, criterion, genvalidity 102979 , genvalidity-criterion, genvalidity-hspec, hspec, path, QuickCheck ··· 102994 license = lib.licenses.mit; 102995 }) {}; 102996 102997 "genvalidity-persistent" = callPackage 102998 ({ mkDerivation, base, containers, criterion, deepseq, genvalidity 102999 , genvalidity-containers, genvalidity-criterion, genvalidity-hspec ··· 103022 broken = true; 103023 }) {}; 103024 103025 "genvalidity-property" = callPackage 103026 ({ mkDerivation, base, directory, doctest, filepath, genvalidity 103027 , hspec, pretty-show, QuickCheck, validity ··· 103038 license = lib.licenses.mit; 103039 }) {}; 103040 103041 "genvalidity-scientific" = callPackage 103042 ({ mkDerivation, base, genvalidity, genvalidity-hspec, hspec 103043 , QuickCheck, scientific, validity, validity-scientific ··· 103056 license = lib.licenses.mit; 103057 }) {}; 103058 103059 "genvalidity-sydtest" = callPackage 103060 ({ mkDerivation, base, genvalidity, pretty-show, QuickCheck 103061 , sydtest, sydtest-discover, validity ··· 103073 license = lib.licenses.mit; 103074 }) {}; 103075 103076 "genvalidity-sydtest-aeson" = callPackage 103077 ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity 103078 , genvalidity-aeson, genvalidity-sydtest, genvalidity-text ··· 103095 license = lib.licenses.mit; 103096 }) {}; 103097 103098 "genvalidity-sydtest-hashable" = callPackage 103099 ({ mkDerivation, base, genvalidity, genvalidity-sydtest, hashable 103100 , QuickCheck, sydtest, sydtest-discover, validity ··· 103116 license = lib.licenses.mit; 103117 }) {}; 103118 103119 "genvalidity-sydtest-lens" = callPackage 103120 ({ mkDerivation, base, genvalidity, genvalidity-sydtest, microlens 103121 , QuickCheck, sydtest, sydtest-discover, validity ··· 103135 license = lib.licenses.mit; 103136 }) {}; 103137 103138 "genvalidity-sydtest-persistent" = callPackage 103139 ({ mkDerivation, base, genvalidity, genvalidity-sydtest 103140 , genvalidity-text, persistent, QuickCheck, sydtest ··· 103157 license = lib.licenses.mit; 103158 }) {}; 103159 103160 "genvalidity-text" = callPackage 103161 ({ mkDerivation, array, base, criterion, genvalidity 103162 , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck ··· 103180 license = lib.licenses.mit; 103181 }) {}; 103182 103183 "genvalidity-time" = callPackage 103184 ({ mkDerivation, base, criterion, genvalidity 103185 , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck, time ··· 103200 license = lib.licenses.mit; 103201 }) {}; 103202 103203 "genvalidity-typed-uuid" = callPackage 103204 ({ mkDerivation, base, criterion, genvalidity 103205 , genvalidity-criterion, genvalidity-hspec, genvalidity-hspec-aeson ··· 103224 license = lib.licenses.mit; 103225 }) {}; 103226 103227 "genvalidity-unordered-containers" = callPackage 103228 ({ mkDerivation, base, genvalidity, genvalidity-hspec, hashable 103229 , hspec, QuickCheck, unordered-containers, validity ··· 103245 license = lib.licenses.mit; 103246 }) {}; 103247 103248 "genvalidity-uuid" = callPackage 103249 ({ mkDerivation, base, criterion, genvalidity 103250 , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck, uuid ··· 103267 license = lib.licenses.mit; 103268 }) {}; 103269 103270 "genvalidity-vector" = callPackage 103271 ({ mkDerivation, base, genvalidity, genvalidity-hspec, hspec 103272 , QuickCheck, validity, validity-vector, vector ··· 103283 ]; 103284 description = "GenValidity support for vector"; 103285 license = lib.licenses.mit; 103286 }) {}; 103287 103288 "geo-resolver" = callPackage ··· 104166 license = lib.licenses.bsd3; 104167 }) {}; 104168 104169 "ghc-events-analyze" = callPackage 104170 ({ mkDerivation, base, blaze-svg, bytestring, containers 104171 , diagrams-lib, diagrams-svg, filepath, ghc-events, hashable, lens ··· 104239 license = lib.licenses.bsd3; 104240 }) {}; 104241 104242 - "ghc-exactprint_1_2_0" = callPackage 104243 ({ mkDerivation }: 104244 mkDerivation { 104245 pname = "ghc-exactprint"; 104246 - version = "1.2.0"; 104247 - sha256 = "0dxjhw7vqd7grhghwz5zcjfb7bm5sa9mq0iqsr9vsz4vxxlfyi4k"; 104248 isLibrary = true; 104249 isExecutable = true; 104250 description = "ExactPrint for GHC"; ··· 104296 }: 104297 mkDerivation { 104298 pname = "ghc-heap-view"; 104299 - version = "0.6.2"; 104300 - sha256 = "1wj11g24zap7r2xvp46dir54hwyki025xnkgymc73224lisc3134"; 104301 enableSeparateDataOutput = true; 104302 setupHaskellDepends = [ base Cabal filepath ]; 104303 libraryHaskellDepends = [ ··· 105039 pname = "ghc-tags"; 105040 version = "1.3"; 105041 sha256 = "1fshj5zdnhr879c9q48mb89f1fidc2skgmgi385sa5r8wxn1ili0"; 105042 isLibrary = false; 105043 isExecutable = true; 105044 executableHaskellDepends = [ ··· 105534 }: 105535 mkDerivation { 105536 pname = "ghcide"; 105537 - version = "1.5.0"; 105538 - sha256 = "16l6fpi6xl9ddifais4phwri4hdk1f95rvi4lqgdyzi0y6ms98zx"; 105539 isLibrary = true; 105540 isExecutable = true; 105541 libraryHaskellDepends = [ ··· 106073 }: 106074 mkDerivation { 106075 pname = "gi-cairo-connector"; 106076 - version = "0.1.0"; 106077 - sha256 = "115iy6sd77aabzghdmfpn5w2zqqalrxgbs5i93z49y3vz4wsjiwf"; 106078 libraryHaskellDepends = [ 106079 base gi-cairo gi-cairo-render haskell-gi-base mtl 106080 ]; ··· 106088 }: 106089 mkDerivation { 106090 pname = "gi-cairo-render"; 106091 - version = "0.1.0"; 106092 - sha256 = "1b2qxfahs4w288i6w5m0rs74amnm3zp0mj2vsccf34q437yni2gx"; 106093 libraryHaskellDepends = [ 106094 array base bytestring haskell-gi-base mtl text utf8-string 106095 ]; ··· 107049 }: 107050 mkDerivation { 107051 pname = "gi-gtk-hs"; 107052 - version = "0.3.10"; 107053 - sha256 = "00vhnkblvvq7qjs65rmfy0q2rs388954p6yd1lga2y79lc2xr6fw"; 107054 - libraryHaskellDepends = [ 107055 - base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject 107056 - gi-gtk haskell-gi-base mtl text transformers 107057 - ]; 107058 - description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; 107059 - license = lib.licenses.lgpl21Only; 107060 - }) {}; 107061 - 107062 - "gi-gtk-hs_0_3_11" = callPackage 107063 - ({ mkDerivation, base, base-compat, containers, gi-gdk 107064 - , gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk, haskell-gi-base, mtl 107065 - , text, transformers 107066 - }: 107067 - mkDerivation { 107068 - pname = "gi-gtk-hs"; 107069 version = "0.3.11"; 107070 sha256 = "0scbipy7086pv1xc57vmq48wcx3p7wbznwjcn99dqw4gf9yrqwwz"; 107071 libraryHaskellDepends = [ ··· 107074 ]; 107075 description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; 107076 license = lib.licenses.lgpl21Only; 107077 - hydraPlatforms = lib.platforms.none; 107078 }) {}; 107079 107080 "gi-gtk-layer-shell" = callPackage ··· 108344 }: 108345 mkDerivation { 108346 pname = "git-annex"; 108347 - version = "8.20211117"; 108348 - sha256 = "0kcgjj8q6mhrbxj3m4dyha3yv1sw72lhf9bsv1bbwvm729hy9lpd"; 108349 configureFlags = [ 108350 "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" 108351 "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" ··· 109021 pname = "github-rest"; 109022 version = "1.1.1"; 109023 sha256 = "1wf4gs3324h4pfal5qcpb65lfpm4kpmxmv4fiv6asrvhas9cwglm"; 109024 libraryHaskellDepends = [ 109025 aeson base bytestring http-client http-client-tls http-types jwt 109026 mtl scientific text time transformers unliftio unliftio-core ··· 113728 license = lib.licenses.bsd3; 113729 }) {}; 113730 113731 "gotta-go-fast" = callPackage 113732 ({ mkDerivation, base, brick, cmdargs, directory, file-embed 113733 , random, split, text, time, vty, word-wrap ··· 117011 pname = "hOpenPGP"; 117012 version = "2.9.5"; 117013 sha256 = "1wzvlk7my7a8rwmsw1glw2dlph3b2hwyz2jkcjr0hd1jj8ywksnx"; 117014 libraryHaskellDepends = [ 117015 aeson asn1-encoding attoparsec base base16-bytestring bifunctors 117016 binary binary-conduit bytestring bz2 conduit conduit-extra ··· 117041 ]; 117042 description = "native Haskell implementation of OpenPGP (RFC4880)"; 117043 license = lib.licenses.mit; 117044 }) {}; 117045 117046 "hPDB" = callPackage ··· 121656 license = lib.licenses.bsd3; 121657 }) {}; 121658 121659 - "hashable_1_4_0_0" = callPackage 121660 ({ mkDerivation, base, base-orphans, bytestring, containers 121661 , deepseq, ghc-prim, HUnit, integer-gmp, QuickCheck, random 121662 , test-framework, test-framework-hunit, test-framework-quickcheck2 ··· 121664 }: 121665 mkDerivation { 121666 pname = "hashable"; 121667 - version = "1.4.0.0"; 121668 - sha256 = "0zg5fvr6561r6nzyqsirxcsyjc2rcr07snv2gl9vxp3dks44gbx1"; 121669 libraryHaskellDepends = [ 121670 base base-orphans bytestring containers deepseq ghc-prim 121671 integer-gmp text ··· 121988 license = lib.licenses.bsd3; 121989 }) {}; 121990 121991 "hashtables-plus" = callPackage 121992 ({ mkDerivation, base, criterion-plus, deepseq, hashable 121993 , hashtables, lens, loch-th, mtl, mwc-random, placeholders ··· 123034 }: 123035 mkDerivation { 123036 pname = "haskell-language-server"; 123037 - version = "1.5.0.0"; 123038 - sha256 = "1jzak20xdbbq4pdiwx7w6znp6hc3j0sbcfv5h7x7l4rwzsckjhv7"; 123039 isLibrary = true; 123040 isExecutable = true; 123041 libraryHaskellDepends = [ ··· 125128 }) {}; 125129 125130 "haskoin-core" = callPackage 125131 - ({ mkDerivation, aeson, array, base, base16, binary, bytes 125132 , bytestring, cereal, conduit, containers, cryptonite, deepseq 125133 , entropy, hashable, hspec, hspec-discover, HUnit, lens, lens-aeson 125134 , memory, mtl, murmur3, network, QuickCheck, safe, scientific ··· 125137 }: 125138 mkDerivation { 125139 pname = "haskoin-core"; 125140 - version = "0.20.5"; 125141 - sha256 = "1nx0m51nxm6m2nq6cdcsd8xiap7x6rr2z5ckbzga33fh73ivmkmp"; 125142 libraryHaskellDepends = [ 125143 aeson array base base16 binary bytes bytestring cereal conduit 125144 containers cryptonite deepseq entropy hashable hspec memory mtl ··· 125147 vector 125148 ]; 125149 testHaskellDepends = [ 125150 - aeson array base base16 binary bytes bytestring cereal conduit 125151 - containers cryptonite deepseq entropy hashable hspec HUnit lens 125152 - lens-aeson memory mtl murmur3 network QuickCheck safe scientific 125153 - secp256k1-haskell split string-conversions text time transformers 125154 - unordered-containers vector 125155 ]; 125156 testToolDepends = [ hspec-discover ]; 125157 description = "Bitcoin & Bitcoin Cash library for Haskell"; ··· 125271 , optparse-applicative, QuickCheck, random, rocksdb-haskell-jprupp 125272 , rocksdb-query, scotty, stm, string-conversions, text, time 125273 , transformers, unliftio, unordered-containers, vault, wai 125274 - , wai-extra, warp, wreq 125275 }: 125276 mkDerivation { 125277 pname = "haskoin-store"; 125278 - version = "0.53.11"; 125279 - sha256 = "0b6q74zk58chz1b9pv6rm1ipx2ss08ks4qwlyhzqgwfy5npn1x6p"; 125280 isLibrary = true; 125281 isExecutable = true; 125282 libraryHaskellDepends = [ ··· 125286 monad-control monad-logger mtl network nqe random 125287 rocksdb-haskell-jprupp rocksdb-query scotty stm string-conversions 125288 text time transformers unliftio unordered-containers vault wai 125289 - wai-extra warp wreq 125290 ]; 125291 executableHaskellDepends = [ 125292 aeson aeson-pretty base base16 bytes bytestring cereal conduit ··· 125295 http-types lens monad-control monad-logger mtl network nqe 125296 optparse-applicative random rocksdb-haskell-jprupp rocksdb-query 125297 scotty stm string-conversions text time transformers unliftio 125298 - unordered-containers vault wai wai-extra warp wreq 125299 ]; 125300 testHaskellDepends = [ 125301 aeson aeson-pretty base base16 base64 bytes bytestring cereal ··· 125304 http-types lens monad-control monad-logger mtl network nqe 125305 QuickCheck random rocksdb-haskell-jprupp rocksdb-query scotty stm 125306 string-conversions text time transformers unliftio 125307 - unordered-containers vault wai wai-extra warp wreq 125308 ]; 125309 testToolDepends = [ hspec-discover ]; 125310 description = "Storage and index for Bitcoin and Bitcoin Cash"; ··· 125321 }: 125322 mkDerivation { 125323 pname = "haskoin-store-data"; 125324 - version = "0.53.11"; 125325 - sha256 = "0x75vm28j8gpwan2kdy3di14myhk6gfk8wa70iys8cj43c7ds83l"; 125326 libraryHaskellDepends = [ 125327 aeson base binary bytes bytestring cereal containers data-default 125328 deepseq hashable haskoin-core http-client http-types lens mtl ··· 125593 pname = "hasktags"; 125594 version = "0.72.0"; 125595 sha256 = "09p79w16fgpqi6bwq162769xdrnyb7wnmz56k00nz6dj1a0bbbdd"; 125596 - revision = "1"; 125597 - editedCabalFile = "0q39ssdgm6lcmqj92frjvr53i34divx53zli0qar39mx8ka1l8ml"; 125598 isLibrary = true; 125599 isExecutable = true; 125600 libraryHaskellDepends = [ ··· 129035 "instance-map" = callPackage 129036 "instance-map" = callPackage 129037 "instance-map" = callPackage 129038 libraryHaskellDepends = [ 129039 "instance-map" = callPackage 129040 "instance-map" = callPackage ··· 129060 "instance-map" = callPackage 129061 version = "0.15.0"; 129062 "instance-map" = callPackage 129063 libraryHaskellDepends = [ 129064 "instance-map" = callPackage 129065 "instance-map" = callPackage ··· 131912 license = lib.licenses.bsd3; 131913 }) {}; 131914 131915 "instance-map" = callPackage 131916 ({ mkDerivation, array, base, bytestring, containers, directory 131917 "instance-map" = callPackage ··· 132847 license = lib.licenses.bsd3; 132848 }) {}; 132849 132850 "instance-map" = callPackage 132851 "instance-map" = callPackage 132852 }: ··· 133457 "instance-map" = callPackage 133458 version = "0.2.0.4"; 133459 "instance-map" = callPackage 133460 isLibrary = true; 133461 isExecutable = true; 133462 libraryHaskellDepends = [ ··· 133856 maintainers = with lib.maintainers; [ peti ]; 133857 }) {}; 133858 133859 - "hledger_1_23" = callPackage 133860 - ({ mkDerivation, aeson, ansi-terminal, base, base-compat-batteries 133861 - , bytestring, cmdargs, containers, data-default, Decimal, Diff 133862 - , directory, extra, filepath, githash, hashable, haskeline 133863 - , hledger-lib, lucid, math-functions, megaparsec, microlens, mtl 133864 - , process, regex-tdfa, safe, shakespeare, split, tabular, tasty 133865 - , temporary, terminfo, text, time, timeit, transformers 133866 - , unordered-containers, utf8-string, utility-ht, wizards 133867 }: 133868 mkDerivation { 133869 pname = "hledger"; 133870 - version = "1.23"; 133871 - sha256 = "0s7dbizgx6x6p5phn61ljnhjwm7alp3vgbakbd51m30asnzxm98b"; 133872 - revision = "1"; 133873 - editedCabalFile = "1mpl3scnif7p51clbdhak1z7ja7bky73c3a223fv1q4n8y9zxpk6"; 133874 isLibrary = true; 133875 isExecutable = true; 133876 libraryHaskellDepends = [ 133877 - aeson ansi-terminal base base-compat-batteries bytestring cmdargs 133878 - containers data-default Decimal Diff directory extra filepath 133879 - githash hashable haskeline hledger-lib lucid math-functions 133880 - megaparsec microlens mtl process regex-tdfa safe shakespeare split 133881 - tabular tasty temporary terminfo text time timeit transformers 133882 - unordered-containers utf8-string utility-ht wizards 133883 ]; 133884 executableHaskellDepends = [ 133885 - aeson ansi-terminal base base-compat-batteries bytestring cmdargs 133886 - containers data-default Decimal directory extra filepath githash 133887 - haskeline hledger-lib math-functions megaparsec microlens mtl 133888 - process regex-tdfa safe shakespeare split tabular tasty temporary 133889 - terminfo text time timeit transformers unordered-containers 133890 - utf8-string utility-ht wizards 133891 ]; 133892 testHaskellDepends = [ 133893 - aeson ansi-terminal base base-compat-batteries bytestring cmdargs 133894 - containers data-default Decimal directory extra filepath githash 133895 - haskeline hledger-lib math-functions megaparsec microlens mtl 133896 - process regex-tdfa safe shakespeare split tabular tasty temporary 133897 - terminfo text time timeit transformers unordered-containers 133898 - utf8-string utility-ht wizards 133899 ]; 133900 description = "Command-line interface for the hledger accounting system"; 133901 license = lib.licenses.gpl3Only; ··· 134147 license = lib.licenses.gpl3Only; 134148 }) {}; 134149 134150 - "hledger-lib_1_23" = callPackage 134151 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array, base 134152 - , base-compat-batteries, blaze-markup, bytestring, call-stack 134153 - , cassava, cassava-megaparsec, cmdargs, containers, data-default 134154 - , Decimal, directory, doctest, extra, file-embed, filepath, Glob 134155 - , hashtables, megaparsec, microlens, microlens-th, mtl 134156 - , parser-combinators, pretty-simple, regex-tdfa, safe, tabular 134157 - , tasty, tasty-hunit, template-haskell, text, time, timeit 134158 - , transformers, uglymemo, unordered-containers, utf8-string 134159 }: 134160 mkDerivation { 134161 pname = "hledger-lib"; 134162 - version = "1.23"; 134163 - sha256 = "182pa9f4paqbyrqqnn8vhgwys0sk9lrkvf972d9hbvr339iysm1c"; 134164 - revision = "1"; 134165 - editedCabalFile = "0xrzix8fw4dyyga7pqqqdsz6bdljf5sx3l6g81iyqg5y4a9grv9h"; 134166 libraryHaskellDepends = [ 134167 - aeson aeson-pretty ansi-terminal array base base-compat-batteries 134168 - blaze-markup bytestring call-stack cassava cassava-megaparsec 134169 - cmdargs containers data-default Decimal directory extra file-embed 134170 - filepath Glob hashtables megaparsec microlens microlens-th mtl 134171 parser-combinators pretty-simple regex-tdfa safe tabular tasty 134172 tasty-hunit template-haskell text time timeit transformers uglymemo 134173 unordered-containers utf8-string 134174 ]; 134175 testHaskellDepends = [ 134176 - aeson aeson-pretty ansi-terminal array base base-compat-batteries 134177 - blaze-markup bytestring call-stack cassava cassava-megaparsec 134178 - cmdargs containers data-default Decimal directory doctest extra 134179 - file-embed filepath Glob hashtables megaparsec microlens 134180 - microlens-th mtl parser-combinators pretty-simple regex-tdfa safe 134181 - tabular tasty tasty-hunit template-haskell text time timeit 134182 - transformers uglymemo unordered-containers utf8-string 134183 ]; 134184 description = "A reusable library providing the core functionality of hledger"; 134185 license = lib.licenses.gpl3Only; ··· 134260 maintainers = with lib.maintainers; [ peti ]; 134261 }) {}; 134262 134263 - "hledger-ui_1_23" = callPackage 134264 - ({ mkDerivation, ansi-terminal, async, base, base-compat-batteries 134265 - , brick, cmdargs, containers, data-default, directory, extra 134266 - , filepath, fsnotify, hledger, hledger-lib, megaparsec, microlens 134267 , microlens-platform, process, safe, split, text, text-zipper, time 134268 , transformers, unix, vector, vty 134269 }: 134270 mkDerivation { 134271 pname = "hledger-ui"; 134272 - version = "1.23"; 134273 - sha256 = "04wsp0jlrv5lmlaw38644q66mg8ga6l2ij32pqa585713zcx2frs"; 134274 - revision = "1"; 134275 - editedCabalFile = "1199c443hfy8pdag6h218kwi237g51b7ljy5vvswmslkc9xa37x8"; 134276 isLibrary = false; 134277 isExecutable = true; 134278 executableHaskellDepends = [ 134279 - ansi-terminal async base base-compat-batteries brick cmdargs 134280 - containers data-default directory extra filepath fsnotify hledger 134281 - hledger-lib megaparsec microlens microlens-platform process safe 134282 - split text text-zipper time transformers unix vector vty 134283 ]; 134284 description = "Curses-style terminal interface for the hledger accounting system"; 134285 license = lib.licenses.gpl3Only; ··· 134344 maintainers = with lib.maintainers; [ peti ]; 134345 }) {}; 134346 134347 - "hledger-web_1_23" = callPackage 134348 ({ mkDerivation, aeson, base, base64, blaze-html, blaze-markup 134349 , bytestring, case-insensitive, clientsession, cmdargs, conduit 134350 , conduit-extra, containers, data-default, Decimal, directory ··· 134357 }: 134358 mkDerivation { 134359 pname = "hledger-web"; 134360 - version = "1.23"; 134361 - sha256 = "0sphhmh43d2lifvx8xbvgdmfs0f8cd5zpnpzhv8dp6mzd72g44wi"; 134362 - revision = "1"; 134363 - editedCabalFile = "1ck8jv7hx8kzzimg9hm39h5la8im2kn4f21g7nqmzl4s7bqmmkrw"; 134364 isLibrary = true; 134365 isExecutable = true; 134366 libraryHaskellDepends = [ ··· 134633 }: 134634 mkDerivation { 134635 pname = "hlrdb-core"; 134636 - version = "0.1.6.1"; 134637 - sha256 = "0sy87qz7v1x4rmqclfz2q8bnca2k7zyc7cgk67s80xhp4jsab90x"; 134638 - revision = "1"; 134639 - editedCabalFile = "1nyvgbpvr7l0b9cvnlavmc88aszvxfrdcj57grrs6dcd1d4lv7ss"; 134640 libraryHaskellDepends = [ 134641 base bytestring hashable hedis lens mtl profunctors random time 134642 unordered-containers ··· 134707 }: 134708 mkDerivation { 134709 pname = "hls-class-plugin"; 134710 - version = "1.0.1.1"; 134711 - sha256 = "0wsg9jxm8fg3jr2wgrqz4if85w6zv4q4ink15plva9mngrhjk5na"; 134712 libraryHaskellDepends = [ 134713 aeson base containers ghc ghc-exactprint ghcide hls-plugin-api lens 134714 lsp text transformers ··· 134731 }: 134732 mkDerivation { 134733 pname = "hls-eval-plugin"; 134734 - version = "1.2.0.1"; 134735 - sha256 = "0g28nirb23f2p29mbap5vkkagnnvswzz3caymig1k03y0wj0b1f0"; 134736 libraryHaskellDepends = [ 134737 aeson base containers data-default deepseq Diff directory dlist 134738 extra filepath ghc ghc-boot-th ghc-paths ghcide hashable hls-graph ··· 134774 }: 134775 mkDerivation { 134776 pname = "hls-explicit-imports-plugin"; 134777 - version = "1.0.1.1"; 134778 - sha256 = "06wf8crlaczx970br10svnk34isgr2yvsmla7d5b3m36w584dvrc"; 134779 libraryHaskellDepends = [ 134780 aeson base containers deepseq ghc ghcide hls-graph hls-plugin-api 134781 lsp text unordered-containers ··· 134807 }: 134808 mkDerivation { 134809 pname = "hls-fourmolu-plugin"; 134810 - version = "1.0.1.1"; 134811 - sha256 = "0pw5raypa6zkr2a15pjlaqsh89dg7si40rry384ch593y2cbl7bv"; 134812 libraryHaskellDepends = [ 134813 base filepath fourmolu ghc ghc-boot-th ghcide hls-plugin-api lens 134814 lsp text ··· 134826 }: 134827 mkDerivation { 134828 pname = "hls-graph"; 134829 - version = "1.5.1.0"; 134830 - sha256 = "12aj8r531wcpjx4nh8wk73whlpv97im8sydfq8yl1xwsbx42xwac"; 134831 enableSeparateDataOutput = true; 134832 libraryHaskellDepends = [ 134833 aeson async base bytestring containers deepseq directory exceptions ··· 134866 }: 134867 mkDerivation { 134868 pname = "hls-hlint-plugin"; 134869 - version = "1.0.2.0"; 134870 - sha256 = "19rhp1xdwbq6c6f23jpc5rw8kdrb5abb7vsg16h2y77s91g8sq41"; 134871 libraryHaskellDepends = [ 134872 aeson apply-refact base binary bytestring containers data-default 134873 deepseq Diff directory extra filepath ghc ghc-exactprint ghc-lib ··· 134890 }: 134891 mkDerivation { 134892 pname = "hls-module-name-plugin"; 134893 - version = "1.0.0.2"; 134894 - sha256 = "1b8rc6vr9940pvxm4ph0nlhykknxw0756b0vcskssbivwl60b6h0"; 134895 libraryHaskellDepends = [ 134896 aeson base directory filepath ghcide hls-plugin-api lsp text 134897 transformers unordered-containers ··· 134908 }: 134909 mkDerivation { 134910 pname = "hls-ormolu-plugin"; 134911 - version = "1.0.1.1"; 134912 - sha256 = "1f8zx8fnjs79ajbrxid4cfj5ksza038ydi45d522l0f3mii5n7qw"; 134913 libraryHaskellDepends = [ 134914 base filepath ghc ghc-boot-th ghcide hls-plugin-api lens lsp ormolu 134915 text ··· 134988 pname = "hls-rename-plugin"; 134989 version = "1.0.0.0"; 134990 sha256 = "0j13nh3fvvmj1sd11fiq9fccq23s6p7jz3m96b49kprkayx65zhh"; 134991 libraryHaskellDepends = [ 134992 base containers extra ghc ghc-exactprint ghcide hiedb 134993 hls-plugin-api hls-retrie-plugin lsp lsp-types syb text ··· 135005 }: 135006 mkDerivation { 135007 pname = "hls-retrie-plugin"; 135008 - version = "1.0.1.3"; 135009 - sha256 = "1wd31x38v7cllwcldwx6vybka9fqi2jlhvhl3ap6f4a88426pcx0"; 135010 libraryHaskellDepends = [ 135011 aeson base containers deepseq directory extra ghc ghcide hashable 135012 hls-plugin-api lsp lsp-types retrie safe-exceptions text ··· 135024 }: 135025 mkDerivation { 135026 pname = "hls-splice-plugin"; 135027 - version = "1.0.0.5"; 135028 - sha256 = "0d5bwnfs6dyl39m03asvb0kgj48gw3sggdnin31ly7pywh4f12ns"; 135029 libraryHaskellDepends = [ 135030 aeson base containers dlist extra foldl ghc ghc-exactprint ghcide 135031 hls-plugin-api lens lsp retrie syb text transformers unliftio-core ··· 135043 }: 135044 mkDerivation { 135045 pname = "hls-stylish-haskell-plugin"; 135046 - version = "1.0.0.3"; 135047 - sha256 = "0rd3b9kxwck3wlwrn2mp6qvmrrhmfj3a9h97fvbf4bk7rp58552h"; 135048 libraryHaskellDepends = [ 135049 base directory filepath ghc ghc-boot-th ghcide hls-plugin-api 135050 lsp-types stylish-haskell text ··· 135066 }: 135067 mkDerivation { 135068 pname = "hls-tactics-plugin"; 135069 - version = "1.5.0.0"; 135070 - sha256 = "0bwjkj9canxr2njjica9nbl0lmlyqvyj6ybrx2xdk533rajxbnpf"; 135071 libraryHaskellDepends = [ 135072 aeson base containers deepseq directory extra filepath fingertree 135073 generic-lens ghc ghc-boot-th ghc-exactprint ghc-source-gen ghcide ··· 135094 }: 135095 mkDerivation { 135096 pname = "hls-test-utils"; 135097 - version = "1.1.0.1"; 135098 - sha256 = "07nxmfld8shg2kr08j6wa4rilw301y0bhixblb2mmv9i98y7203w"; 135099 libraryHaskellDepends = [ 135100 aeson async base blaze-markup bytestring containers data-default 135101 directory extra filepath ghcide hls-graph hls-plugin-api hspec ··· 136429 pname = "hoist-error"; 136430 version = "0.2.1.0"; 136431 sha256 = "028lczd80nhj3yj5dq9qixzdzkyisl34qpi6bb28r8b9nj2i2nss"; 136432 - revision = "4"; 136433 - editedCabalFile = "1xp8l236gflh5njl3s8f0d2ahqypks70pfjnawskc0fcnl818qpa"; 136434 libraryHaskellDepends = [ base either mtl ]; 136435 description = "Some convenience facilities for hoisting errors into a monad"; 136436 license = lib.licenses.mit; ··· 137856 license = lib.licenses.mit; 137857 }) {}; 137858 137859 "hpack-convert" = callPackage 137860 ({ mkDerivation, aeson, aeson-qq, base, base-compat, bytestring 137861 , Cabal, containers, deepseq, directory, filepath, Glob, hspec ··· 138442 }: 138443 mkDerivation { 138444 pname = "hpqtypes-extras"; 138445 - version = "1.13.0.0"; 138446 - sha256 = "07pma23i8cy8153g3grb1jr4sasaaczlqym1jv9q5vzb03mdqcaw"; 138447 libraryHaskellDepends = [ 138448 base base16-bytestring bytestring containers cryptohash exceptions 138449 extra fields-json hpqtypes lifted-base log-base monad-control mtl ··· 138962 license = lib.licenses.bsd3; 138963 }) {inherit (pkgs) ruby;}; 138964 138965 "hs" = callPackage 138966 ({ mkDerivation, base, containers, data-default, directory 138967 , enum-text, filepath, fmt, optparse-applicative, possibly, text ··· 139479 license = lib.licenses.bsd3; 139480 }) {}; 139481 139482 "hs-pattrans" = callPackage 139483 ({ mkDerivation, async, base, bytestring, cassava, Chart 139484 , Chart-cairo, colour, containers, contravariant, directory ··· 141576 license = lib.licenses.isc; 141577 }) {}; 141578 141579 "hskeleton" = callPackage 141580 ({ mkDerivation, base, Cabal }: 141581 mkDerivation { ··· 142457 license = lib.licenses.mit; 142458 }) {}; 142459 142460 - "hspec_2_9_1" = callPackage 142461 ({ mkDerivation, base, hspec-core, hspec-discover 142462 , hspec-expectations, QuickCheck 142463 }: 142464 mkDerivation { 142465 pname = "hspec"; 142466 - version = "2.9.1"; 142467 - sha256 = "1q4zknkqgdvkbv2alny9ysbdh7b28v91xazfnka0cqfgfbm22h2i"; 142468 libraryHaskellDepends = [ 142469 base hspec-core hspec-discover hspec-expectations QuickCheck 142470 ]; ··· 142555 license = lib.licenses.mit; 142556 }) {}; 142557 142558 - "hspec-core_2_9_1" = callPackage 142559 ({ mkDerivation, ansi-terminal, array, base, base-orphans 142560 , call-stack, clock, deepseq, directory, filepath 142561 , hspec-expectations, hspec-meta, HUnit, process, QuickCheck ··· 142564 }: 142565 mkDerivation { 142566 pname = "hspec-core"; 142567 - version = "2.9.1"; 142568 - sha256 = "1nfnzihyn5k02cn627pkj87rdvg1q850gpbyr831jivfi2qia8vq"; 142569 - revision = "1"; 142570 - editedCabalFile = "12qy6gdag9ycabp90mpm4v4vwc9948rkqfldxr2fp36ijx100hc2"; 142571 libraryHaskellDepends = [ 142572 ansi-terminal array base call-stack clock deepseq directory 142573 filepath hspec-expectations HUnit QuickCheck quickcheck-io random ··· 142624 maintainers = with lib.maintainers; [ maralorn ]; 142625 }) {}; 142626 142627 - "hspec-discover_2_9_1" = callPackage 142628 ({ mkDerivation, base, directory, filepath, hspec-meta, mockery 142629 , QuickCheck 142630 }: 142631 mkDerivation { 142632 pname = "hspec-discover"; 142633 - version = "2.9.1"; 142634 - sha256 = "13cbjyzmd543jcpi7bh420adh2bpn088v8fv0cb25zgx8q5khmxw"; 142635 isLibrary = true; 142636 isExecutable = true; 142637 libraryHaskellDepends = [ base directory filepath ]; ··· 142673 testHaskellDepends = [ aeson-qq base hspec ]; 142674 description = "Hspec expectations for JSON Values"; 142675 license = lib.licenses.mit; 142676 }) {}; 142677 142678 "hspec-expectations-lens" = callPackage ··· 142908 license = lib.licenses.mit; 142909 }) {}; 142910 142911 - "hspec-junit-formatter_1_0_1_0" = callPackage 142912 ({ mkDerivation, base, conduit, containers, directory, exceptions 142913 - , filepath, hspec, hspec-core, text, time, xml-conduit, xml-types 142914 }: 142915 mkDerivation { 142916 pname = "hspec-junit-formatter"; 142917 - version = "1.0.1.0"; 142918 - sha256 = "1n0hv2xhplpg6fhy8dxzp63k4b7mfzm1g92wglrsqc2lsvnx09ky"; 142919 libraryHaskellDepends = [ 142920 base conduit containers directory exceptions filepath hspec-core 142921 text time xml-conduit xml-types 142922 ]; 142923 - testHaskellDepends = [ base hspec ]; 142924 description = "A JUnit XML runner/formatter for hspec"; 142925 license = lib.licenses.mit; 142926 hydraPlatforms = lib.platforms.none; ··· 142992 license = lib.licenses.mit; 142993 }) {}; 142994 142995 - "hspec-meta_2_9_0_1" = callPackage 142996 ({ mkDerivation, ansi-terminal, array, base, call-stack, clock 142997 , deepseq, directory, filepath, QuickCheck, quickcheck-io, random 142998 , setenv, stm, time, transformers 142999 }: 143000 mkDerivation { 143001 pname = "hspec-meta"; 143002 - version = "2.9.0.1"; 143003 - sha256 = "1bcnx7lmcs0hi6skk6xbx4mypq9q92v9rgbn3npy2c79gz01vz6m"; 143004 isLibrary = true; 143005 isExecutable = true; 143006 libraryHaskellDepends = [ ··· 145033 pname = "http-api-data"; 145034 version = "0.4.3"; 145035 sha256 = "171bw2a44pg50d3y77gw2y9vmx72laky7hnn5hw6r93pnjmlf9yz"; 145036 - revision = "4"; 145037 - editedCabalFile = "04nzx6a81v7c6s8mrb7nssv23w3dpalcbm6lvzrg2k8dddr0rwi1"; 145038 libraryHaskellDepends = [ 145039 attoparsec attoparsec-iso8601 base base-compat bytestring 145040 containers cookie hashable http-types tagged text time-compat ··· 145888 pname = "http-query"; 145889 version = "0.1.0.1"; 145890 sha256 = "11l3bxbaxkd0mrarp5l3s3c4xhvdiq8lj739hxspi6cgk0ywjwxw"; 145891 libraryHaskellDepends = [ 145892 aeson base bytestring http-conduit network-uri text 145893 ]; 145894 description = "Simple http queries"; 145895 license = lib.licenses.bsd3; 145896 }) {}; 145897 145898 "http-querystring" = callPackage ··· 149393 }: 149394 mkDerivation { 149395 pname = "hyperloglog"; 149396 - version = "0.4.4"; 149397 - sha256 = "0iwjxv934vid7bzaxyqq4v7r52vdcqjxmw043dmxykwyzim59l3v"; 149398 - libraryHaskellDepends = [ 149399 - approximate base binary bits bytes cereal cereal-vector comonad 149400 - deepseq distributive hashable lens reflection semigroupoids 149401 - semigroups siphash tagged vector 149402 - ]; 149403 - description = "An approximate streaming (constant space) unique object counter"; 149404 - license = lib.licenses.bsd3; 149405 - }) {}; 149406 - 149407 - "hyperloglog_0_4_5" = callPackage 149408 - ({ mkDerivation, approximate, base, binary, bits, bytes, cereal 149409 - , cereal-vector, comonad, deepseq, distributive, hashable, lens 149410 - , reflection, semigroupoids, semigroups, siphash, tagged, vector 149411 - }: 149412 - mkDerivation { 149413 - pname = "hyperloglog"; 149414 version = "0.4.5"; 149415 sha256 = "0v2zw0p104gbydj6hp2cxa2s4b85pq4srcspr582aqj38bs7spfz"; 149416 libraryHaskellDepends = [ ··· 149420 ]; 149421 description = "An approximate streaming (constant space) unique object counter"; 149422 license = lib.licenses.bsd3; 149423 - hydraPlatforms = lib.platforms.none; 149424 }) {}; 149425 149426 "hyperloglogplus" = callPackage ··· 150626 pname = "ihaskell"; 150627 version = "0.10.2.1"; 150628 sha256 = "1bpxm51c8f0cl7cvg7d2f39fnar7a811s3fgxvxmvsb7yw3v92vc"; 150629 isLibrary = true; 150630 isExecutable = true; 150631 enableSeparateDataOutput = true; ··· 150648 license = lib.licenses.mit; 150649 }) {}; 150650 150651 "ihaskell-aeson" = callPackage 150652 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, here 150653 , ihaskell, text ··· 151491 }: 151492 mkDerivation { 151493 pname = "implicit-hie-cradle"; 151494 - version = "0.4.0.1"; 151495 - sha256 = "07k0d2lda4kj20121h8lzbjl074s90cnhbins1dvgngxbz0ddxa2"; 151496 libraryHaskellDepends = [ 151497 base base16-bytestring bytestring containers directory extra 151498 filepath hie-bios hslogger implicit-hie process temporary text time ··· 152528 license = lib.licenses.bsd3; 152529 }) {}; 152530 152531 "informative" = callPackage 152532 ({ mkDerivation, base, containers, csv, highlighting-kate 152533 , http-conduit, monad-logger, pandoc, persistent ··· 152816 }: 152817 mkDerivation { 152818 pname = "inline-r"; 152819 - version = "0.10.4"; 152820 - sha256 = "0jvfi2izhxn0n5xzz6rhhfs3fxlx7p1mhd9pjrazqckib14jw8ml"; 152821 - revision = "1"; 152822 - editedCabalFile = "0lfjfk2hliiqs0wx3i5g513r2y8kafdb07hyscg0dq9x53ia067k"; 152823 - libraryHaskellDepends = [ 152824 - aeson base bytestring containers data-default-class deepseq 152825 - exceptions inline-c mtl pretty primitive process reflection setenv 152826 - singletons template-haskell text th-lift th-orphans transformers 152827 - unix vector 152828 - ]; 152829 - libraryPkgconfigDepends = [ R ]; 152830 - testHaskellDepends = [ 152831 - base bytestring directory filepath ieee754 mtl process 152832 - quickcheck-assertions silently singletons strict tasty 152833 - tasty-expected-failure tasty-golden tasty-hunit tasty-quickcheck 152834 - template-haskell temporary text unix vector 152835 - ]; 152836 - benchmarkHaskellDepends = [ 152837 - base criterion filepath primitive process singletons 152838 - template-haskell vector 152839 - ]; 152840 - description = "Seamlessly call R from Haskell and vice versa. No FFI required."; 152841 - license = lib.licenses.bsd3; 152842 - hydraPlatforms = lib.platforms.none; 152843 - broken = true; 152844 - }) {inherit (pkgs) R;}; 152845 - 152846 - "inline-r_0_10_5" = callPackage 152847 - ({ mkDerivation, aeson, base, bytestring, containers, criterion 152848 - , data-default-class, deepseq, directory, exceptions, filepath 152849 - , ieee754, inline-c, mtl, pretty, primitive, process 152850 - , quickcheck-assertions, R, reflection, setenv, silently 152851 - , singletons, strict, tasty, tasty-expected-failure, tasty-golden 152852 - , tasty-hunit, tasty-quickcheck, template-haskell, temporary, text 152853 - , th-lift, th-orphans, transformers, unix, vector 152854 - }: 152855 - mkDerivation { 152856 - pname = "inline-r"; 152857 version = "0.10.5"; 152858 sha256 = "1jaj3p4vj9g1pk4rfs1sywbq04w24g137yvl6g6mlsxyzd4mldwh"; 152859 libraryHaskellDepends = [ ··· 152933 "insert-ordered-containers" = callPackage 152934 ({ mkDerivation, aeson, base, base-compat, deepseq, hashable 152935 , indexed-traversable, lens, optics-core, optics-extra, QuickCheck 152936 - , semigroupoids, semigroups, tasty, tasty-quickcheck, text 152937 - , transformers, unordered-containers 152938 - }: 152939 - mkDerivation { 152940 - pname = "insert-ordered-containers"; 152941 - version = "0.2.5"; 152942 - sha256 = "0bb3ggzic8z5zmvmzp1fsnb572c2v383740b0ddf1fwihpn52c1y"; 152943 - revision = "2"; 152944 - editedCabalFile = "1xjrd1sn3wkhv8f40wi5p53y8n74lkj5pnr4psjlbpqqlr4hy2ya"; 152945 - libraryHaskellDepends = [ 152946 - aeson base base-compat deepseq hashable indexed-traversable lens 152947 - optics-core optics-extra semigroupoids semigroups text transformers 152948 - unordered-containers 152949 - ]; 152950 - testHaskellDepends = [ 152951 - aeson base base-compat hashable lens QuickCheck semigroupoids 152952 - semigroups tasty tasty-quickcheck text transformers 152953 - unordered-containers 152954 - ]; 152955 - description = "Associative containers retaining insertion order for traversals"; 152956 - license = lib.licenses.bsd3; 152957 - }) {}; 152958 - 152959 - "insert-ordered-containers_0_2_5_1" = callPackage 152960 - ({ mkDerivation, aeson, base, base-compat, deepseq, hashable 152961 - , indexed-traversable, lens, optics-core, optics-extra, QuickCheck 152962 , semigroupoids, tasty, tasty-quickcheck, text, transformers 152963 , unordered-containers 152964 }: ··· 152976 ]; 152977 description = "Associative containers retaining insertion order for traversals"; 152978 license = lib.licenses.bsd3; 152979 - hydraPlatforms = lib.platforms.none; 152980 }) {}; 152981 152982 "inserts" = callPackage ··· 153392 ]; 153393 description = "Integer roots and perfect powers"; 153394 license = lib.licenses.mit; 153395 }) {}; 153396 153397 "integer-simple" = callPackage ··· 154613 }) {}; 154614 154615 "ip2location" = callPackage 154616 - ({ mkDerivation, base, binary, bytestring, iproute }: 154617 mkDerivation { 154618 pname = "ip2location"; 154619 - version = "8.3.1"; 154620 - sha256 = "01sdx0j0rm7rgylac51mk4ph5krdnzdd8532di5g5ik3p112dzg8"; 154621 - libraryHaskellDepends = [ base binary bytestring iproute ]; 154622 description = "IP2Location Haskell package for IP geolocation"; 154623 license = lib.licenses.mit; 154624 hydraPlatforms = lib.platforms.none; ··· 154920 pname = "ipython-kernel"; 154921 version = "0.10.2.1"; 154922 sha256 = "016w7bmji3k1cnnl3vq35zq6fnqdvc2x762zfzv4ync2jz63rq38"; 154923 isLibrary = true; 154924 isExecutable = true; 154925 enableSeparateDataOutput = true; ··· 154930 ]; 154931 description = "A library for creating kernels for IPython frontends"; 154932 license = lib.licenses.mit; 154933 }) {}; 154934 154935 "irc" = callPackage ··· 157035 broken = true; 157036 }) {}; 157037 157038 "jet-stream" = callPackage 157039 ({ mkDerivation, async, base, bytestring, conceit, doctest, foldl 157040 , process, stm, stm-chans, tasty, tasty-hunit, text, time ··· 158498 pname = "json-stream"; 158499 version = "0.4.2.4"; 158500 sha256 = "1ryv2738ajagb0wdkac5lka1kzprrf85gqxabafmm3g5szllxjl1"; 158501 libraryHaskellDepends = [ 158502 aeson base bytestring scientific text unordered-containers vector 158503 ]; ··· 158892 }: 158893 mkDerivation { 158894 pname = "jsonrpc-conduit"; 158895 - version = "0.3.6"; 158896 - sha256 = "1czk9i9xkw4r6pg2x8ics4ki15icq2mh8zby2ci9ld5b6iz61196"; 158897 libraryHaskellDepends = [ 158898 aeson attoparsec base bytestring conduit conduit-extra mtl text 158899 transformers unordered-containers ··· 159450 license = lib.licenses.mit; 159451 }) {}; 159452 159453 "kademlia" = callPackage 159454 ({ mkDerivation, base, bytestring, containers, HUnit, mtl, network 159455 , QuickCheck, stm, tasty, tasty-hunit, tasty-quickcheck ··· 160034 license = lib.licenses.mit; 160035 }) {}; 160036 160037 "katip-logzio" = callPackage 160038 ({ mkDerivation, aeson, async, base, bytestring, errors, hedgehog 160039 , hostname, http-client, http-client-tls, http-types, katip, retry ··· 163731 license = lib.licenses.gpl3Only; 163732 }) {}; 163733 163734 - "language-docker_10_3_0" = callPackage 163735 ({ mkDerivation, base, bytestring, containers, data-default-class 163736 , hspec, hspec-megaparsec, HUnit, megaparsec, prettyprinter 163737 , QuickCheck, split, text, time 163738 }: 163739 mkDerivation { 163740 pname = "language-docker"; 163741 - version = "10.3.0"; 163742 - sha256 = "1vwgm2902xzmcq9bkjs4nah5jcijmqa7qviaz96awgb6rc5wamnb"; 163743 libraryHaskellDepends = [ 163744 base bytestring containers data-default-class megaparsec 163745 prettyprinter split text time ··· 164622 pname = "language-sygus"; 164623 version = "0.1.1.2"; 164624 sha256 = "1vgd45bd866mm2w80hg8q11iz8g9ifz5ccm0sh13xrnpvfvdv862"; 164625 libraryHaskellDepends = [ array base hashable text ]; 164626 testHaskellDepends = [ base deepseq tasty tasty-hunit text ]; 164627 description = "A parser and printer for the SyGuS 2.0 language."; ··· 165211 pname = "lattices"; 165212 version = "2.0.3"; 165213 sha256 = "1mn78xqwsksybggnsnx8xkmzlc9his1si14dy5v6vmlchkjym9qg"; 165214 - revision = "1"; 165215 - editedCabalFile = "0wj1xk69v6jf8ni1m6962kr1ygci1wrmbji2slfgmdpdlls43b1r"; 165216 libraryHaskellDepends = [ 165217 base base-compat containers deepseq hashable integer-logarithms 165218 OneTuple QuickCheck semigroupoids tagged transformers universe-base ··· 166458 }: 166459 mkDerivation { 166460 pname = "lens-action"; 166461 - version = "0.2.5"; 166462 - sha256 = "02sv76far3y57p2pgcjsx5ffaai8rm4669qkp82l06vv964f0v2r"; 166463 - libraryHaskellDepends = [ 166464 - base comonad contravariant lens mtl profunctors semigroupoids 166465 - transformers 166466 - ]; 166467 - description = "Monadic Getters and Folds"; 166468 - license = lib.licenses.bsd3; 166469 - }) {}; 166470 - 166471 - "lens-action_0_2_6" = callPackage 166472 - ({ mkDerivation, base, comonad, contravariant, lens, mtl 166473 - , profunctors, semigroupoids, transformers 166474 - }: 166475 - mkDerivation { 166476 - pname = "lens-action"; 166477 version = "0.2.6"; 166478 sha256 = "0cdprc5j6r976dmrga2zwvcr7qsv7nqy3nvncp66yyy0dk2qlwm3"; 166479 libraryHaskellDepends = [ ··· 166482 ]; 166483 description = "Monadic Getters and Folds"; 166484 license = lib.licenses.bsd3; 166485 - hydraPlatforms = lib.platforms.none; 166486 }) {}; 166487 166488 "lens-aeson" = callPackage ··· 166491 }: 166492 mkDerivation { 166493 pname = "lens-aeson"; 166494 - version = "1.1.2"; 166495 - sha256 = "0pdjjyjwlavcgm2wrv1fiz09l41hisl2xj6y67xbdix1h6h07hxz"; 166496 - libraryHaskellDepends = [ 166497 - aeson attoparsec base bytestring lens scientific text 166498 - unordered-containers vector 166499 - ]; 166500 - description = "Law-abiding lenses for aeson"; 166501 - license = lib.licenses.mit; 166502 - }) {}; 166503 - 166504 - "lens-aeson_1_1_3" = callPackage 166505 - ({ mkDerivation, aeson, attoparsec, base, bytestring, lens 166506 - , scientific, text, unordered-containers, vector 166507 - }: 166508 - mkDerivation { 166509 - pname = "lens-aeson"; 166510 version = "1.1.3"; 166511 sha256 = "05jyn6rn0anhgfmk754gmmpcy5jv3ki213z4v243n9jvdjdlg7ms"; 166512 libraryHaskellDepends = [ ··· 166515 ]; 166516 description = "Law-abiding lenses for aeson"; 166517 license = lib.licenses.mit; 166518 - hydraPlatforms = lib.platforms.none; 166519 }) {}; 166520 166521 "lens-core" = callPackage ··· 167917 167918 "libnix" = callPackage 167919 ({ mkDerivation, aeson, base, bytestring, deepseq, directory 167920 - , errors, filepath, process, tasty, tasty-hunit, text 167921 }: 167922 mkDerivation { 167923 pname = "libnix"; 167924 - version = "0.3.0.0"; 167925 - sha256 = "0p2fhk5x7zwg70c6wq829b1j8zmms1s5xh2lahfdsr0x5q2k8jif"; 167926 libraryHaskellDepends = [ 167927 - aeson base bytestring deepseq errors filepath process text 167928 ]; 167929 testHaskellDepends = [ 167930 base directory errors tasty tasty-hunit text ··· 168454 }) {}; 168455 168456 "libyaml-streamly" = callPackage 168457 - ({ mkDerivation, base, bytestring, safe-exceptions, streamly }: 168458 mkDerivation { 168459 pname = "libyaml-streamly"; 168460 - version = "0.2.0"; 168461 - sha256 = "0lvpavy78clizrizj7zlj9msgfwkhj3c6shnss7swnp1xfi1a1k9"; 168462 libraryHaskellDepends = [ 168463 - base bytestring safe-exceptions streamly 168464 ]; 168465 description = "Low-level, streaming YAML interface via streamly"; 168466 license = lib.licenses.bsd3; ··· 170618 license = lib.licenses.mit; 170619 }) {}; 170620 170621 "list-t-attoparsec" = callPackage 170622 ({ mkDerivation, attoparsec, base-prelude, either, hspec, list-t 170623 , list-t-text, text, transformers ··· 172160 }: 172161 mkDerivation { 172162 pname = "log-domain"; 172163 - version = "0.13.1"; 172164 - sha256 = "0ipiiflzs1r7wm5k8b9cqn4l09rjdyks3pxnm4p3kmncd5s2ajsv"; 172165 - libraryHaskellDepends = [ 172166 - base binary bytes cereal comonad deepseq distributive hashable 172167 - semigroupoids semigroups vector 172168 - ]; 172169 - description = "Log-domain arithmetic"; 172170 - license = lib.licenses.bsd3; 172171 - }) {}; 172172 - 172173 - "log-domain_0_13_2" = callPackage 172174 - ({ mkDerivation, base, binary, bytes, cereal, comonad, deepseq 172175 - , distributive, hashable, semigroupoids, semigroups, vector 172176 - }: 172177 - mkDerivation { 172178 - pname = "log-domain"; 172179 version = "0.13.2"; 172180 sha256 = "0i4fx9k8cwjvmj0pgfnbici1b68zmif1jmmqxplpjqy32ksnyifa"; 172181 libraryHaskellDepends = [ ··· 172184 ]; 172185 description = "Log-domain arithmetic"; 172186 license = lib.licenses.bsd3; 172187 - hydraPlatforms = lib.platforms.none; 172188 }) {}; 172189 172190 "log-effect" = callPackage ··· 172559 }) {}; 172560 172561 "logging-facade" = callPackage 172562 - ({ mkDerivation, base, call-stack, hspec, transformers }: 172563 - mkDerivation { 172564 - pname = "logging-facade"; 172565 - version = "0.3.0"; 172566 - sha256 = "0d0lwxxgd16is9aw6v3ps4r9prv3dj8xscmm45fvzq3nicjiawcf"; 172567 - revision = "1"; 172568 - editedCabalFile = "1wzln1b02wipm1m7slipij031p96ak0z3qnnzl2xz5lh7bp3zb13"; 172569 - libraryHaskellDepends = [ base call-stack transformers ]; 172570 - testHaskellDepends = [ base hspec ]; 172571 - description = "Simple logging abstraction that allows multiple back-ends"; 172572 - license = lib.licenses.mit; 172573 - }) {}; 172574 - 172575 - "logging-facade_0_3_1" = callPackage 172576 ({ mkDerivation, base, call-stack, hspec, hspec-discover 172577 , transformers 172578 }: ··· 172585 testToolDepends = [ hspec-discover ]; 172586 description = "Simple logging abstraction that allows multiple back-ends"; 172587 license = lib.licenses.mit; 172588 - hydraPlatforms = lib.platforms.none; 172589 }) {}; 172590 172591 "logging-facade-journald" = callPackage ··· 172775 ]; 172776 description = "Logstash client library for Haskell"; 172777 license = lib.licenses.mit; 172778 }) {}; 172779 172780 "lojban" = callPackage ··· 173304 173305 "lorentz" = callPackage 173306 ({ mkDerivation, aeson-pretty, base-noprelude, bimap, bytestring 173307 - , constraints, containers, data-default, first-class-families, fmt 173308 - , interpolate, lens, morley, morley-prelude, mtl, named 173309 - , optparse-applicative, singletons, template-haskell, text 173310 , text-manipulate, unordered-containers, vinyl, with-utf8 173311 }: 173312 mkDerivation { 173313 pname = "lorentz"; 173314 - version = "0.12.1"; 173315 - sha256 = "1ba511lxmlmv3dj483q6bgk5bvb16d2js0qldz513j4azqjr5f19"; 173316 libraryHaskellDepends = [ 173317 aeson-pretty base-noprelude bimap bytestring constraints containers 173318 - data-default first-class-families fmt interpolate lens morley 173319 morley-prelude mtl named optparse-applicative singletons 173320 template-haskell text text-manipulate unordered-containers vinyl 173321 with-utf8 ··· 173902 ({ mkDerivation, base, lua5_3, tasty, tasty-hunit }: 173903 mkDerivation { 173904 pname = "lua"; 173905 - version = "2.0.1"; 173906 - sha256 = "1ff50sqk52kpyam5mb66spnk8j1n8vbyqgd6p0kmhqpc71890zmp"; 173907 configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ]; 173908 libraryHaskellDepends = [ base ]; 173909 librarySystemDepends = [ lua5_3 ]; ··· 175808 pname = "managed"; 175809 version = "1.0.8"; 175810 sha256 = "00wzfy9facwgimrilz7bxaigr79w10733h8zfgyhll644p2rnz38"; 175811 libraryHaskellDepends = [ base transformers ]; 175812 description = "A monad for managed values"; 175813 license = lib.licenses.bsd3; 175814 maintainers = with lib.maintainers; [ Gabriel439 ]; 175815 }) {}; 175816 ··· 176960 }) {}; 176961 176962 "mason" = callPackage 176963 - ({ mkDerivation, array, base, bytestring, ghc-prim, integer-gmp 176964 - , network, text 176965 }: 176966 mkDerivation { 176967 pname = "mason"; 176968 - version = "0.2.4"; 176969 - sha256 = "1ic2h2mj31hb972x146wn7p29hlmx9p30f5gi2ccqv2ww96l56fv"; 176970 libraryHaskellDepends = [ 176971 - array base bytestring ghc-prim integer-gmp network text 176972 ]; 176973 description = "Fast and extensible bytestring builder"; 176974 license = lib.licenses.bsd3; ··· 177090 broken = true; 177091 }) {}; 177092 177093 - "massiv-persist_1_0_0_1" = callPackage 177094 ({ mkDerivation, base, bytestring, deepseq, doctest, hspec 177095 , hspec-discover, massiv, massiv-test, persist, primitive 177096 , QuickCheck 177097 }: 177098 mkDerivation { 177099 pname = "massiv-persist"; 177100 - version = "1.0.0.1"; 177101 - sha256 = "1j5vzk5m2r1cs5v5pzmf1i7p8zdlf29g0gdklf6snl9llk755pgy"; 177102 libraryHaskellDepends = [ 177103 base bytestring deepseq massiv persist primitive 177104 ]; ··· 177153 broken = true; 177154 }) {}; 177155 177156 - "massiv-serialise_1_0_0_1" = callPackage 177157 ({ mkDerivation, base, deepseq, doctest, hspec, hspec-discover 177158 , massiv, massiv-test, QuickCheck, serialise, vector 177159 }: 177160 mkDerivation { 177161 pname = "massiv-serialise"; 177162 - version = "1.0.0.1"; 177163 - sha256 = "0zmikmfjjshf9p0fawcg05832hxdzj04kqqh11bz1kqcc1yc7yk0"; 177164 libraryHaskellDepends = [ base deepseq massiv serialise vector ]; 177165 testHaskellDepends = [ 177166 base doctest hspec massiv massiv-test QuickCheck serialise ··· 179361 pname = "memory"; 179362 version = "0.16.0"; 179363 sha256 = "0zzxyr2b7gj92h3jzaq1lfqfyfkfj4l636ry35191i9bp3wa0v8l"; 179364 libraryHaskellDepends = [ 179365 base basement bytestring deepseq ghc-prim 179366 ]; ··· 179531 }: 179532 mkDerivation { 179533 pname = "mergeful-persistent"; 179534 - version = "0.0.0.0"; 179535 - sha256 = "13lw0gb57as7mplaqwg0i6cpdp1gyw0qghbq4l19y7ib8c6jqnxi"; 179536 libraryHaskellDepends = [ 179537 base containers mergeful microlens mtl persistent 179538 ]; ··· 179570 }: 179571 mkDerivation { 179572 pname = "mergeless-persistent"; 179573 - version = "0.0.0.0"; 179574 - sha256 = "0b75qs3f1vp4cab28j9znr83apzrsfx7i0p42nk42m5kn5vg2rzs"; 179575 libraryHaskellDepends = [ 179576 base containers mergeless microlens persistent 179577 ]; ··· 183733 ]; 183734 description = "Logstash backend for monad-logger"; 183735 license = lib.licenses.mit; 183736 }) {}; 183737 183738 "monad-logger-prefix" = callPackage ··· 184150 license = lib.licenses.bsd3; 184151 }) {}; 184152 184153 "monad-st" = callPackage 184154 ({ mkDerivation, base, transformers }: 184155 mkDerivation { ··· 185526 185527 "morley" = callPackage 185528 ({ mkDerivation, aeson, aeson-casing, aeson-pretty, base-noprelude 185529 - , base58-bytestring, binary, bytestring, Cabal, constraints 185530 - , containers, cryptonite, data-default, doctest, elliptic-curve 185531 - , first-class-families, fmt, galois-field, generic-deriving, gitrev 185532 - , haskeline, hex-text, interpolate, lens, megaparsec, memory 185533 - , MonadRandom, morley-prelude, mtl, named, optparse-applicative 185534 - , pairing, parser-combinators, process, scientific, semigroups 185535 - , show-type, singletons, syb, tasty-discover, template-haskell 185536 - , text, text-manipulate, th-lift, th-lift-instances, time, timerep 185537 , uncaught-exception, unordered-containers, vector, vinyl 185538 , with-utf8, wl-pprint-text 185539 }: 185540 mkDerivation { 185541 pname = "morley"; 185542 - version = "1.15.1"; 185543 - sha256 = "03r6p37b9hw9n0b143d38z07fjv05jnbw76s1fjx92rm2ybbgh3p"; 185544 isLibrary = true; 185545 isExecutable = true; 185546 libraryHaskellDepends = [ 185547 aeson aeson-casing aeson-pretty base-noprelude base58-bytestring 185548 binary bytestring constraints containers cryptonite data-default 185549 elliptic-curve first-class-families fmt galois-field 185550 - generic-deriving gitrev hex-text interpolate lens megaparsec memory 185551 - MonadRandom morley-prelude mtl named optparse-applicative pairing 185552 parser-combinators scientific semigroups show-type singletons syb 185553 template-haskell text text-manipulate th-lift th-lift-instances 185554 time timerep uncaught-exception unordered-containers vector vinyl 185555 with-utf8 wl-pprint-text 185556 ]; 185557 executableHaskellDepends = [ 185558 - aeson base-noprelude bytestring fmt haskeline megaparsec 185559 - morley-prelude named optparse-applicative text vinyl with-utf8 185560 - ]; 185561 - testHaskellDepends = [ 185562 - base-noprelude bytestring Cabal doctest morley-prelude 185563 - optparse-applicative process 185564 ]; 185565 - testToolDepends = [ tasty-discover ]; 185566 description = "Developer tools for the Michelson Language"; 185567 license = lib.licenses.mit; 185568 hydraPlatforms = lib.platforms.none; 185569 }) {}; 185570 185571 "morley-prelude" = callPackage 185572 - ({ mkDerivation, base-noprelude, lens, universum }: 185573 mkDerivation { 185574 pname = "morley-prelude"; 185575 - version = "0.4.2"; 185576 - sha256 = "0cmrs0hqrbwrmxycqk39csk0y7hswj2r6p1hgzrxyhy536szabby"; 185577 - libraryHaskellDepends = [ base-noprelude lens universum ]; 185578 description = "A custom prelude used in Morley"; 185579 license = lib.licenses.mit; 185580 }) {}; ··· 186605 "mptcp-pm" = callPackage 186606 ({ mkDerivation, aeson, aeson-extra, aeson-pretty, base, bytestring 186607 , bytestring-conversion, c2hs, cereal, containers, enumset 186608 - , filepath, hslogger, HUnit, ip, katip, mtl, netlink 186609 - , optparse-applicative, process, temporary, text, transformers 186610 , unordered-containers 186611 }: 186612 mkDerivation { 186613 pname = "mptcp-pm"; 186614 - version = "0.0.3"; 186615 - sha256 = "0h7r9i9izflsbgb8kimsz0hmglbd4s9pjycjsm0h64lg8b1sy4gs"; 186616 isLibrary = true; 186617 isExecutable = true; 186618 libraryHaskellDepends = [ 186619 aeson aeson-extra aeson-pretty base bytestring 186620 - bytestring-conversion cereal containers enumset ip katip mtl 186621 - netlink process text transformers unordered-containers 186622 ]; 186623 libraryToolDepends = [ c2hs ]; 186624 executableHaskellDepends = [ 186625 aeson aeson-extra aeson-pretty base bytestring cereal containers 186626 - filepath hslogger ip mtl netlink optparse-applicative process 186627 temporary text transformers 186628 ]; 186629 testHaskellDepends = [ base HUnit ip text ]; ··· 188881 license = lib.licenses.bsd3; 188882 }) {}; 188883 188884 "mustache-haskell" = callPackage 188885 ({ mkDerivation, aeson, base, bytestring, directory 188886 , optparse-applicative, parsec, pretty-show, scientific, text ··· 190494 }: 190495 mkDerivation { 190496 pname = "natural"; 190497 - version = "0.3.0.5"; 190498 - sha256 = "0w137fa7qy70zi0a2r38bbczpyiafvqf2x7y91r3h0g1ajk9zfys"; 190499 libraryHaskellDepends = [ base lens semigroupoids ]; 190500 testHaskellDepends = [ 190501 base checkers hedgehog lens QuickCheck tasty tasty-hedgehog ··· 193472 license = lib.licenses.bsd3; 193473 }) {}; 193474 193475 "ngx-export-tools" = callPackage 193476 ({ mkDerivation, aeson, base, binary, bytestring, ngx-export, safe 193477 , template-haskell ··· 194786 ({ mkDerivation, base, comonad, deepseq, doctest, Glob, safe }: 194787 mkDerivation { 194788 pname = "nonempty-zipper"; 194789 - version = "1.0.0.2"; 194790 - sha256 = "10fj56ry851npkhrkw9gb1sckhx764l2s2c5x83cnylxlg7cfijj"; 194791 - libraryHaskellDepends = [ base comonad deepseq safe ]; 194792 - testHaskellDepends = [ base comonad deepseq doctest Glob safe ]; 194793 - description = "A non-empty comonadic list zipper"; 194794 - license = lib.licenses.mit; 194795 - }) {}; 194796 - 194797 - "nonempty-zipper_1_0_0_3" = callPackage 194798 - ({ mkDerivation, base, comonad, deepseq, doctest, Glob, safe }: 194799 - mkDerivation { 194800 - pname = "nonempty-zipper"; 194801 version = "1.0.0.3"; 194802 sha256 = "1cifrld76j43spf265arwp2sdpkbhrb4ca2fmj4g9mw0nxj4dbqq"; 194803 libraryHaskellDepends = [ base comonad deepseq safe ]; 194804 testHaskellDepends = [ base comonad deepseq doctest Glob safe ]; 194805 description = "A non-empty comonadic list zipper"; 194806 license = lib.licenses.mit; 194807 - hydraPlatforms = lib.platforms.none; 194808 }) {}; 194809 194810 "nonemptymap" = callPackage ··· 194913 pname = "normalization-insensitive"; 194914 version = "2.0.2"; 194915 sha256 = "1rr12rrij64hi6jkd42h4x2m86k1ra10ykzpzc38n6rfdhyiswpn"; 194916 - revision = "1"; 194917 - editedCabalFile = "0q5h2017r0zwgi2xdrznhq2llljz9bslqnhq1l5zczrm9xs3304x"; 194918 libraryHaskellDepends = [ 194919 base bytestring deepseq hashable text unicode-transforms 194920 ]; ··· 197166 broken = true; 197167 }) {}; 197168 197169 "off-simple" = callPackage 197170 ({ mkDerivation, base, parsec3, vector }: 197171 mkDerivation { ··· 197674 ({ mkDerivation, base, one-liner, random }: 197675 mkDerivation { 197676 pname = "one-liner-instances"; 197677 - version = "0.1.2.1"; 197678 - sha256 = "1gy900nd5n6cffqw63hlkqg4ly86wjlfqgdcm1zy2nyx7dxg914k"; 197679 libraryHaskellDepends = [ base one-liner random ]; 197680 description = "Generics-based implementations for common typeclasses"; 197681 license = lib.licenses.bsd3; ··· 197860 license = lib.licenses.bsd3; 197861 }) {}; 197862 197863 - "opaleye_0_8_0_0" = callPackage 197864 ({ mkDerivation, aeson, base, base16-bytestring, bytestring 197865 , case-insensitive, containers, contravariant, dotenv, hspec 197866 , hspec-discover, multiset, postgresql-simple, pretty ··· 197870 }: 197871 mkDerivation { 197872 pname = "opaleye"; 197873 - version = "0.8.0.0"; 197874 - sha256 = "0rsgr82sndd81bbr3djzralvns51145ars36l6r9v9y5b9hjm32h"; 197875 - revision = "1"; 197876 - editedCabalFile = "018fnqx469vbyp8r3w631b65j759nrcm843m0jalzrs9z7l2bk29"; 197877 libraryHaskellDepends = [ 197878 aeson base base16-bytestring bytestring case-insensitive 197879 contravariant postgresql-simple pretty product-profunctors ··· 200499 hydraPlatforms = lib.platforms.none; 200500 }) {}; 200501 200502 "orthotope" = callPackage 200503 ({ mkDerivation, base, deepseq, dlist, HUnit, pretty, QuickCheck 200504 , test-framework, test-framework-hunit, test-framework-quickcheck2 ··· 200540 }: 200541 mkDerivation { 200542 pname = "ory-hydra-client"; 200543 - version = "1.9.2"; 200544 - sha256 = "0z1897xl10465mzhriis9bmxk0hnswl5ap2m6x8ks5m120irh894"; 200545 libraryHaskellDepends = [ 200546 aeson base base64-bytestring bytestring case-insensitive containers 200547 deepseq exceptions http-api-data http-client http-client-tls ··· 200553 aeson base bytestring containers hspec iso8601-time mtl QuickCheck 200554 semigroups text time transformers unordered-containers vector 200555 ]; 200556 - description = "Auto-generated ory-hydra API Client"; 200557 license = lib.licenses.mit; 200558 }) {}; 200559 ··· 201662 maintainers = with lib.maintainers; [ peti ]; 201663 }) {}; 201664 201665 - "pandoc_2_16_1" = callPackage 201666 ({ mkDerivation, aeson, aeson-pretty, array, attoparsec, base 201667 , base64-bytestring, binary, blaze-html, blaze-markup, bytestring 201668 , case-insensitive, citeproc, commonmark, commonmark-extensions ··· 201672 , hslua-marshalling, hslua-module-path, hslua-module-system 201673 , hslua-module-text, hslua-module-version, http-client 201674 , http-client-tls, http-types, ipynb, jira-wiki-markup, JuicyPixels 201675 - , mtl, network, network-uri, pandoc-types, parsec, pretty 201676 , pretty-show, process, QuickCheck, random, safe, scientific, SHA 201677 , skylighting, skylighting-core, split, syb, tagsoup, tasty 201678 , tasty-bench, tasty-golden, tasty-hunit, tasty-lua ··· 201682 }: 201683 mkDerivation { 201684 pname = "pandoc"; 201685 - version = "2.16.1"; 201686 - sha256 = "1gjmry6bnwh20myhqsj8ysfdhhcq7ccawkykxf4k4bnp7yppdfza"; 201687 configureFlags = [ "-fhttps" "-f-trypandoc" ]; 201688 isLibrary = true; 201689 isExecutable = true; ··· 201696 emojis exceptions file-embed filepath Glob haddock-library hslua 201697 hslua-marshalling hslua-module-path hslua-module-system 201698 hslua-module-text hslua-module-version http-client http-client-tls 201699 - http-types ipynb jira-wiki-markup JuicyPixels mtl network 201700 network-uri pandoc-types parsec pretty pretty-show process random 201701 safe scientific SHA skylighting skylighting-core split syb tagsoup 201702 temporary texmath text text-conversions time unicode-collation ··· 201710 zip-archive 201711 ]; 201712 benchmarkHaskellDepends = [ 201713 - base bytestring containers deepseq mtl tasty-bench text time 201714 ]; 201715 postInstall = '' 201716 mkdir -p $out/share/man/man1 ··· 202023 license = lib.licenses.bsd3; 202024 }) {}; 202025 202026 "pandoc-markdown-ghci-filter" = callPackage 202027 ({ mkDerivation, aeson, base, containers, ghcid, pandoc 202028 , pandoc-types, QuickCheck, tasty, tasty-hunit, tasty-quickcheck ··· 203525 broken = true; 203526 }) {}; 203527 203528 - "parsec_3_1_14_0" = callPackage 203529 - ({ mkDerivation, base, bytestring, HUnit, mtl, test-framework 203530 - , test-framework-hunit, text 203531 - }: 203532 mkDerivation { 203533 pname = "parsec"; 203534 - version = "3.1.14.0"; 203535 - sha256 = "132waj2cpn892midbhpkfmb74qq83v0zv29v885frlp1gvh94b67"; 203536 - revision = "4"; 203537 - editedCabalFile = "0p65q054iaz2117a5qk1428dic4sb41acclys9k00zna24ks7iq3"; 203538 libraryHaskellDepends = [ base bytestring mtl text ]; 203539 - testHaskellDepends = [ 203540 - base HUnit mtl test-framework test-framework-hunit 203541 - ]; 203542 description = "Monadic parser combinators"; 203543 - license = lib.licenses.bsd3; 203544 hydraPlatforms = lib.platforms.none; 203545 }) {}; 203546 ··· 204034 }: 204035 mkDerivation { 204036 pname = "parsley"; 204037 - version = "1.0.2.0"; 204038 - sha256 = "1wjq2lrggdaxbw9i00dph3m737san52qm7wfa5rl214lpmap6wi6"; 204039 - revision = "1"; 204040 - editedCabalFile = "1vagq523r4hl3lsqfvl67kqlkfnm1fmpaznr19yd0davq7xzgvva"; 204041 libraryHaskellDepends = [ 204042 base parsley-core template-haskell text 204043 ]; ··· 204064 }: 204065 mkDerivation { 204066 pname = "parsley-core"; 204067 - version = "1.8.0.0"; 204068 - sha256 = "100lv531azfvzgh4w7pfdxm2xxm42h83547ql5prjjs5zc1bdzqr"; 204069 libraryHaskellDepends = [ 204070 array base bytestring containers dependent-map dependent-sum 204071 ghc-prim hashable mtl pretty-terminal template-haskell text ··· 204678 pname = "path"; 204679 version = "0.9.0"; 204680 sha256 = "14h811rrydpiwi1rdi5wmcdlcq2qjld3iv92p4czqf08a7lxaz4g"; 204681 libraryHaskellDepends = [ 204682 aeson base deepseq exceptions filepath hashable template-haskell 204683 text ··· 206175 }: 206176 mkDerivation { 206177 pname = "perceptual-hash"; 206178 - version = "0.1.4.4"; 206179 - sha256 = "00jbxkspjbxg4yv6jh9d1gx0fq5v5gqaxnvr9h7hx6xiyfc4n2wi"; 206180 isLibrary = true; 206181 isExecutable = true; 206182 enableSeparateDataOutput = true; ··· 208593 }) {}; 208594 208595 "photoname" = callPackage 208596 - ({ mkDerivation, base, directory, exif, filepath, HUnit, mtl 208597 - , old-locale, parsec, process, regex-posix, time, unix 208598 }: 208599 mkDerivation { 208600 pname = "photoname"; 208601 - version = "3.3"; 208602 - sha256 = "1fcl0m5hm6xvnzvn8v0l69vr7yh2q58six62147mwf4nlzny61gd"; 208603 - isLibrary = false; 208604 isExecutable = true; 208605 executableHaskellDepends = [ 208606 - base directory exif filepath mtl old-locale parsec time unix 208607 ]; 208608 testHaskellDepends = [ 208609 - base directory exif filepath HUnit mtl old-locale parsec process 208610 - regex-posix time unix 208611 ]; 208612 description = "Rename photo image files based on EXIF shoot date"; 208613 license = lib.licenses.isc; 208614 - hydraPlatforms = lib.platforms.none; 208615 }) {}; 208616 208617 "phraskell" = callPackage ··· 208928 broken = true; 208929 }) {}; 208930 208931 "pid1" = callPackage 208932 ({ mkDerivation, base, directory, process, unix }: 208933 mkDerivation { ··· 209707 testHaskellDepends = [ async base pipes stm ]; 209708 description = "Concurrency for the pipes ecosystem"; 209709 license = lib.licenses.bsd3; 209710 maintainers = with lib.maintainers; [ Gabriel439 ]; 209711 }) {}; 209712 ··· 209822 pname = "pipes-extras"; 209823 version = "1.0.15"; 209824 sha256 = "1cyb05bv5xkarab3090ikpjiqm79lr46n3nalplliz8jr4x67a82"; 209825 - revision = "3"; 209826 - editedCabalFile = "177l1fs1wgm34ifbx83xxf29m0ghq6z9skpkwm86qfln2hpikkj9"; 209827 libraryHaskellDepends = [ base foldl lens pipes transformers ]; 209828 testHaskellDepends = [ 209829 base HUnit pipes test-framework test-framework-hunit transformers ··· 212395 license = lib.licenses.bsd3; 212396 }) {}; 212397 212398 - "polysemy_1_7_0_0" = callPackage 212399 ({ mkDerivation, async, base, Cabal, cabal-doctest, containers 212400 , criterion, doctest, first-class-families, free, freer-simple 212401 , hspec, hspec-discover, inspection-testing, mtl, QuickCheck, stm ··· 212404 }: 212405 mkDerivation { 212406 pname = "polysemy"; 212407 - version = "1.7.0.0"; 212408 - sha256 = "1wry69zv5rbjvn2ll16cbynfkmjzz8gglv1dy1n8i3pn6xbs1rn6"; 212409 setupHaskellDepends = [ base Cabal cabal-doctest ]; 212410 libraryHaskellDepends = [ 212411 async base containers first-class-families mtl QuickCheck stm syb ··· 212824 broken = true; 212825 }) {}; 212826 212827 - "polysemy-plugin_0_4_2_0" = callPackage 212828 ({ mkDerivation, base, Cabal, cabal-doctest, containers, doctest 212829 , ghc, ghc-tcplugins-extra, hspec, hspec-discover 212830 , inspection-testing, polysemy, should-not-typecheck, syb ··· 212832 }: 212833 mkDerivation { 212834 pname = "polysemy-plugin"; 212835 - version = "0.4.2.0"; 212836 - sha256 = "02ci30l7235nyz0z733ccwvjxb2pbsm8gdm21c6bscbkndpp25vg"; 212837 setupHaskellDepends = [ base Cabal cabal-doctest ]; 212838 libraryHaskellDepends = [ 212839 base containers ghc ghc-tcplugins-extra polysemy syb transformers ··· 214696 pname = "postgresql-simple"; 214697 version = "0.6.4"; 214698 sha256 = "0rz2bklxp4pvbxb2w49h5p6pbwabn6d5d4j4mrya4fpa0d13k43d"; 214699 - revision = "4"; 214700 - editedCabalFile = "1s3y4ij6xw5ck6c1zk1d9v9smnby098mn1pj8wys01qy5mac78x1"; 214701 libraryHaskellDepends = [ 214702 aeson attoparsec base bytestring bytestring-builder 214703 case-insensitive containers hashable Only postgresql-libpq ··· 215451 }: 215452 mkDerivation { 215453 pname = "powerdns"; 215454 - version = "0.1.1"; 215455 - sha256 = "1pyh9whqzx7fkvr3090paiz1x29fkfkrgs1v3k4d0x3vfdxv6n1f"; 215456 libraryHaskellDepends = [ 215457 aeson base base64-bytestring bytestring case-insensitive containers 215458 deepseq servant servant-client servant-client-core text time ··· 216505 license = lib.licenses.mit; 216506 }) {}; 216507 216508 "pretty-show" = callPackage 216509 ({ mkDerivation, array, base, filepath, ghc-prim, happy 216510 , haskell-lexer, pretty, text ··· 217084 license = lib.licenses.mit; 217085 }) {}; 217086 217087 - "primitive-extras_0_10_1_1" = callPackage 217088 ({ mkDerivation, base, bytestring, cereal, deferred-folds, focus 217089 , foldl, list-t, primitive, primitive-unlifted, profunctors 217090 , QuickCheck, quickcheck-instances, rerebase, tasty, tasty-hunit ··· 217092 }: 217093 mkDerivation { 217094 pname = "primitive-extras"; 217095 - version = "0.10.1.1"; 217096 - sha256 = "117bgh5bafzvamkpl4g97c8vprs4lndl5pjc3nl6wqj7jbrgpw25"; 217097 libraryHaskellDepends = [ 217098 base bytestring cereal deferred-folds focus foldl list-t primitive 217099 primitive-unlifted profunctors vector ··· 217229 ({ mkDerivation, base, bytestring, primitive, stm, text-short }: 217230 mkDerivation { 217231 pname = "primitive-unlifted"; 217232 - version = "0.1.3.0"; 217233 - sha256 = "1q7scarsdv51x74g6ahvc5znk9h628s984a7bawig0lnx67wzwih"; 217234 libraryHaskellDepends = [ base bytestring primitive text-short ]; 217235 testHaskellDepends = [ base primitive stm ]; 217236 description = "Primitive GHC types with unlifted types inside"; ··· 217960 license = lib.licenses.bsd3; 217961 }) {}; 217962 217963 "prof-flamegraph" = callPackage 217964 ({ mkDerivation, base, optparse-applicative }: 217965 mkDerivation { ··· 218139 tagged transformers 218140 ]; 218141 description = "Profunctors"; 218142 license = lib.licenses.bsd3; 218143 }) {}; 218144 ··· 220815 }: 220816 mkDerivation { 220817 pname = "pusher-http-haskell"; 220818 - version = "2.1.0.6"; 220819 - sha256 = "029pxzidmflsa19417bcx82hbxj3yq1khzb6skf97xbzzf3hs6ki"; 220820 libraryHaskellDepends = [ 220821 aeson base base16-bytestring bytestring cryptonite hashable 220822 http-client http-client-tls http-types memory text time ··· 221992 }: 221993 mkDerivation { 221994 pname = "quic"; 221995 - version = "0.0.0"; 221996 - sha256 = "0hiyw9qpx7h42ay9jna8xr7vr16jlr62v0nfnq4y29gki38221a4"; 221997 isLibrary = true; 221998 isExecutable = true; 221999 libraryHaskellDepends = [ ··· 222229 license = lib.licenses.bsd3; 222230 }) {}; 222231 222232 - "quickcheck-instances_0_3_26_1" = callPackage 222233 ({ mkDerivation, array, base, bytestring, case-insensitive 222234 , containers, data-fix, hashable, integer-logarithms, old-time 222235 , OneTuple, QuickCheck, scientific, splitmix, strict, tagged, text ··· 222238 }: 222239 mkDerivation { 222240 pname = "quickcheck-instances"; 222241 - version = "0.3.26.1"; 222242 - sha256 = "0zgsz1sisw3zlxlc5ssir6q4sm1qcvzwkmw50plrna04i0xj8bv4"; 222243 - revision = "1"; 222244 - editedCabalFile = "0saw3pxa8078s671n954wzdmhw3l4q2krcwngw6z9yscw9z1a0j4"; 222245 libraryHaskellDepends = [ 222246 array base bytestring case-insensitive containers data-fix hashable 222247 integer-logarithms old-time OneTuple QuickCheck scientific splitmix ··· 224840 broken = true; 224841 }) {}; 224842 224843 - "rattletrap_11_2_3" = callPackage 224844 ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring 224845 , containers, filepath, http-client, http-client-tls, text 224846 }: 224847 mkDerivation { 224848 pname = "rattletrap"; 224849 - version = "11.2.3"; 224850 - sha256 = "00hqymw1fbg4crgrd5ixivbpx5qblvp109j0yw8nkzidb4bbdhjj"; 224851 isLibrary = true; 224852 isExecutable = true; 224853 libraryHaskellDepends = [ ··· 226100 license = lib.licenses.mit; 226101 }) {}; 226102 226103 "rebindable" = callPackage 226104 ({ mkDerivation, base, data-default-class, indexed }: 226105 mkDerivation { ··· 226456 base bytestring containers filepath gtk mtl process 226457 ]; 226458 description = "Count lines in files and display them hierarchically"; 226459 license = lib.licenses.bsd3; 226460 }) {}; 226461 ··· 226880 libraryHaskellDepends = [ base stm transformers ]; 226881 description = "A type class for monads with references using type families"; 226882 license = lib.licenses.bsd3; 226883 }) {}; 226884 226885 "refact" = callPackage ··· 228081 }) {}; 228082 228083 "regex-base" = callPackage 228084 - ({ mkDerivation, array, base, bytestring, containers, mtl, text }: 228085 - mkDerivation { 228086 - pname = "regex-base"; 228087 - version = "0.94.0.1"; 228088 - sha256 = "1ngdmmrxs1rhvib052c6shfa40yad82jylylikz327r0zxpxkcbi"; 228089 - revision = "1"; 228090 - editedCabalFile = "19rzll80mpr4licfzz6qfy4i9xbmhxy4r7n1d523db73q09jvzrm"; 228091 - libraryHaskellDepends = [ 228092 - array base bytestring containers mtl text 228093 - ]; 228094 - description = "Common \"Text.Regex.*\" API for Regex matching"; 228095 - license = lib.licenses.bsd3; 228096 - }) {}; 228097 - 228098 - "regex-base_0_94_0_2" = callPackage 228099 ({ mkDerivation, array, base, bytestring, containers, text }: 228100 mkDerivation { 228101 pname = "regex-base"; ··· 228104 libraryHaskellDepends = [ array base bytestring containers text ]; 228105 description = "Common \"Text.Regex.*\" API for Regex matching"; 228106 license = lib.licenses.bsd3; 228107 - hydraPlatforms = lib.platforms.none; 228108 }) {}; 228109 228110 "regex-compat" = callPackage ··· 228814 broken = true; 228815 }) {}; 228816 228817 "registry-hedgehog" = callPackage 228818 - ({ mkDerivation, base, containers, generic-lens, hedgehog, mmorph 228819 - , multimap, protolude, registry, tasty, tasty-discover 228820 - , tasty-hedgehog, tasty-th, template-haskell, text, transformers 228821 - , universum, unordered-containers 228822 }: 228823 mkDerivation { 228824 pname = "registry-hedgehog"; 228825 - version = "0.4.0.0"; 228826 - sha256 = "0mq5x9a8z70ibq78wx1p1za2f4r1mgrpdy78p5yvxvlzcazwqnp6"; 228827 libraryHaskellDepends = [ 228828 base containers hedgehog mmorph multimap protolude registry tasty 228829 tasty-discover tasty-hedgehog tasty-th template-haskell text 228830 transformers universum unordered-containers 228831 ]; 228832 testHaskellDepends = [ 228833 - base containers generic-lens hedgehog mmorph multimap protolude 228834 - registry tasty tasty-discover tasty-hedgehog tasty-th 228835 - template-haskell text transformers universum unordered-containers 228836 ]; 228837 testToolDepends = [ tasty-discover ]; 228838 description = "utilities to work with Hedgehog generators and `registry`"; ··· 229046 maintainers = with lib.maintainers; [ sternenseemann ]; 229047 }) {}; 229048 229049 "relacion" = callPackage 229050 ({ mkDerivation, array, base, containers }: 229051 mkDerivation { ··· 230525 libraryHaskellDepends = [ rebase ]; 230526 description = "Reexports from \"base\" with a bunch of other standard libraries"; 230527 license = lib.licenses.mit; 230528 }) {}; 230529 230530 "reroute" = callPackage ··· 233788 ]; 233789 description = "Directed rounding for built-in floating types"; 233790 license = lib.licenses.bsd3; 233791 - hydraPlatforms = lib.platforms.none; 233792 }) {}; 233793 233794 "rounding" = callPackage ··· 234204 }: 234205 mkDerivation { 234206 pname = "rrule"; 234207 - version = "0.1.1"; 234208 - sha256 = "0xb0yf0p5r7szb7zxlcc95d22f49s9ql671f1lmvjvzg1jkmsvva"; 234209 libraryHaskellDepends = [ 234210 base megaparsec parser-combinators text time 234211 ]; ··· 235180 license = lib.licenses.mit; 235181 }) {}; 235182 235183 "safe-lazy-io" = callPackage 235184 ({ mkDerivation, base, extensible-exceptions, parallel, strict-io 235185 }: ··· 239196 }: 239197 mkDerivation { 239198 pname = "secure-memory"; 239199 - version = "0.0.0.1"; 239200 - sha256 = "0765lkdnkzdmk3r8hbipxb2brg000jg4dqscqcjjh59lvsiaq367"; 239201 isLibrary = true; 239202 isExecutable = true; 239203 libraryHaskellDepends = [ ··· 239895 pname = "semirings"; 239896 version = "0.6"; 239897 sha256 = "16q535bvjl7395sqkx6zlw48y4fzr7irp44pcp7w9irpn4cncdcr"; 239898 libraryHaskellDepends = [ 239899 base base-compat-batteries containers hashable unordered-containers 239900 ]; ··· 240130 }: 240131 mkDerivation { 240132 pname = "seonbi"; 240133 - version = "0.3.0"; 240134 - sha256 = "0cn423jydf1nalj5hrnr1mjpfzg78srjh1kmc8bwnv9lhjr3dq36"; 240135 isLibrary = true; 240136 isExecutable = true; 240137 enableSeparateDataOutput = true; ··· 241771 }) {}; 241772 241773 "servant-hmac-auth" = callPackage 241774 - ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring 241775 , case-insensitive, containers, cryptonite, http-client, http-types 241776 - , markdown-unlit, memory, mtl, servant, servant-client 241777 - , servant-client-core, servant-server, transformers, wai, warp 241778 }: 241779 mkDerivation { 241780 pname = "servant-hmac-auth"; 241781 - version = "0.0.0"; 241782 - sha256 = "08873pwmn2wzhl2r87gx6db3f2j8848g4xq2i4gnwqj23s7sfy0z"; 241783 - isLibrary = true; 241784 - isExecutable = true; 241785 libraryHaskellDepends = [ 241786 base base64-bytestring binary bytestring case-insensitive 241787 containers cryptonite http-client http-types memory mtl servant 241788 servant-client servant-client-core servant-server transformers wai 241789 ]; 241790 - executableHaskellDepends = [ 241791 - aeson base http-client servant servant-client servant-server warp 241792 - ]; 241793 - executableToolDepends = [ markdown-unlit ]; 241794 testHaskellDepends = [ base ]; 241795 description = "Servant authentication with HMAC"; 241796 license = lib.licenses.mit; ··· 245479 pname = "shelly"; 245480 version = "1.9.0"; 245481 sha256 = "1kma77gixhyciimh19p64h1ndbcrs9qhk8fgyv71iqh5q57zvday"; 245482 - revision = "1"; 245483 - editedCabalFile = "0827p6wq8j92svrvmx02gdk961xx42g1ng4j6g7nflrfks9hw0zf"; 245484 isLibrary = true; 245485 isExecutable = true; 245486 libraryHaskellDepends = [ ··· 245540 }: 245541 mkDerivation { 245542 pname = "shh"; 245543 - version = "0.7.1.4"; 245544 - sha256 = "1yriini033kja8w9hrxyfbc62nbwg4fb5nl8rj004gdkbaiz7wbl"; 245545 isLibrary = true; 245546 isExecutable = true; 245547 libraryHaskellDepends = [ ··· 245552 async base bytestring deepseq directory temporary unix 245553 ]; 245554 testHaskellDepends = [ 245555 - async base bytestring directory doctest filepath markdown-unlit 245556 - tasty tasty-hunit tasty-quickcheck utf8-string 245557 ]; 245558 testToolDepends = [ markdown-unlit ]; 245559 description = "Simple shell scripting from Haskell"; ··· 252225 pname = "some"; 252226 version = "1.0.3"; 252227 sha256 = "0w3syapwz9v916zf1i4f8vxymdfg7syc2cpxgnqr018pbswzxrk2"; 252228 - revision = "1"; 252229 - editedCabalFile = "14nsajf1n3ba58ljhbk3hk2nr61s896grbi07jvg68dvg7h5rln5"; 252230 libraryHaskellDepends = [ base deepseq ]; 252231 testHaskellDepends = [ base ]; 252232 description = "Existential type: Some"; ··· 252670 pname = "spacecookie"; 252671 version = "1.0.0.0"; 252672 sha256 = "0v61n5afcrfmj7dd51h4wi7d5hzl4r86wvaymhsi3h4jday58ln0"; 252673 isLibrary = true; 252674 isExecutable = true; 252675 libraryHaskellDepends = [ ··· 252690 maintainers = with lib.maintainers; [ sternenseemann ]; 252691 }) {}; 252692 252693 "spacefill" = callPackage 252694 ({ mkDerivation, base }: 252695 mkDerivation { ··· 255136 }: 255137 mkDerivation { 255138 pname = "stack-clean-old"; 255139 - version = "0.4.1"; 255140 - sha256 = "08sbgclcbnl67zayps2clgw8xk7s6bbyhm8r0pp4slx9mk4nrv4l"; 255141 isLibrary = false; 255142 isExecutable = true; 255143 executableHaskellDepends = [ ··· 256941 pname = "step-function"; 256942 version = "0.2"; 256943 sha256 = "1mg7zqqs32zdh1x1738kk0yydyksbhx3y3x8n31f7byk5fvzqq6j"; 256944 - revision = "6"; 256945 - editedCabalFile = "01ncir4kfij1wp591wi333isf20v4sppjfcv27siz6m048cbscg4"; 256946 libraryHaskellDepends = [ 256947 base base-compat-batteries containers deepseq QuickCheck 256948 ]; ··· 257201 }: 257202 mkDerivation { 257203 pname = "stm-hamt"; 257204 - version = "1.2.0.6"; 257205 - sha256 = "15jqj31h9ff4g2k3sq35nm122sy0hqapxf4fm5vlkfh33zdn28di"; 257206 libraryHaskellDepends = [ 257207 base deferred-folds focus hashable list-t primitive 257208 primitive-extras transformers ··· 257661 , base64-bytestring, bifunctors, bytestring, cereal, cereal-vector 257662 , clock, containers, contravariant, criterion, cryptohash, deepseq 257663 , directory, filepath, free, ghc-prim, hashable, hspec 257664 - , hspec-smallcheck, integer-gmp, lifted-base, monad-control 257665 - , mono-traversable, nats, network, primitive, resourcet, safe 257666 - , smallcheck, store-core, syb, template-haskell, text, th-lift 257667 - , th-lift-instances, th-orphans, th-reify-many, th-utilities, time 257668 - , transformers, unordered-containers, vector 257669 - , vector-binary-instances, void, weigh 257670 - }: 257671 - mkDerivation { 257672 - pname = "store"; 257673 - version = "0.7.12"; 257674 - sha256 = "1r6wajaxjlh38bivzmcdx8p0x89g04p6alddlibpa356drzl3jbp"; 257675 - revision = "1"; 257676 - editedCabalFile = "073xa2jpgzkds01f405rcl6p574vnf8vyqsmh4vlyhwzn14q5mgi"; 257677 - libraryHaskellDepends = [ 257678 - array async base base-orphans base64-bytestring bifunctors 257679 - bytestring containers contravariant cryptohash deepseq directory 257680 - filepath free ghc-prim hashable hspec hspec-smallcheck integer-gmp 257681 - lifted-base monad-control mono-traversable nats network primitive 257682 - resourcet safe smallcheck store-core syb template-haskell text 257683 - th-lift th-lift-instances th-orphans th-reify-many th-utilities 257684 - time transformers unordered-containers vector void 257685 - ]; 257686 - testHaskellDepends = [ 257687 - array async base base-orphans base64-bytestring bifunctors 257688 - bytestring clock containers contravariant cryptohash deepseq 257689 - directory filepath free ghc-prim hashable hspec hspec-smallcheck 257690 - integer-gmp lifted-base monad-control mono-traversable nats network 257691 - primitive resourcet safe smallcheck store-core syb template-haskell 257692 - text th-lift th-lift-instances th-orphans th-reify-many 257693 - th-utilities time transformers unordered-containers vector void 257694 - ]; 257695 - benchmarkHaskellDepends = [ 257696 - array async base base-orphans base64-bytestring bifunctors 257697 - bytestring cereal cereal-vector containers contravariant criterion 257698 - cryptohash deepseq directory filepath free ghc-prim hashable hspec 257699 - hspec-smallcheck integer-gmp lifted-base monad-control 257700 - mono-traversable nats network primitive resourcet safe smallcheck 257701 - store-core syb template-haskell text th-lift th-lift-instances 257702 - th-orphans th-reify-many th-utilities time transformers 257703 - unordered-containers vector vector-binary-instances void weigh 257704 - ]; 257705 - description = "Fast binary serialization"; 257706 - license = lib.licenses.mit; 257707 - }) {}; 257708 - 257709 - "store_0_7_14" = callPackage 257710 - ({ mkDerivation, array, async, base, base-orphans 257711 - , base64-bytestring, bifunctors, bytestring, cereal, cereal-vector 257712 - , clock, containers, contravariant, criterion, cryptohash, deepseq 257713 - , directory, filepath, free, ghc-prim, hashable, hspec 257714 , hspec-discover, hspec-smallcheck, integer-gmp, lifted-base 257715 , monad-control, mono-traversable, nats, network, primitive 257716 , resourcet, safe, smallcheck, store-core, syb, template-haskell ··· 257753 ]; 257754 description = "Fast binary serialization"; 257755 license = lib.licenses.mit; 257756 - hydraPlatforms = lib.platforms.none; 257757 }) {}; 257758 257759 "store-core" = callPackage ··· 258607 maintainers = with lib.maintainers; [ maralorn ]; 258608 }) {}; 258609 258610 - "streamly_0_8_0" = callPackage 258611 ({ mkDerivation, atomic-primops, base, containers, deepseq 258612 - , directory, exceptions, fusion-plugin-types, ghc-prim, heaps 258613 - , lockfree-queue, monad-control, mtl, network, primitive 258614 - , transformers, transformers-base 258615 }: 258616 mkDerivation { 258617 pname = "streamly"; 258618 - version = "0.8.0"; 258619 - sha256 = "1ng1zfayk21z03rr3m1kwhrj0if4yl3nggp971r25rks9rb01il5"; 258620 - revision = "1"; 258621 - editedCabalFile = "1fb1klpvgdp3igxqii8ksbn101hfwwgh8n7gslw29b7bjkwyy4q5"; 258622 libraryHaskellDepends = [ 258623 atomic-primops base containers deepseq directory exceptions 258624 - fusion-plugin-types ghc-prim heaps lockfree-queue monad-control mtl 258625 - network primitive transformers transformers-base 258626 ]; 258627 description = "Dataflow programming and declarative concurrency"; 258628 license = lib.licenses.bsd3; ··· 259424 pname = "string-interpolate"; 259425 version = "0.3.1.1"; 259426 sha256 = "0hhzvrs9msyqsxwsqqm55lyxf85vhg4vcsszl735zsbs7431av69"; 259427 - revision = "1"; 259428 - editedCabalFile = "1grn08zg3n26d58al25hvg6czbliabrlf1srlhymjdvkvd4a5i4y"; 259429 libraryHaskellDepends = [ 259430 base bytestring haskell-src-exts haskell-src-meta split 259431 template-haskell text text-conversions utf8-string ··· 261885 }: 261886 mkDerivation { 261887 pname = "swiss-ephemeris"; 261888 - version = "1.4.0.0"; 261889 - sha256 = "0ss502h2083qbiprspylwv02lbgidqgi106qs6k4s6jppgay34gx"; 261890 libraryHaskellDepends = [ base time vector ]; 261891 testHaskellDepends = [ 261892 base directory hspec QuickCheck random time vector ··· 262086 description = "A modern testing framework for Haskell with good defaults and advanced testing features"; 262087 license = "unknown"; 262088 hydraPlatforms = lib.platforms.none; 262089 - broken = true; 262090 - }) {autodocodec = null; autodocodec-yaml = null;}; 262091 262092 "sydtest-aeson" = callPackage 262093 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, path ··· 264717 license = lib.licenses.bsd3; 264718 }) {}; 264719 264720 "tai" = callPackage 264721 ({ mkDerivation, base, clock, lens, mtl, parsers, time, trifecta 264722 , wreq ··· 265306 }: 265307 mkDerivation { 265308 pname = "taskwarrior"; 265309 - version = "0.3.0.0"; 265310 - sha256 = "1h24d799q1s6b36hd40bxa4c9m1izkgh6j7p2jv1p6cxngz28ni0"; 265311 - revision = "6"; 265312 - editedCabalFile = "02jag4yib1fqf2fp9p323hb3vsbkrqm1k9zp2wag6ysl5kvvq1x6"; 265313 libraryHaskellDepends = [ 265314 aeson base bytestring containers process random text time 265315 unordered-containers uuid ··· 265324 maintainers = with lib.maintainers; [ maralorn ]; 265325 }) {}; 265326 265327 - "taskwarrior_0_4_0_0" = callPackage 265328 ({ mkDerivation, aeson, base, bytestring, containers, hspec 265329 , hspec-discover, process, QuickCheck, quickcheck-instances, random 265330 , text, time, uuid 265331 }: 265332 mkDerivation { 265333 pname = "taskwarrior"; 265334 - version = "0.4.0.0"; 265335 - sha256 = "0f815vfhabry64zjwjp48cdcnk875bx2a8c1ix8lxsa700g2rmav"; 265336 libraryHaskellDepends = [ 265337 aeson base bytestring containers process random text time uuid 265338 ]; ··· 265364 license = lib.licenses.mit; 265365 }) {}; 265366 265367 "tasty-ant-xml" = callPackage 265368 ({ mkDerivation, base, containers, directory, filepath 265369 , generic-deriving, ghc-prim, mtl, stm, tagged, tasty, transformers ··· 266022 testHaskellDepends = [ base pcre-light tasty tasty-hunit ]; 266023 description = "QuickCheck support for the Tasty test framework"; 266024 license = lib.licenses.mit; 266025 }) {}; 266026 266027 "tasty-quickcheck-laws" = callPackage ··· 268136 268137 "tesla" = callPackage 268138 ({ mkDerivation, aeson, base, base64-bytestring, bytestring, casing 268139 - , containers, cryptonite, exceptions, generic-deriving, http-client 268140 - , HUnit, lens, lens-aeson, memory, monad-logger, mtl, random, retry 268141 - , tagsoup, tasty, tasty-hunit, tasty-quickcheck, template-haskell 268142 - , text, time, unliftio-core, vector, wreq 268143 }: 268144 mkDerivation { 268145 pname = "tesla"; 268146 - version = "0.4.1.3"; 268147 - sha256 = "1g4kl1lnbx37ffqir3w20j5aifl3196cnb28366c77jmp9dmwxna"; 268148 libraryHaskellDepends = [ 268149 aeson base base64-bytestring bytestring casing containers 268150 - cryptonite exceptions generic-deriving http-client lens lens-aeson 268151 - memory monad-logger mtl random retry tagsoup template-haskell text 268152 - time unliftio-core vector wreq 268153 ]; 268154 testHaskellDepends = [ 268155 aeson base base64-bytestring bytestring casing containers 268156 - cryptonite exceptions generic-deriving http-client HUnit lens 268157 - lens-aeson memory monad-logger mtl random retry tagsoup tasty 268158 - tasty-hunit tasty-quickcheck template-haskell text time 268159 unliftio-core vector wreq 268160 ]; 268161 description = "Tesla API client"; ··· 268196 pname = "test-framework"; 268197 version = "0.8.2.0"; 268198 sha256 = "1hhacrzam6b8f10hyldmjw8pb7frdxh04rfg3farxcxwbnhwgbpm"; 268199 - revision = "7"; 268200 - editedCabalFile = "0an5fypqx6r9v3ql5n9xwdxnaq922lpwh759z5y6vx8rasnd98jw"; 268201 libraryHaskellDepends = [ 268202 ansi-terminal ansi-wl-pprint base containers hostname old-locale 268203 random regex-posix time xml ··· 268917 license = lib.licenses.gpl2Only; 268918 }) {}; 268919 268920 "texrunner" = callPackage 268921 ({ mkDerivation, attoparsec, base, bytestring, directory, filepath 268922 , HUnit, io-streams, lens, mtl, process, semigroups, temporary ··· 269010 pname = "text-ansi"; 269011 version = "0.1.1"; 269012 sha256 = "1vcrsg7v8n6znh1pd9kbm20bc6dg3zijd3xjdjljadf15vfkd5f6"; 269013 - revision = "1"; 269014 - editedCabalFile = "09s363h3lw4p8f73m7vw0d1cqnwmap9ndrfxd4qbzbra5xf58q38"; 269015 libraryHaskellDepends = [ base text ]; 269016 description = "Text styling for ANSI terminals"; 269017 license = lib.licenses.bsd3; ··· 269133 pname = "text-display"; 269134 version = "0.0.1.0"; 269135 sha256 = "0ljh2pxwk6nl37z6az83wh50lvh5mr0gwxjc1vwnwva62yg3f0nx"; 269136 libraryHaskellDepends = [ base bytestring text ]; 269137 testHaskellDepends = [ 269138 base bytestring hspec should-not-typecheck text ··· 269760 license = lib.licenses.bsd3; 269761 }) {}; 269762 269763 - "text-show-instances_3_8_5" = callPackage 269764 ({ mkDerivation, base, base-compat-batteries, bifunctors, binary 269765 , containers, directory, generic-deriving, ghc-boot-th, ghc-prim 269766 , haskeline, hpc, hspec, hspec-discover, old-locale, old-time 269767 - , pretty, QuickCheck, quickcheck-instances, random, semigroups 269768 - , tagged, template-haskell, terminfo, text, text-short, text-show 269769 - , th-orphans, time, transformers, transformers-compat, unix 269770 - , unordered-containers, vector, xhtml 269771 }: 269772 mkDerivation { 269773 pname = "text-show-instances"; 269774 - version = "3.8.5"; 269775 - sha256 = "1qpkap6p57js8x4b3hm0xnk3xbyv8w1g6w84qda49dv6x67chyn3"; 269776 libraryHaskellDepends = [ 269777 base base-compat-batteries bifunctors binary containers directory 269778 ghc-boot-th haskeline hpc old-locale old-time pretty random 269779 - semigroups tagged template-haskell terminfo text text-short 269780 - text-show time transformers transformers-compat unix 269781 unordered-containers vector xhtml 269782 ]; 269783 testHaskellDepends = [ 269784 base base-compat-batteries bifunctors binary containers directory 269785 generic-deriving ghc-boot-th ghc-prim haskeline hpc hspec 269786 old-locale old-time pretty QuickCheck quickcheck-instances random 269787 - tagged template-haskell terminfo text-short text-show th-orphans 269788 - time transformers transformers-compat unix unordered-containers 269789 - vector xhtml 269790 ]; 269791 testToolDepends = [ hspec-discover ]; 269792 description = "Additional instances for text-show"; ··· 270382 }) {}; 270383 270384 "th-extras" = callPackage 270385 - ({ mkDerivation, base, syb, template-haskell }: 270386 mkDerivation { 270387 pname = "th-extras"; 270388 - version = "0.0.0.4"; 270389 - sha256 = "1vgvqgfm2lvx6v5r2mglwyl63647c9n6b9a5ikqc93pjm98g9vwg"; 270390 - libraryHaskellDepends = [ base syb template-haskell ]; 270391 description = "A grab bag of functions for use with Template Haskell"; 270392 license = lib.licenses.publicDomain; 270393 }) {}; ··· 271499 pname = "through-text"; 271500 version = "0.1.0.0"; 271501 sha256 = "1kdl36n98kajaa7v7js2sy8bi09p8rrxmlfcclcfc1l92bd2aclk"; 271502 - revision = "6"; 271503 - editedCabalFile = "12mqlm77g0fymx3xwlkf6s9nqivcf78szhrzkvssi7lq1lqq9lbc"; 271504 libraryHaskellDepends = [ base bytestring case-insensitive text ]; 271505 description = "Convert textual types through Text without needing O(n^2) instances"; 271506 license = lib.licenses.bsd3; ··· 272430 pname = "timeit"; 272431 version = "2.0"; 272432 sha256 = "1sliqpvl501rlcj6s0lhmsf5ym24j4h881wzc1f1wdyvg3jz8kd1"; 272433 - revision = "1"; 272434 - editedCabalFile = "0d4vjg48xyqjmydnjqjxica0zr30vgb91b3vv75cig686ikpjmq7"; 272435 libraryHaskellDepends = [ base ]; 272436 description = "Time monadic computations with an IO base"; 272437 license = lib.licenses.bsd3; ··· 272836 }: 272837 mkDerivation { 272838 pname = "timezone-olson-th"; 272839 - version = "0.1.0.5"; 272840 - sha256 = "1b28drcgdal7ifghw9bk3k8rmk7k0mjq3kl55xqbnlip6p99pka7"; 272841 libraryHaskellDepends = [ 272842 base template-haskell time timezone-olson timezone-series 272843 ]; ··· 276556 }: 276557 mkDerivation { 276558 pname = "trifecta"; 276559 - version = "2.1.1"; 276560 - sha256 = "1lhzi0xxvilvgjy3yf3f85wfmrks562hhsnl0kg1xwji36rgwp6y"; 276561 - libraryHaskellDepends = [ 276562 - ansi-terminal array base blaze-builder blaze-html blaze-markup 276563 - bytestring charset comonad containers deepseq fingertree ghc-prim 276564 - hashable indexed-traversable lens mtl parsers prettyprinter 276565 - prettyprinter-ansi-terminal profunctors reducers transformers 276566 - unordered-containers utf8-string 276567 - ]; 276568 - testHaskellDepends = [ base parsers QuickCheck ]; 276569 - description = "A modern parser combinator library with convenient diagnostics"; 276570 - license = lib.licenses.bsd3; 276571 - }) {}; 276572 - 276573 - "trifecta_2_1_2" = callPackage 276574 - ({ mkDerivation, ansi-terminal, array, base, blaze-builder 276575 - , blaze-html, blaze-markup, bytestring, charset, comonad 276576 - , containers, deepseq, fingertree, ghc-prim, hashable 276577 - , indexed-traversable, lens, mtl, parsers, prettyprinter 276578 - , prettyprinter-ansi-terminal, profunctors, QuickCheck, reducers 276579 - , transformers, unordered-containers, utf8-string 276580 - }: 276581 - mkDerivation { 276582 - pname = "trifecta"; 276583 version = "2.1.2"; 276584 sha256 = "1akx8m6mgskwsbhsf90cxlqjq23jk4pwaxagvm923dpncwrlwfla"; 276585 libraryHaskellDepends = [ ··· 276592 testHaskellDepends = [ base parsers QuickCheck ]; 276593 description = "A modern parser combinator library with convenient diagnostics"; 276594 license = lib.licenses.bsd3; 276595 - hydraPlatforms = lib.platforms.none; 276596 }) {}; 276597 276598 "trigger" = callPackage ··· 277546 277547 "turtle" = callPackage 277548 ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock 277549 - , containers, criterion, directory, doctest, exceptions, foldl 277550 - , hostname, managed, optional-args, optparse-applicative, process 277551 - , stm, streaming-commons, system-fileio, system-filepath, temporary 277552 - , text, time, transformers, unix, unix-compat 277553 }: 277554 mkDerivation { 277555 pname = "turtle"; 277556 - version = "1.5.22"; 277557 - sha256 = "14lf43b5rxci6p9sy1gkb715m4b1s4rl65swn2qpdqv3h2yvpi4s"; 277558 libraryHaskellDepends = [ 277559 ansi-wl-pprint async base bytestring clock containers directory 277560 exceptions foldl hostname managed optional-args ··· 277562 system-filepath temporary text time transformers unix unix-compat 277563 ]; 277564 testHaskellDepends = [ base doctest system-filepath temporary ]; 277565 - benchmarkHaskellDepends = [ base criterion text ]; 277566 description = "Shell programming, Haskell-style"; 277567 license = lib.licenses.bsd3; 277568 maintainers = with lib.maintainers; [ Gabriel439 ]; ··· 278087 "twitter-conduit" = callPackage 278088 ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base 278089 , bytestring, Cabal, cabal-doctest, conduit, conduit-extra 278090 - , containers, data-default, doctest, exceptions, ghc-prim, hspec 278091 - , hspec-discover, http-client, http-conduit, http-types, lens 278092 - , lens-aeson, resourcet, text, time, transformers, twitter-types 278093 - , twitter-types-lens 278094 }: 278095 mkDerivation { 278096 pname = "twitter-conduit"; 278097 - version = "0.6.0"; 278098 - sha256 = "1gln8dsq8krvabknlpzxfaij8mwky4kca34m666wqfsfzgvkni8p"; 278099 setupHaskellDepends = [ base Cabal cabal-doctest ]; 278100 libraryHaskellDepends = [ 278101 aeson attoparsec authenticate-oauth base bytestring conduit 278102 - conduit-extra containers data-default exceptions ghc-prim 278103 http-client http-conduit http-types lens lens-aeson resourcet text 278104 time transformers twitter-types twitter-types-lens 278105 ]; ··· 279206 license = lib.licenses.mit; 279207 }) {}; 279208 279209 "typed-spreadsheet" = callPackage 279210 ({ mkDerivation, async, base, diagrams-cairo, diagrams-gtk 279211 , diagrams-lib, foldl, gtk, microlens, stm, text, transformers ··· 279280 license = lib.licenses.mit; 279281 }) {}; 279282 279283 "typed-wire" = callPackage 279284 ({ mkDerivation, aeson, base, bytestring, containers, directory 279285 , filepath, gitrev, HTF, http-types, mtl, optparse-applicative ··· 280353 license = lib.licenses.bsd3; 280354 }) {}; 280355 280356 "unagi-streams" = callPackage 280357 ({ mkDerivation, base, io-streams, unagi-chan }: 280358 mkDerivation { ··· 280894 ({ mkDerivation, base }: 280895 mkDerivation { 280896 pname = "unicode-data"; 280897 - version = "0.1.0.1"; 280898 - sha256 = "1rxybzbls2l732gj5ql0ccmlzsmcncaw22g0l9bc2ism0i2qf2gz"; 280899 isLibrary = true; 280900 isExecutable = true; 280901 libraryHaskellDepends = [ base ]; ··· 280975 ({ mkDerivation, base, hspec, QuickCheck }: 280976 mkDerivation { 280977 pname = "unicode-show"; 280978 - version = "0.1.0.5"; 280979 - sha256 = "0iq2fivi6fclra32y5yqc6p18pd7qlyxb042hkc082pvgmj8b40v"; 280980 - libraryHaskellDepends = [ base ]; 280981 - testHaskellDepends = [ base hspec QuickCheck ]; 280982 - description = "print and show in unicode"; 280983 - license = lib.licenses.bsd3; 280984 - hydraPlatforms = lib.platforms.none; 280985 - broken = true; 280986 - }) {}; 280987 - 280988 - "unicode-show_0_1_1_0" = callPackage 280989 - ({ mkDerivation, base, hspec, QuickCheck }: 280990 - mkDerivation { 280991 - pname = "unicode-show"; 280992 version = "0.1.1.0"; 280993 sha256 = "1g945vkj75vrm4c3v79c61hlhx3s6q5v0lm92bjzf29r45clnzsi"; 280994 libraryHaskellDepends = [ base ]; ··· 281036 license = lib.licenses.bsd3; 281037 }) {}; 281038 281039 - "unicode-transforms_0_3_8" = callPackage 281040 - ({ mkDerivation, base, bytestring, deepseq, filepath 281041 - , getopt-generics, ghc-prim, hspec, path, path-io, QuickCheck 281042 - , split, tasty-bench, text, unicode-data 281043 }: 281044 mkDerivation { 281045 pname = "unicode-transforms"; 281046 - version = "0.3.8"; 281047 - sha256 = "1j3dwz3qmak3fyb1p4qzr1rnxch2ydqfp2jizyy4rv425h0smxzl"; 281048 isLibrary = true; 281049 isExecutable = true; 281050 libraryHaskellDepends = [ 281051 base bytestring ghc-prim text unicode-data 281052 ]; 281053 testHaskellDepends = [ 281054 - base deepseq getopt-generics hspec QuickCheck split text 281055 - unicode-data 281056 ]; 281057 benchmarkHaskellDepends = [ 281058 base deepseq filepath path path-io tasty-bench text ··· 281326 license = lib.licenses.bsd3; 281327 hydraPlatforms = lib.platforms.none; 281328 broken = true; 281329 }) {}; 281330 281331 "unipatterns" = callPackage ··· 281852 pname = "universe-base"; 281853 version = "1.1.3"; 281854 sha256 = "0lnvjpndqj7kk3f95dmpa62ax0m243h8iy7ghcsd2db4nyczx7f5"; 281855 libraryHaskellDepends = [ 281856 base containers OneTuple tagged transformers 281857 ]; ··· 281954 pname = "universe-some"; 281955 version = "1.2.1"; 281956 sha256 = "0pdvk5qi39d0wg8ac936c1fxs7v7qld2ggpqc9v7xc4pk3xq24bp"; 281957 - revision = "1"; 281958 - editedCabalFile = "1hrb5anm2cp2a8zhhzazxc8zjm2nm8q7zvl1c4shx7arpi1ka3ax"; 281959 libraryHaskellDepends = [ 281960 base some template-haskell th-abstraction transformers 281961 "instance-map" = callPackage ··· 284621 284622 "validated-literals" = callPackage 284623 ({ mkDerivation, base, bytestring, deepseq, tasty, tasty-hunit 284624 - , tasty-travis, template-haskell 284625 }: 284626 mkDerivation { 284627 pname = "validated-literals"; 284628 - version = "0.3.0"; 284629 - sha256 = "1k77jp19kl7h4v9hl2jhsmbq8dhzl8z9sgkw1jxx1rblm3fszjx1"; 284630 - revision = "4"; 284631 - editedCabalFile = "16fwvivw1barrgkw7cl2hfgksfhambfmhrwibhi6n8096sj79h0j"; 284632 - libraryHaskellDepends = [ base template-haskell ]; 284633 testHaskellDepends = [ 284634 base bytestring deepseq tasty tasty-hunit tasty-travis 284635 - template-haskell 284636 ]; 284637 description = "Compile-time checking for partial smart-constructors"; 284638 license = lib.licenses.bsd3; ··· 284658 }: 284659 mkDerivation { 284660 pname = "validation"; 284661 - version = "1.1.1"; 284662 - sha256 = "1dv7azpljdcf7irbnznnz31hq611bn1aj2m6ywghz3hgv835qqak"; 284663 - libraryHaskellDepends = [ 284664 - assoc base bifunctors deepseq lens semigroupoids semigroups 284665 - ]; 284666 - testHaskellDepends = [ base hedgehog HUnit lens semigroups ]; 284667 - description = "A data-type like Either but with an accumulating Applicative"; 284668 - license = lib.licenses.bsd3; 284669 - }) {}; 284670 - 284671 - "validation_1_1_2" = callPackage 284672 - ({ mkDerivation, assoc, base, bifunctors, deepseq, hedgehog, HUnit 284673 - , lens, semigroupoids, semigroups 284674 - }: 284675 - mkDerivation { 284676 - pname = "validation"; 284677 version = "1.1.2"; 284678 sha256 = "15hhz2kj6h9zv568bvq79ymck3s3b89fpkasdavbwvyhfyjm5k8x"; 284679 libraryHaskellDepends = [ ··· 284682 testHaskellDepends = [ base hedgehog HUnit lens semigroups ]; 284683 description = "A data-type like Either but with an accumulating Applicative"; 284684 license = lib.licenses.bsd3; 284685 - hydraPlatforms = lib.platforms.none; 284686 }) {}; 284687 284688 "validation-selective" = callPackage ··· 284766 license = lib.licenses.mit; 284767 }) {}; 284768 284769 "validity-aeson" = callPackage 284770 ({ mkDerivation, aeson, base, hspec, validity, validity-scientific 284771 , validity-text, validity-unordered-containers, validity-vector ··· 284865 license = lib.licenses.mit; 284866 }) {}; 284867 284868 "validity-time" = callPackage 284869 ({ mkDerivation, base, time, validity }: 284870 mkDerivation { ··· 284876 license = lib.licenses.mit; 284877 }) {}; 284878 284879 "validity-unordered-containers" = callPackage 284880 ({ mkDerivation, base, hashable, unordered-containers, validity }: 284881 mkDerivation { ··· 285761 }: 285762 mkDerivation { 285763 pname = "vector-extras"; 285764 - version = "0.2.1.1"; 285765 - sha256 = "0q5wm0hfk84hr9rgbb084d222ys0k1hab5cydwnnrpb7wy42199p"; 285766 libraryHaskellDepends = [ 285767 base containers deferred-folds foldl hashable unordered-containers 285768 vector ··· 286545 pname = "vgrep"; 286546 version = "0.2.3.0"; 286547 sha256 = "1zzzmvhqcvgvni96b1zzqjwpmlncsjd08sqllrbp4d4a7j43b9g5"; 286548 isLibrary = true; 286549 isExecutable = true; 286550 libraryHaskellDepends = [ ··· 287059 pname = "visualize-cbn"; 287060 version = "0.1.0.2"; 287061 sha256 = "1vlidljhy0ykflgf7k8gawlqazcrkvcs7r8wbv7h9x6wfnx0w334"; 287062 isLibrary = false; 287063 isExecutable = true; 287064 executableHaskellDepends = [ ··· 287571 }: 287572 mkDerivation { 287573 pname = "vulkan"; 287574 - version = "3.13.4"; 287575 - sha256 = "0vjvm54d42m7p7717dsckp5i1wy0zzf70rpq16xdppkzr265h7kg"; 287576 libraryHaskellDepends = [ base bytestring transformers vector ]; 287577 libraryPkgconfigDepends = [ vulkan ]; 287578 testHaskellDepends = [ ··· 287604 }: 287605 mkDerivation { 287606 pname = "vulkan-utils"; 287607 - version = "0.5.3"; 287608 - sha256 = "16p1yn72il988phw4h8ixs0p2dgk96xg26yp9lgbpri1l0da8kiq"; 287609 setupHaskellDepends = [ base Cabal cabal-doctest ]; 287610 libraryHaskellDepends = [ 287611 base bytestring containers dependent-map dependent-sum extra ··· 289802 }: 289803 mkDerivation { 289804 pname = "warp"; 289805 - version = "3.3.17"; 289806 - sha256 = "0v54ca3wpa79gdyiikwhbv9h8b5vr3d60piq3ndb2v7s7fi1qpm0"; 289807 libraryHaskellDepends = [ 289808 array auto-update base bsb-http-chunked bytestring case-insensitive 289809 containers ghc-prim hashable http-date http-types http2 iproute ··· 292044 license = lib.licenses.bsd3; 292045 }) {}; 292046 292047 "wild-bind-indicator" = callPackage 292048 ({ mkDerivation, async, base, containers, gi-gdk, gi-glib, gi-gtk 292049 , text, transformers, wild-bind ··· 292096 testToolDepends = [ hspec-discover ]; 292097 description = "X11-specific implementation for WildBind"; 292098 license = lib.licenses.bsd3; 292099 }) {}; 292100 292101 "willow" = callPackage ··· 292344 maintainers = with lib.maintainers; [ maralorn ]; 292345 }) {}; 292346 292347 "with-index" = callPackage 292348 ({ mkDerivation, base }: 292349 mkDerivation { ··· 292417 pname = "witherable"; 292418 version = "0.4.2"; 292419 sha256 = "0121ic4xkv3k568j23zp22a5lrv0k11h94fq7cbijd18fjr2n3br"; 292420 - revision = "1"; 292421 - editedCabalFile = "1mwmnc4pdsw0v8p9bh8n49xjjmbyf5bd0kvlg970iyq3cqik546f"; 292422 libraryHaskellDepends = [ 292423 base base-orphans containers hashable indexed-traversable 292424 indexed-traversable-instances transformers unordered-containers ··· 294108 license = lib.licenses.mit; 294109 }) {}; 294110 294111 "wx" = callPackage 294112 ({ mkDerivation, base, stm, time, wxcore }: 294113 mkDerivation { ··· 295467 }: 295468 mkDerivation { 295469 pname = "xml-optics"; 295470 - version = "0.1.0"; 295471 - sha256 = "01sa1hk87aw32wafxxnvnljazi78bnishpmk5k77p28jmhpa1gn8"; 295472 libraryHaskellDepends = [ 295473 base containers optics-core text xml-conduit 295474 ]; ··· 296259 pname = "xmonad-extras"; 296260 version = "0.17.0"; 296261 sha256 = "0kkwng84hp19vc9nw97y77n3hsg9scn0c9fa1ivf4r9s5x3p6flx"; 296262 configureFlags = [ 296263 "-f-with_hlist" "-fwith_parsec" "-fwith_split" 296264 ]; ··· 297432 297433 "yaml-streamly" = callPackage 297434 ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring 297435 - , containers, directory, filepath, hspec, hspec-discover, HUnit 297436 - , libyaml-streamly, mockery, mtl, raw-strings-qq, safe-exceptions 297437 - , scientific, streamly, template-haskell, temporary, text 297438 - , transformers, unordered-containers, vector 297439 }: 297440 mkDerivation { 297441 pname = "yaml-streamly"; 297442 - version = "0.12.0"; 297443 - sha256 = "1jvvj1g20n8v7rnbvqgsvqm7l4nnh97ibkvb2zkj2wskir0l00mc"; 297444 isLibrary = true; 297445 isExecutable = true; 297446 libraryHaskellDepends = [ 297447 - aeson attoparsec base bytestring containers directory filepath 297448 - libyaml-streamly mtl safe-exceptions scientific streamly 297449 template-haskell text transformers unordered-containers vector 297450 ]; 297451 testHaskellDepends = [ ··· 297454 temporary text unordered-containers vector 297455 ]; 297456 testToolDepends = [ hspec-discover ]; 297457 description = "Support for parsing and rendering YAML documents"; 297458 license = lib.licenses.bsd3; 297459 hydraPlatforms = lib.platforms.none; ··· 297496 }: 297497 mkDerivation { 297498 pname = "yaml-unscrambler"; 297499 - version = "0.1.0.3"; 297500 - sha256 = "1n8q5dsvs6sh2gzs24m49cz5pg1pavn9sma4fk5jizrjrabik4sj"; 297501 libraryHaskellDepends = [ 297502 acc attoparsec attoparsec-data attoparsec-time base base64 297503 bytestring conduit containers foldl hashable libyaml mtl scientific ··· 298294 }: 298295 mkDerivation { 298296 pname = "yesod-auth"; 298297 - version = "1.6.10.4"; 298298 - sha256 = "01s5svba45g0d12cz8kc8lvdw18jfhjxr7yk69cf5157qg0f2czv"; 298299 - libraryHaskellDepends = [ 298300 - aeson authenticate base base16-bytestring base64-bytestring binary 298301 - blaze-builder blaze-html blaze-markup bytestring conduit 298302 - conduit-extra containers cryptonite data-default email-validate 298303 - file-embed http-client http-client-tls http-conduit http-types 298304 - memory network-uri nonce persistent random safe shakespeare 298305 - template-haskell text time transformers unliftio unliftio-core 298306 - unordered-containers wai yesod-core yesod-form yesod-persistent 298307 - ]; 298308 - description = "Authentication for Yesod"; 298309 - license = lib.licenses.mit; 298310 - }) {}; 298311 - 298312 - "yesod-auth_1_6_10_5" = callPackage 298313 - ({ mkDerivation, aeson, authenticate, base, base16-bytestring 298314 - , base64-bytestring, binary, blaze-builder, blaze-html 298315 - , blaze-markup, bytestring, conduit, conduit-extra, containers 298316 - , cryptonite, data-default, email-validate, file-embed, http-client 298317 - , http-client-tls, http-conduit, http-types, memory, network-uri 298318 - , nonce, persistent, random, safe, shakespeare, template-haskell 298319 - , text, time, transformers, unliftio, unliftio-core 298320 - , unordered-containers, wai, yesod-core, yesod-form 298321 - , yesod-persistent 298322 - }: 298323 - mkDerivation { 298324 - pname = "yesod-auth"; 298325 version = "1.6.10.5"; 298326 sha256 = "11nywgjnivbfrbn8mg3lfr8r8lfpygn30vhnn0bzy9pa07nvgxnz"; 298327 libraryHaskellDepends = [ ··· 298335 ]; 298336 description = "Authentication for Yesod"; 298337 license = lib.licenses.mit; 298338 - hydraPlatforms = lib.platforms.none; 298339 }) {}; 298340 298341 "yesod-auth-account" = callPackage ··· 298676 license = lib.licenses.mit; 298677 }) {}; 298678 298679 "yesod-auth-pam" = callPackage 298680 ({ mkDerivation, base, hamlet, pam, text, yesod-auth, yesod-core 298681 , yesod-form ··· 300942 pname = "yoctoparsec"; 300943 version = "0.1.0.0"; 300944 sha256 = "0p9kw60glcgrjfx04x3innn3rqnh12yrv4wh0a0fivcx8b9kj1yp"; 300945 - revision = "4"; 300946 - editedCabalFile = "00icvzsb8l70w5dcy0kkxrg0hpq273r8zyy6cx6hscpzgck090jf"; 300947 libraryHaskellDepends = [ base free mtl ]; 300948 description = "A truly tiny monadic parsing library"; 300949 license = lib.licenses.mit; ··· 301527 }: 301528 mkDerivation { 301529 pname = "zeolite-lang"; 301530 - version = "0.20.0.1"; 301531 - sha256 = "0j1qkihz5ci5skxkbjpzg8yakbrmh6d6fvl6y4n54bd5dci8f2gs"; 301532 isLibrary = false; 301533 isExecutable = true; 301534 enableSeparateDataOutput = true; ··· 302202 }: 302203 mkDerivation { 302204 pname = "zippers"; 302205 - version = "0.3.1"; 302206 - sha256 = "17z1zi9zd6a8g7sp4zyimgwdvhjj27hj4znbm4ps0kp73gadb953"; 302207 - libraryHaskellDepends = [ 302208 - base fail indexed-traversable lens profunctors semigroupoids 302209 - semigroups 302210 - ]; 302211 - benchmarkHaskellDepends = [ base criterion lens ]; 302212 - description = "Traversal based zippers"; 302213 - license = lib.licenses.bsd3; 302214 - }) {}; 302215 - 302216 - "zippers_0_3_2" = callPackage 302217 - ({ mkDerivation, base, criterion, fail, indexed-traversable, lens 302218 - , profunctors, semigroupoids, semigroups 302219 - }: 302220 - mkDerivation { 302221 - pname = "zippers"; 302222 version = "0.3.2"; 302223 sha256 = "0n85mnp3mv8qwk3wmmm2wpc3j2l4q2fb0gbzb5il3nrd0p42xjld"; 302224 libraryHaskellDepends = [ ··· 302228 benchmarkHaskellDepends = [ base criterion lens ]; 302229 description = "Traversal based zippers"; 302230 license = lib.licenses.bsd3; 302231 - hydraPlatforms = lib.platforms.none; 302232 }) {}; 302233 302234 "zippo" = callPackage ··· 302585 }: 302586 mkDerivation { 302587 pname = "zoovisitor"; 302588 - version = "0.1.5.0"; 302589 - sha256 = "0sksa3sjgd2yg2cj6vr9ssk52zlhap45c93cwslk3q788c8krr35"; 302590 libraryHaskellDepends = [ base Z-Data Z-IO ]; 302591 librarySystemDepends = [ zookeeper_mt ]; 302592 testHaskellDepends = [ async base hspec uuid Z-Data ];
··· 6729 ({ mkDerivation, base, libGL, libGLU, OpenGLRaw, transformers }: 6730 mkDerivation { 6731 pname = "GLURaw"; 6732 version = "2.0.0.5"; 6733 sha256 = "1b3rnva77k9naw5bl573bqgmsq7n9i8rrrvfvhbjcndqgmzhkini"; 6734 libraryHaskellDepends = [ base OpenGLRaw transformers ]; 6735 librarySystemDepends = [ libGL libGLU ]; 6736 description = "A raw binding for the OpenGL graphics system"; 6737 license = lib.licenses.bsd3; 6738 }) {inherit (pkgs) libGL; inherit (pkgs) libGLU;}; 6739 6740 "GLUT" = callPackage ··· 7305 pname = "Glob"; 7306 version = "0.10.2"; 7307 sha256 = "1h3kh46qds4nqvixm4myy1kb5slg53f44hfn8aymrlr7hjn75xka"; 7308 + revision = "2"; 7309 + editedCabalFile = "175v5r0gzlln5y70dgxaq5xw4ilrf3xhgqr3hrzsilqnb32kfi9a"; 7310 libraryHaskellDepends = [ 7311 base containers directory dlist filepath transformers 7312 transformers-compat ··· 9773 license = "LGPL"; 9774 }) {}; 9775 9776 + "HaXml_1_25_8" = callPackage 9777 + ({ mkDerivation, base, bytestring, containers, directory, filepath 9778 + , polyparse, pretty, random 9779 + }: 9780 + mkDerivation { 9781 + pname = "HaXml"; 9782 + version = "1.25.8"; 9783 + sha256 = "1n65s75l4manb65msh9fz97dzqf9554x58bqdhyylgsgk84mfg80"; 9784 + isLibrary = true; 9785 + isExecutable = true; 9786 + libraryHaskellDepends = [ 9787 + base bytestring containers filepath polyparse pretty random 9788 + ]; 9789 + executableHaskellDepends = [ base directory polyparse pretty ]; 9790 + description = "Utilities for manipulating XML documents"; 9791 + license = lib.licenses.lgpl21Only; 9792 + hydraPlatforms = lib.platforms.none; 9793 + }) {}; 9794 + 9795 "Hach" = callPackage 9796 ({ mkDerivation, base, containers, network, old-locale, text, time 9797 , vty, vty-ui ··· 10808 pname = "HsOpenSSL"; 10809 version = "0.11.7.2"; 10810 sha256 = "0ysdfl8ck3nzhx597fa13dqf31jq5gzwajlak6r91jajks9w0dl5"; 10811 + revision = "1"; 10812 + editedCabalFile = "1lccw8x48xxmw1cpd260fdr9mxqr39f4b623i78027l0m93dw38b"; 10813 setupHaskellDepends = [ base Cabal ]; 10814 libraryHaskellDepends = [ base bytestring network time ]; 10815 librarySystemDepends = [ openssl ]; ··· 13581 pname = "MissingH"; 13582 version = "1.4.3.0"; 13583 sha256 = "196cniya5wzcv2d777nr0f7hinclpals4ia1mkzzv35870pqr6lw"; 13584 + revision = "2"; 13585 + editedCabalFile = "0p5md995w0nh2m89v3jsb1bvhfkrnp2s14smjbnh3g0pbq3fgfzg"; 13586 libraryHaskellDepends = [ 13587 array base containers directory filepath hslogger mtl network 13588 network-bsd old-locale old-time parsec process random regex-compat ··· 14234 }: 14235 mkDerivation { 14236 pname = "NaCl"; 14237 + version = "0.0.5.0"; 14238 + sha256 = "1q6wr6a3q0w594z8lrldmvzc1fs4krds8nbady8ymz2vll71q1kz"; 14239 libraryHaskellDepends = [ 14240 base bytestring libsodium memory safe-exceptions 14241 ]; ··· 15204 }: 15205 mkDerivation { 15206 pname = "OpenGLRaw"; 15207 version = "3.3.4.1"; 15208 sha256 = "07nk0rgm6jcxz6yshwhv5lj5frs6371w3hdjxwa4biws2kmbs6hj"; 15209 libraryHaskellDepends = [ ··· 15212 librarySystemDepends = [ libGL ]; 15213 description = "A raw binding for the OpenGL graphics system"; 15214 license = lib.licenses.bsd3; 15215 }) {inherit (pkgs) libGL;}; 15216 15217 "OpenGLRaw21" = callPackage ··· 17856 pname = "STMonadTrans"; 17857 version = "0.4.6"; 17858 sha256 = "0rvhh0hhwz601ibpzisry7xf3j61r5sxfgp47imaa37i5bvrlynb"; 17859 + revision = "1"; 17860 + editedCabalFile = "04svg3fwiir2zd5da44pklvw51bs2qm8pqmsnicyav0g0wvhbxbc"; 17861 libraryHaskellDepends = [ array base mtl ]; 17862 testHaskellDepends = [ 17863 array base tasty tasty-hunit tasty-quickcheck transformers ··· 20968 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 20969 mkDerivation { 20970 pname = "VulkanMemoryAllocator"; 20971 + version = "0.7.5"; 20972 + sha256 = "0wcq09q5jhvigfp8vshgs3yc170g7c39jz2m6jk2j6v0nji2lp40"; 20973 libraryHaskellDepends = [ 20974 base bytestring transformers vector vulkan 20975 ]; ··· 21328 platforms = lib.platforms.none; 21329 }) {}; 21330 21331 + "Win32_2_13_2_0" = callPackage 21332 ({ mkDerivation }: 21333 mkDerivation { 21334 pname = "Win32"; 21335 + version = "2.13.2.0"; 21336 + sha256 = "1gmhqb0v3ds7csrmzw211jqjjp955akgp7ykngwnpqb6kpbvpcf4"; 21337 description = "A binding to Windows Win32 API"; 21338 license = lib.licenses.bsd3; 21339 platforms = lib.platforms.none; ··· 21719 libraryPkgconfigDepends = [ libXft ]; 21720 description = "Bindings to the Xft, X Free Type interface library, and some Xrender parts"; 21721 license = "LGPL"; 21722 + }) {inherit (pkgs.xorg) libXft;}; 21723 + 21724 + "X11-xft_0_3_3" = callPackage 21725 + ({ mkDerivation, base, libXft, utf8-string, X11 }: 21726 + mkDerivation { 21727 + pname = "X11-xft"; 21728 + version = "0.3.3"; 21729 + sha256 = "08m6rm27d33axh695dhqwirkzhcdn32dimb5sqkqnwkds8pagjc8"; 21730 + libraryHaskellDepends = [ base utf8-string X11 ]; 21731 + libraryPkgconfigDepends = [ libXft ]; 21732 + description = "Bindings to the Xft and some Xrender parts"; 21733 + license = lib.licenses.bsd3; 21734 + hydraPlatforms = lib.platforms.none; 21735 }) {inherit (pkgs.xorg) libXft;}; 21736 21737 "X11-xshape" = callPackage ··· 22583 }) {}; 22584 22585 "acc" = callPackage 22586 + ({ mkDerivation, base, deepseq, gauge, QuickCheck 22587 , quickcheck-instances, rerebase, semigroupoids, tasty, tasty-hunit 22588 , tasty-quickcheck 22589 }: 22590 mkDerivation { 22591 pname = "acc"; 22592 + version = "0.2.0.1"; 22593 + sha256 = "03wk2pnh3scjf5102w882hg6hsczj9ihj8pb9g3928na2zk1jw1v"; 22594 libraryHaskellDepends = [ base deepseq semigroupoids ]; 22595 testHaskellDepends = [ 22596 QuickCheck quickcheck-instances rerebase tasty tasty-hunit 22597 tasty-quickcheck 22598 ]; 22599 + benchmarkHaskellDepends = [ gauge rerebase ]; 22600 description = "Sequence optimized for monoidal construction and folding"; 22601 license = lib.licenses.mit; 22602 hydraPlatforms = lib.platforms.none; ··· 24478 }: 24479 mkDerivation { 24480 pname = "advent-of-code-api"; 24481 + version = "0.2.8.1"; 24482 + sha256 = "17s80883jq75i129b1976qbvr56ml0bsadhfnx2qybbh7b55gxfh"; 24483 libraryHaskellDepends = [ 24484 aeson base bytestring containers deepseq directory filepath 24485 finite-typelits http-api-data http-client http-client-tls ··· 24580 pname = "aeson"; 24581 version = "1.5.6.0"; 24582 sha256 = "1s5z4bgb5150h6a4cjf5vh8dmyrn6ilh29gh05999v6jwd5w6q83"; 24583 + revision = "4"; 24584 + editedCabalFile = "1sgn62rdcfxcc9axiaixw2g2zr5zy4prm9zcpd6fngmvjfqagqln"; 24585 libraryHaskellDepends = [ 24586 attoparsec base base-compat-batteries bytestring containers 24587 data-fix deepseq dlist ghc-prim hashable primitive scientific ··· 24670 pname = "aeson-better-errors"; 24671 version = "0.9.1.0"; 24672 sha256 = "09vkyrhwak3bmpfsqcd2az8hfqqkxyhg468hv5avgisy0nzh3w38"; 24673 + revision = "1"; 24674 + editedCabalFile = "1kwhnabcfwbm9r116y19pgwsds5vd0g62sp8r6n43q5crdnc7ly7"; 24675 libraryHaskellDepends = [ 24676 aeson base bytestring dlist mtl scientific text transformers 24677 transformers-compat unordered-containers vector void ··· 24788 pname = "aeson-compat"; 24789 version = "0.3.10"; 24790 sha256 = "0ia3qfdpbrzhwwg4ywpdwca0z1m85k081pcz6jh1sx8qjsvcr71w"; 24791 + revision = "1"; 24792 + editedCabalFile = "1k4bnmq76ihk0vlx9nhxsyyawhnbca9dxj1ivxs3k4aip40bjjq8"; 24793 libraryHaskellDepends = [ 24794 aeson attoparsec attoparsec-iso8601 base base-compat bytestring 24795 containers exceptions hashable scientific tagged text time ··· 26862 license = lib.licenses.bsd3; 26863 }) {}; 26864 26865 + "align-affine" = callPackage 26866 + ({ mkDerivation, base, containers, transformers, vector }: 26867 + mkDerivation { 26868 + pname = "align-affine"; 26869 + version = "0.1.0.0"; 26870 + sha256 = "01y9svlisci6yjb7xb424hmram33ri81v5a503gfvlg0g9p00237"; 26871 + libraryHaskellDepends = [ base containers transformers vector ]; 26872 + description = "Sequence alignment with an affine gap penalty model"; 26873 + license = lib.licenses.bsd3; 26874 + }) {}; 26875 + 26876 "align-audio" = callPackage 26877 ({ mkDerivation, base, comfort-array, comfort-fftw, containers 26878 , netlib-ffi, numeric-prelude, optparse-applicative, shell-utility ··· 30661 license = lib.licenses.bsd3; 30662 }) {}; 30663 30664 + "ansi-terminal_0_11_1" = callPackage 30665 + ({ mkDerivation, base, colour }: 30666 + mkDerivation { 30667 + pname = "ansi-terminal"; 30668 + version = "0.11.1"; 30669 + sha256 = "0avjvd2492y2rqvi63a633rqsrmi1aq6dv18q5cp0x4kch3dlm5f"; 30670 + isLibrary = true; 30671 + isExecutable = true; 30672 + libraryHaskellDepends = [ base colour ]; 30673 + description = "Simple ANSI terminal support, with Windows compatibility"; 30674 + license = lib.licenses.bsd3; 30675 + hydraPlatforms = lib.platforms.none; 30676 + }) {}; 30677 + 30678 "ansi-terminal-game" = callPackage 30679 ({ mkDerivation, ansi-terminal, array, base, bytestring, cereal 30680 + , clock, containers, exceptions, hspec, linebreak, mintty, mtl 30681 + , QuickCheck, random, split, terminal-size, timers-tick, unidecode 30682 }: 30683 mkDerivation { 30684 pname = "ansi-terminal-game"; 30685 + version = "1.8.0.0"; 30686 + sha256 = "09wd7gh8zm90wq080fsah0qjbr9x3vrh89am7yf0d84a0akqw65m"; 30687 isLibrary = true; 30688 isExecutable = true; 30689 libraryHaskellDepends = [ 30690 + ansi-terminal array base bytestring cereal clock containers 30691 + exceptions linebreak mintty mtl QuickCheck random split 30692 + terminal-size timers-tick unidecode 30693 ]; 30694 testHaskellDepends = [ 30695 + ansi-terminal array base bytestring cereal clock containers 30696 + exceptions hspec linebreak mintty mtl QuickCheck random split 30697 + terminal-size timers-tick unidecode 30698 ]; 30699 description = "sdl-like functions for terminal applications, based on ansi-terminal"; 30700 license = lib.licenses.gpl3Only; ··· 32359 }: 32360 mkDerivation { 32361 pname = "approximate"; 32362 version = "0.3.5"; 32363 sha256 = "1f168ac9xryrv50k7gvh89xv0mj6c42cxw7pj01pqcbppbs0rm3g"; 32364 libraryHaskellDepends = [ ··· 32367 ]; 32368 description = "Approximate discrete values and numbers"; 32369 license = lib.licenses.bsd3; 32370 }) {}; 32371 32372 "approximate-equality" = callPackage ··· 35524 pname = "attoparsec"; 35525 version = "0.14.2"; 35526 sha256 = "157lc8s6a8jw4s8w1a1rylxlggsa6lyq239na8ix3czmi79g3jwz"; 35527 + revision = "2"; 35528 + editedCabalFile = "10p0bic82q0yhhyaanj1rdwmms1wql11dnni5mhpk45dv3f5icvj"; 35529 libraryHaskellDepends = [ 35530 array base bytestring containers deepseq ghc-prim scientific text 35531 transformers ··· 35670 pname = "attoparsec-iso8601"; 35671 version = "1.0.2.0"; 35672 sha256 = "162gc101mwhmjbfhhv1wm3yvk2h4ra34wpw5x87735cfqxvjv582"; 35673 + revision = "3"; 35674 + editedCabalFile = "1kjwc15lwn9axsx4nkl0ar1afimvhz0wsfir2wrxq17jsj9k0cjj"; 35675 libraryHaskellDepends = [ 35676 attoparsec base base-compat-batteries text time time-compat 35677 ]; ··· 36227 maintainers = with lib.maintainers; [ expipiplus1 ]; 36228 }) {}; 36229 36230 + "autodocodec" = callPackage 36231 + ({ mkDerivation, aeson, base, bytestring, containers, doctest 36232 + , hashable, mtl, scientific, text, time, unordered-containers 36233 + , validity, validity-scientific, vector 36234 + }: 36235 + mkDerivation { 36236 + pname = "autodocodec"; 36237 + version = "0.0.0.0"; 36238 + sha256 = "0b8iwzmyf8l80i6p84yd4xhbxipbz10dn2428kmhyzlywjci6pps"; 36239 + libraryHaskellDepends = [ 36240 + aeson base bytestring containers hashable mtl scientific text time 36241 + unordered-containers validity validity-scientific vector 36242 + ]; 36243 + testHaskellDepends = [ base doctest ]; 36244 + description = "Self-documenting encoder and decoder"; 36245 + license = lib.licenses.mit; 36246 + }) {}; 36247 + 36248 + "autodocodec-openapi3" = callPackage 36249 + ({ mkDerivation, aeson, autodocodec, base 36250 + , insert-ordered-containers, openapi3, scientific, text 36251 + }: 36252 + mkDerivation { 36253 + pname = "autodocodec-openapi3"; 36254 + version = "0.0.0.0"; 36255 + sha256 = "0fj4acmzrbv94zdm6h1c8r7z312gh6cmjj4gy16ykqhks965h9v9"; 36256 + libraryHaskellDepends = [ 36257 + aeson autodocodec base insert-ordered-containers openapi3 36258 + scientific text 36259 + ]; 36260 + description = "Autodocodec interpreters for openapi3"; 36261 + license = lib.licenses.mit; 36262 + }) {}; 36263 + 36264 + "autodocodec-schema" = callPackage 36265 + ({ mkDerivation, aeson, autodocodec, base, containers, mtl, text 36266 + , unordered-containers, validity, validity-aeson 36267 + , validity-containers, validity-text 36268 + }: 36269 + mkDerivation { 36270 + pname = "autodocodec-schema"; 36271 + version = "0.0.0.0"; 36272 + sha256 = "0r5mhzfcyl0vzxzih9ckq21nly1i3y0ch2yj49idvw4df2wl5q8p"; 36273 + libraryHaskellDepends = [ 36274 + aeson autodocodec base containers mtl text unordered-containers 36275 + validity validity-aeson validity-containers validity-text 36276 + ]; 36277 + description = "Autodocodec interpreters for JSON Schema"; 36278 + license = lib.licenses.mit; 36279 + }) {}; 36280 + 36281 + "autodocodec-swagger2" = callPackage 36282 + ({ mkDerivation, aeson, autodocodec, base 36283 + , insert-ordered-containers, scientific, swagger2, text 36284 + }: 36285 + mkDerivation { 36286 + pname = "autodocodec-swagger2"; 36287 + version = "0.0.0.0"; 36288 + sha256 = "1z7ap55y0wzrlkfa2z420flb5ipb5nmwfcgmw8ld8arp1p1dq80m"; 36289 + libraryHaskellDepends = [ 36290 + aeson autodocodec base insert-ordered-containers scientific 36291 + swagger2 text 36292 + ]; 36293 + description = "Autodocodec interpreters for swagger2"; 36294 + license = lib.licenses.mit; 36295 + }) {}; 36296 + 36297 + "autodocodec-yaml" = callPackage 36298 + ({ mkDerivation, autodocodec, autodocodec-schema, base, bytestring 36299 + , containers, path, path-io, safe-coloured-text, scientific, text 36300 + , unordered-containers, vector, yaml 36301 + }: 36302 + mkDerivation { 36303 + pname = "autodocodec-yaml"; 36304 + version = "0.0.0.0"; 36305 + sha256 = "19ryi7kqxazng2iy5bdf7h8r2bvdydbb1f2fbxf5gzf1algb421z"; 36306 + libraryHaskellDepends = [ 36307 + autodocodec autodocodec-schema base bytestring containers path 36308 + path-io safe-coloured-text scientific text unordered-containers 36309 + vector yaml 36310 + ]; 36311 + description = "Autodocodec interpreters for yaml"; 36312 + license = lib.licenses.mit; 36313 + }) {}; 36314 + 36315 "autoexporter" = callPackage 36316 ({ mkDerivation, base, Cabal, directory, filepath }: 36317 mkDerivation { ··· 36974 ({ mkDerivation, aeson, aeson-pretty, asn1-encoding, asn1-types 36975 , base, base64-bytestring, bytestring, cookie, cryptonite, hedgehog 36976 , lens, lens-aeson, neat-interpolation, optparse-applicative, pem 36977 , text, time, vector 36978 }: 36979 mkDerivation { ··· 36991 testHaskellDepends = [ base hedgehog neat-interpolation ]; 36992 description = "Generate signed cookies for AWS CloudFront"; 36993 license = lib.licenses.mit; 36994 }) {}; 36995 36996 "aws-cloudfront-signer" = callPackage ··· 38755 pname = "base-compat-batteries"; 38756 version = "0.12.1"; 38757 sha256 = "12w3bpsz3xykhibc8wkhiii9nav7yxhlv424cy1b9v9ihbfkr3zr"; 38758 + revision = "2"; 38759 + editedCabalFile = "0p522rvawkpyr12jwa0cikpqihvq2xd99nr95l0s3zdjf1srv0gf"; 38760 libraryHaskellDepends = [ base base-compat ghc-prim OneTuple ]; 38761 testHaskellDepends = [ base hspec QuickCheck ]; 38762 testToolDepends = [ hspec-discover ]; ··· 39223 pname = "base64-bytestring-type"; 39224 version = "1.0.1"; 39225 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 39226 + revision = "11"; 39227 + editedCabalFile = "0aj0av37xgxz6pyzwc8d3qr915a2d2pwz1g21ad8nd5ms4zpgz7l"; 39228 libraryHaskellDepends = [ 39229 aeson base base-compat base64-bytestring binary bytestring cereal 39230 deepseq hashable http-api-data QuickCheck serialise text ··· 40029 pname = "beam-core"; 40030 version = "0.9.1.0"; 40031 sha256 = "1rw3db9qmf08wi5gcd0cbsz5cpndf8cwkbzkh74gbwwpcpa7lg39"; 40032 + revision = "1"; 40033 + editedCabalFile = "1skynr0yg6ig6p9wic3dkbz88qrpnirljkb429yshwbzns55gimh"; 40034 libraryHaskellDepends = [ 40035 aeson base bytestring containers dlist free ghc-prim hashable 40036 microlens mtl network-uri scientific tagged text time vector ··· 42881 ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring 42882 , bytestring-lexing, case-insensitive, clustering, conduit 42883 , conduit-extra, containers, criterion, data-default-class 42884 + , data-ordlist, deepseq, double-conversion, hexpat, HsHTSLib 42885 + , http-conduit, IntervalMap, math-functions, matrices, microlens 42886 + , microlens-th, mtl, parallel, primitive, random, split, statistics 42887 + , tasty, tasty-golden, tasty-hunit, text, transformers 42888 , unordered-containers, vector, vector-algorithms, word8 42889 }: 42890 mkDerivation { 42891 pname = "bioinformatics-toolkit"; 42892 + version = "0.10.0"; 42893 + sha256 = "07fzdwl5cknkjwzwf8ixhapx0c5wyxgimrx4pxipj5gm30ryl62z"; 42894 enableSeparateDataOutput = true; 42895 libraryHaskellDepends = [ 42896 aeson aeson-pretty attoparsec base bytestring bytestring-lexing 42897 case-insensitive clustering conduit conduit-extra containers 42898 + data-default-class data-ordlist deepseq double-conversion hexpat 42899 + HsHTSLib http-conduit IntervalMap math-functions matrices microlens 42900 microlens-th mtl parallel primitive split statistics text 42901 transformers unordered-containers vector vector-algorithms word8 42902 ]; ··· 42906 unordered-containers vector 42907 ]; 42908 benchmarkHaskellDepends = [ 42909 + base bytestring clustering conduit conduit-extra criterion 42910 + data-default-class mtl random 42911 ]; 42912 description = "A collection of bioinformatics tools"; 42913 license = lib.licenses.mit; ··· 46688 hydraPlatforms = lib.platforms.none; 46689 }) {}; 46690 46691 + "brick_0_65" = callPackage 46692 + ({ mkDerivation, base, bytestring, config-ini, containers 46693 + , contravariant, data-clist, deepseq, directory, dlist, exceptions 46694 + , filepath, microlens, microlens-mtl, microlens-th, QuickCheck, stm 46695 + , template-haskell, text, text-zipper, transformers, unix, vector 46696 + , vty, word-wrap 46697 + }: 46698 + mkDerivation { 46699 + pname = "brick"; 46700 + version = "0.65"; 46701 + sha256 = "1yk9r5igg5p7aixlpls167z2fajq3vp0xxqcjw4cg168g20lnhbs"; 46702 + isLibrary = true; 46703 + isExecutable = true; 46704 + libraryHaskellDepends = [ 46705 + base bytestring config-ini containers contravariant data-clist 46706 + deepseq directory dlist exceptions filepath microlens microlens-mtl 46707 + microlens-th stm template-haskell text text-zipper transformers 46708 + unix vector vty word-wrap 46709 + ]; 46710 + testHaskellDepends = [ 46711 + base containers microlens QuickCheck vector 46712 + ]; 46713 + description = "A declarative terminal user interface library"; 46714 + license = lib.licenses.bsd3; 46715 + hydraPlatforms = lib.platforms.none; 46716 + }) {}; 46717 + 46718 "brick-dropdownmenu" = callPackage 46719 ({ mkDerivation, base, brick, containers, microlens, microlens-ghc 46720 , microlens-th, pointedlist, vector, vty ··· 46948 license = lib.licenses.agpl3Only; 46949 }) {}; 46950 46951 + "brittany_0_14_0_0" = callPackage 46952 + ({ mkDerivation, aeson, base, butcher, bytestring, cmdargs 46953 + , containers, czipwith, data-tree-print, deepseq, directory, extra 46954 + , filepath, ghc, ghc-boot, ghc-boot-th, ghc-exactprint, hspec 46955 + , monad-memo, mtl, multistate, pretty, random, safe, semigroups 46956 + , strict, syb, text, transformers, uniplate, yaml 46957 + }: 46958 + mkDerivation { 46959 + pname = "brittany"; 46960 + version = "0.14.0.0"; 46961 + sha256 = "10xphm9szdflwqkfbhz9pngiq0sn5jmysa015dhqc3prhz4qha2b"; 46962 + isLibrary = true; 46963 + isExecutable = true; 46964 + libraryHaskellDepends = [ 46965 + aeson base butcher bytestring cmdargs containers czipwith 46966 + data-tree-print deepseq directory extra filepath ghc ghc-boot 46967 + ghc-boot-th ghc-exactprint monad-memo mtl multistate pretty random 46968 + safe semigroups strict syb text transformers uniplate yaml 46969 + ]; 46970 + executableHaskellDepends = [ 46971 + aeson base butcher bytestring cmdargs containers czipwith 46972 + data-tree-print deepseq directory extra filepath ghc ghc-boot 46973 + ghc-boot-th ghc-exactprint monad-memo mtl multistate pretty random 46974 + safe semigroups strict syb text transformers uniplate yaml 46975 + ]; 46976 + testHaskellDepends = [ 46977 + aeson base butcher bytestring cmdargs containers czipwith 46978 + data-tree-print deepseq directory extra filepath ghc ghc-boot 46979 + ghc-boot-th ghc-exactprint hspec monad-memo mtl multistate pretty 46980 + random safe semigroups strict syb text transformers uniplate yaml 46981 + ]; 46982 + description = "Haskell source code formatter"; 46983 + license = lib.licenses.agpl3Only; 46984 + hydraPlatforms = lib.platforms.none; 46985 + }) {}; 46986 + 46987 "broadcast-chan" = callPackage 46988 ({ mkDerivation, async, base, criterion, deepseq, stm, transformers 46989 , unliftio-core ··· 47672 broken = true; 47673 }) {}; 47674 47675 + "bugsnag-haskell_0_0_4_2" = callPackage 47676 + ({ mkDerivation, aeson, aeson-qq, base, bytestring 47677 + , case-insensitive, containers, doctest, Glob, hspec, http-client 47678 + , http-client-tls, http-conduit, http-types, iproute, network 47679 + , parsec, template-haskell, text, th-lift-instances, time 47680 + , ua-parser, unliftio, wai, yaml 47681 + }: 47682 + mkDerivation { 47683 + pname = "bugsnag-haskell"; 47684 + version = "0.0.4.2"; 47685 + sha256 = "0q7my31jq0rgpj08zxylvzmml5mms9f1hiavcfy4rpqkjqv8kwir"; 47686 + isLibrary = true; 47687 + isExecutable = true; 47688 + libraryHaskellDepends = [ 47689 + aeson base bytestring case-insensitive containers Glob http-client 47690 + http-client-tls http-conduit http-types iproute network parsec 47691 + template-haskell text th-lift-instances time ua-parser wai 47692 + ]; 47693 + testHaskellDepends = [ 47694 + aeson aeson-qq base doctest hspec text time unliftio yaml 47695 + ]; 47696 + description = "Bugsnag error reporter for Haskell"; 47697 + license = lib.licenses.mit; 47698 + hydraPlatforms = lib.platforms.none; 47699 + broken = true; 47700 + }) {}; 47701 + 47702 "bugsnag-hs" = callPackage 47703 ({ mkDerivation, aeson, base, bytestring, hedgehog, http-client 47704 , text, time, unordered-containers ··· 48026 testHaskellDepends = [ base containers hspec QuickCheck text ]; 48027 description = "Parse and render URI templates"; 48028 license = lib.licenses.isc; 48029 + }) {}; 48030 + 48031 + "burrito_1_2_0_4" = callPackage 48032 + ({ mkDerivation, base, bytestring, containers, hspec, parsec 48033 + , QuickCheck, template-haskell, text, transformers 48034 + }: 48035 + mkDerivation { 48036 + pname = "burrito"; 48037 + version = "1.2.0.4"; 48038 + sha256 = "1i08p5g6yivmkgbhxv48amfdw523agjwyd02pbk5lbzyssc2sp7d"; 48039 + libraryHaskellDepends = [ 48040 + base bytestring containers parsec template-haskell text 48041 + transformers 48042 + ]; 48043 + testHaskellDepends = [ base containers hspec QuickCheck text ]; 48044 + description = "Parse and render URI templates"; 48045 + license = lib.licenses.isc; 48046 + hydraPlatforms = lib.platforms.none; 48047 }) {}; 48048 48049 "burst-detection" = callPackage ··· 48442 48443 "bytebuild" = callPackage 48444 ({ mkDerivation, base, byteslice, bytestring, gauge 48445 + , haskell-src-meta, integer-logarithms, natural-arithmetic 48446 + , primitive, primitive-offset, primitive-unlifted, QuickCheck 48447 , quickcheck-classes, quickcheck-instances, run-st, tasty 48448 + , tasty-hunit, tasty-quickcheck, template-haskell, text, text-short 48449 + , vector, wide-word 48450 }: 48451 mkDerivation { 48452 pname = "bytebuild"; 48453 + version = "0.3.9.0"; 48454 + sha256 = "07ln4qva3qb81w8rsdfxg4i1m659lf97680abm78y1qb41c8ampz"; 48455 libraryHaskellDepends = [ 48456 + base byteslice bytestring haskell-src-meta integer-logarithms 48457 + natural-arithmetic primitive primitive-offset primitive-unlifted 48458 + run-st template-haskell text-short wide-word 48459 ]; 48460 testHaskellDepends = [ 48461 base byteslice bytestring natural-arithmetic primitive 48462 primitive-unlifted QuickCheck quickcheck-classes 48463 + quickcheck-instances tasty tasty-hunit tasty-quickcheck text 48464 + text-short vector wide-word 48465 ]; 48466 benchmarkHaskellDepends = [ 48467 base byteslice gauge natural-arithmetic primitive text-short ··· 48996 license = lib.licenses.mit; 48997 }) {}; 48998 48999 + "bytestring-strict-builder_0_4_5_5" = callPackage 49000 + ({ mkDerivation, base, bytestring, criterion, QuickCheck 49001 + , quickcheck-instances, rerebase, tasty, tasty-hunit 49002 + , tasty-quickcheck 49003 + }: 49004 + mkDerivation { 49005 + pname = "bytestring-strict-builder"; 49006 + version = "0.4.5.5"; 49007 + sha256 = "1knin3mfj2qfh7xhvbrpakd037y7qqic24f1w93v8p6y5g7bc3zp"; 49008 + libraryHaskellDepends = [ base bytestring ]; 49009 + testHaskellDepends = [ 49010 + QuickCheck quickcheck-instances rerebase tasty tasty-hunit 49011 + tasty-quickcheck 49012 + ]; 49013 + benchmarkHaskellDepends = [ criterion rerebase ]; 49014 + description = "An efficient strict bytestring builder"; 49015 + license = lib.licenses.mit; 49016 + hydraPlatforms = lib.platforms.none; 49017 + }) {}; 49018 + 49019 "bytestring-substring" = callPackage 49020 ({ mkDerivation, base, bytestring, pipes, primitive }: 49021 mkDerivation { ··· 49083 }) {}; 49084 49085 "bytestring-trie" = callPackage 49086 + ({ mkDerivation, base, binary, bytestring, QuickCheck, smallcheck 49087 + , tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck 49088 + }: 49089 mkDerivation { 49090 pname = "bytestring-trie"; 49091 + version = "0.2.6"; 49092 + sha256 = "00wz54cmn2wa8vvhvhmdxj16nj0blhhyabp54ddahicnnizi2hzf"; 49093 libraryHaskellDepends = [ base binary bytestring ]; 49094 + testHaskellDepends = [ 49095 + base binary bytestring QuickCheck smallcheck tasty tasty-hunit 49096 + tasty-quickcheck tasty-smallcheck 49097 + ]; 49098 description = "An efficient finite map from (byte)strings to values"; 49099 license = lib.licenses.bsd3; 49100 }) {}; ··· 49934 license = lib.licenses.bsd3; 49935 }) {}; 49936 49937 + "cabal-flatpak_0_1_0_3" = callPackage 49938 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cabal-plan 49939 + , containers, cryptohash-sha256, http-client, http-client-tls 49940 + , http-types, optparse-applicative, pathtype, shell-utility, tar 49941 + , text, utility-ht, zlib 49942 + }: 49943 + mkDerivation { 49944 + pname = "cabal-flatpak"; 49945 + version = "0.1.0.3"; 49946 + sha256 = "1k0fzhyvlcq1l09fnf3f3wig4g9l61wsm1dmsjd3nwsgh52xb37v"; 49947 + isLibrary = false; 49948 + isExecutable = true; 49949 + executableHaskellDepends = [ 49950 + aeson aeson-pretty base bytestring cabal-plan containers 49951 + cryptohash-sha256 http-client http-client-tls http-types 49952 + optparse-applicative pathtype shell-utility tar text utility-ht 49953 + zlib 49954 + ]; 49955 + description = "Generate a FlatPak manifest from a Cabal package description"; 49956 + license = lib.licenses.bsd3; 49957 + hydraPlatforms = lib.platforms.none; 49958 + }) {}; 49959 + 49960 "cabal-fmt" = callPackage 49961 ({ mkDerivation, base, bytestring, Cabal, containers, directory 49962 , filepath, mtl, optparse-applicative, parsec, pretty, process ··· 50099 pname = "cabal-install"; 50100 version = "3.6.2.0"; 50101 sha256 = "0dihpm4h3xh13vnpvwflnb7v614qdvljycc6ffg5cvhwbwfrxyfw"; 50102 + revision = "1"; 50103 + editedCabalFile = "0891zma6ci26ndbb98mahps0dxy7zccj3mqa9d194j3d305hs9av"; 50104 isLibrary = false; 50105 isExecutable = true; 50106 executableHaskellDepends = [ ··· 51621 pname = "call-alloy"; 51622 version = "0.2.2.0"; 51623 sha256 = "09xy823lxmp4siqxbv8f6v192a9bs0vmq36293cbiv7g7w65bnvi"; 51624 + revision = "2"; 51625 + editedCabalFile = "0c90z46ks7sybx899ama5dsvbxvm62a2cclwqav1rak1vjygglk2"; 51626 libraryHaskellDepends = [ 51627 base bytestring containers directory file-embed filepath hashable 51628 mtl process split trifecta unix ··· 52111 }: 52112 mkDerivation { 52113 pname = "capnp"; 52114 + version = "0.15.0.0"; 52115 + sha256 = "15vywgr01as3avmz9q1zp899w39xf6p9pk95bvvdmh9py2jh4sf4"; 52116 isLibrary = true; 52117 isExecutable = true; 52118 libraryHaskellDepends = [ ··· 53526 broken = true; 53527 }) {}; 53528 53529 + "cayley-client_0_4_17" = callPackage 53530 + ({ mkDerivation, aeson, attoparsec, base, binary, bytestring 53531 + , exceptions, hspec, http-client, http-conduit, lens, lens-aeson 53532 + , mtl, text, transformers, unordered-containers, vector 53533 + }: 53534 + mkDerivation { 53535 + pname = "cayley-client"; 53536 + version = "0.4.17"; 53537 + sha256 = "1mc4r45vlwbrcjz33akqs5kh27wc97b8dg1byanvyjyvsvabg5bb"; 53538 + libraryHaskellDepends = [ 53539 + aeson attoparsec base binary bytestring exceptions http-client 53540 + http-conduit lens lens-aeson mtl text transformers 53541 + unordered-containers vector 53542 + ]; 53543 + testHaskellDepends = [ aeson base hspec unordered-containers ]; 53544 + description = "A Haskell client for the Cayley graph database"; 53545 + license = lib.licenses.bsd3; 53546 + hydraPlatforms = lib.platforms.none; 53547 + broken = true; 53548 + }) {}; 53549 + 53550 "cayley-dickson" = callPackage 53551 ({ mkDerivation, base, random }: 53552 mkDerivation { ··· 53615 pname = "cborg"; 53616 version = "0.2.6.0"; 53617 sha256 = "1mvsavi8ngsvmcvlmaygsnygf7hn8kdqdhfff91n1zajgpz577h6"; 53618 + revision = "1"; 53619 + editedCabalFile = "0ry5p8cnmm772m3z074azh1ldxvq851dmffsp2b7vljjhzd9j4sc"; 53620 libraryHaskellDepends = [ 53621 array base bytestring containers deepseq ghc-prim half integer-gmp 53622 primitive text ··· 57148 license = lib.licenses.mit; 57149 }) {}; 57150 57151 + "classy-prelude_1_5_0_1" = callPackage 57152 + ({ mkDerivation, async, base, basic-prelude, bifunctors, bytestring 57153 + , chunked-data, containers, deepseq, dlist, ghc-prim, hashable 57154 + , hspec, mono-traversable, mono-traversable-instances, mtl 57155 + , mutable-containers, primitive, QuickCheck, say, stm, stm-chans 57156 + , text, time, transformers, unliftio, unordered-containers, vector 57157 + , vector-instances 57158 + }: 57159 + mkDerivation { 57160 + pname = "classy-prelude"; 57161 + version = "1.5.0.1"; 57162 + sha256 = "1khc2acwmx9b226j6yxkhnvhddx40rzracpp96ra96gln109vpbx"; 57163 + libraryHaskellDepends = [ 57164 + async base basic-prelude bifunctors bytestring chunked-data 57165 + containers deepseq dlist ghc-prim hashable mono-traversable 57166 + mono-traversable-instances mtl mutable-containers primitive say stm 57167 + stm-chans text time transformers unliftio unordered-containers 57168 + vector vector-instances 57169 + ]; 57170 + testHaskellDepends = [ 57171 + base containers hspec QuickCheck transformers unordered-containers 57172 + ]; 57173 + description = "A typeclass-based Prelude"; 57174 + license = lib.licenses.mit; 57175 + hydraPlatforms = lib.platforms.none; 57176 + }) {}; 57177 + 57178 "classy-prelude-conduit" = callPackage 57179 ({ mkDerivation, base, bytestring, classy-prelude, conduit, hspec 57180 , monad-control, QuickCheck, resourcet, transformers, void ··· 62456 license = lib.licenses.bsd2; 62457 }) {}; 62458 62459 + "concurrent-output_1_10_14" = callPackage 62460 + ({ mkDerivation, ansi-terminal, async, base, directory, exceptions 62461 + , process, stm, terminal-size, text, transformers, unix 62462 + }: 62463 + mkDerivation { 62464 + pname = "concurrent-output"; 62465 + version = "1.10.14"; 62466 + sha256 = "01d5zq7ja55jjn65fj5rs11kzqnc6baysxkzkq0jfd23wdqf9f92"; 62467 + libraryHaskellDepends = [ 62468 + ansi-terminal async base directory exceptions process stm 62469 + terminal-size text transformers unix 62470 + ]; 62471 + description = "Ungarble output from several threads or commands"; 62472 + license = lib.licenses.bsd2; 62473 + hydraPlatforms = lib.platforms.none; 62474 + }) {}; 62475 + 62476 "concurrent-resource-map" = callPackage 62477 ({ mkDerivation, base, containers, random, stm }: 62478 mkDerivation { ··· 64772 pname = "contiguous"; 64773 version = "0.6.1"; 64774 sha256 = "1cgmz0adrv1kv1z21cfs4s4lmzbyp4acq5v2ly96bckp8a35cbix"; 64775 + revision = "1"; 64776 + editedCabalFile = "0lmqkbz8cgnxyds1wbhb9mxmc3rwz5x9hcamx08znrjl6fpkxs4f"; 64777 libraryHaskellDepends = [ 64778 base deepseq primitive primitive-unlifted run-st 64779 ]; ··· 65757 license = lib.licenses.mit; 65758 }) {}; 65759 65760 + "core-program_0_4_2_0" = callPackage 65761 ({ mkDerivation, async, base, bytestring, chronologique, core-data 65762 , core-text, directory, exceptions, filepath, fsnotify, hashable 65763 , hourglass, mtl, prettyprinter, safe-exceptions, stm ··· 65766 }: 65767 mkDerivation { 65768 pname = "core-program"; 65769 + version = "0.4.2.0"; 65770 + sha256 = "1xbfshfy6h7afpnlaafyq4mj3x0q4i83sxk6720k0dd0hhszb6b0"; 65771 libraryHaskellDepends = [ 65772 async base bytestring chronologique core-data core-text directory 65773 exceptions filepath fsnotify hashable hourglass mtl prettyprinter ··· 67968 }: 67969 mkDerivation { 67970 pname = "crypto-sodium"; 67971 + version = "0.0.5.0"; 67972 + sha256 = "0c1q0kmvglmlvv8z8q8nyjjjy02r41bk32pr1z080x79z612zad5"; 67973 libraryHaskellDepends = [ 67974 base bytestring cereal libsodium memory NaCl random safe-exceptions 67975 ]; ··· 69444 license = lib.licenses.mit; 69445 }) {}; 69446 69447 + "cursor_0_3_1_0" = callPackage 69448 + ({ mkDerivation, base, containers, deepseq, microlens, text 69449 + , validity, validity-containers, validity-text 69450 + }: 69451 + mkDerivation { 69452 + pname = "cursor"; 69453 + version = "0.3.1.0"; 69454 + sha256 = "1axwbs1aq00cxw2b6dxijqsr1s1ygfi9wbgdknx84giy7zfpxav6"; 69455 + libraryHaskellDepends = [ 69456 + base containers deepseq microlens text validity validity-containers 69457 + validity-text 69458 + ]; 69459 + description = "Purely Functional Cursors"; 69460 + license = lib.licenses.mit; 69461 + hydraPlatforms = lib.platforms.none; 69462 + }) {}; 69463 + 69464 "cursor-brick" = callPackage 69465 ({ mkDerivation, base, brick, cursor, text }: 69466 mkDerivation { ··· 69471 license = lib.licenses.mit; 69472 }) {}; 69473 69474 + "cursor-brick_0_1_0_1" = callPackage 69475 + ({ mkDerivation, base, brick, cursor, text }: 69476 + mkDerivation { 69477 + pname = "cursor-brick"; 69478 + version = "0.1.0.1"; 69479 + sha256 = "108pmv6f8y3szrh3n96dyl7hsfr6qim8axikf82dgs1fd2nx61vw"; 69480 + libraryHaskellDepends = [ base brick cursor text ]; 69481 + license = lib.licenses.mit; 69482 + hydraPlatforms = lib.platforms.none; 69483 + }) {}; 69484 + 69485 "cursor-fuzzy-time" = callPackage 69486 ({ mkDerivation, base, containers, cursor, deepseq, fuzzy-time 69487 , megaparsec, microlens, text, time, validity, validity-time ··· 69506 }: 69507 mkDerivation { 69508 pname = "cursor-fuzzy-time-gen"; 69509 + version = "0.1.0.0"; 69510 + sha256 = "12bwxpghgry3dhlpny4zmyjf4xillrajdr2xas07aknddks5bzn1"; 69511 libraryHaskellDepends = [ 69512 base containers cursor-fuzzy-time cursor-gen deepseq fuzzy-time 69513 fuzzy-time-gen genvalidity genvalidity-time megaparsec time ··· 69547 ]; 69548 description = "Generators for Purely Functional Cursors"; 69549 license = lib.licenses.mit; 69550 + }) {}; 69551 + 69552 + "cursor-gen_0_4_0_0" = callPackage 69553 + ({ mkDerivation, base, containers, criterion, cursor, genvalidity 69554 + , genvalidity-containers, genvalidity-criterion, genvalidity-hspec 69555 + , genvalidity-hspec-optics, genvalidity-text, hspec, microlens 69556 + , pretty-show, QuickCheck, text 69557 + }: 69558 + mkDerivation { 69559 + pname = "cursor-gen"; 69560 + version = "0.4.0.0"; 69561 + sha256 = "1a591kx30d8zmwl1rp78scjgbakkslq45wx6f558wmpph33gnw5s"; 69562 + libraryHaskellDepends = [ 69563 + base containers cursor genvalidity genvalidity-containers 69564 + genvalidity-text QuickCheck text 69565 + ]; 69566 + testHaskellDepends = [ 69567 + base containers cursor genvalidity-hspec genvalidity-hspec-optics 69568 + hspec microlens pretty-show QuickCheck text 69569 + ]; 69570 + benchmarkHaskellDepends = [ 69571 + base criterion cursor genvalidity-criterion 69572 + ]; 69573 + description = "Generators for Purely Functional Cursors"; 69574 + license = lib.licenses.mit; 69575 + hydraPlatforms = lib.platforms.none; 69576 }) {}; 69577 69578 "curve25519" = callPackage ··· 69790 pname = "czipwith"; 69791 version = "1.0.1.4"; 69792 sha256 = "0zvi7wmbh09ngbyvavvhn6s3vz1pnps59fl1sq3vih6s03s0zmai"; 69793 + revision = "1"; 69794 + editedCabalFile = "1lijciq9ly8cmv7kjkazi8rz8zhh205f64iv3fsjj4spy2lpkyhx"; 69795 libraryHaskellDepends = [ base template-haskell ]; 69796 testHaskellDepends = [ base transformers ]; 69797 description = "CZipWith class and deriving via TH"; ··· 71308 }) {}; 71309 71310 "data-forest" = callPackage 71311 ({ mkDerivation, base }: 71312 mkDerivation { 71313 pname = "data-forest"; ··· 71317 testHaskellDepends = [ base ]; 71318 description = "A simple multi-way tree data structure"; 71319 license = lib.licenses.asl20; 71320 }) {}; 71321 71322 "data-fresh" = callPackage ··· 73532 pname = "dear-imgui"; 73533 version = "1.2.2"; 73534 sha256 = "095mv60dvikw1pmj59kwq6p9s8yp04zd8ndbcq3fdia8w0razrxf"; 73535 + revision = "1"; 73536 + editedCabalFile = "002s2a3hl1scadwqvhairhh7kqvz6fzbjgw4knc9lj6qm9b70gf0"; 73537 isLibrary = true; 73538 isExecutable = true; 73539 libraryHaskellDepends = [ ··· 73831 }) {}; 73832 73833 "decision-diagrams" = callPackage 73834 + ({ mkDerivation, base, containers, deepseq, doctest, hashable 73835 + , hashtables, intern, mwc-random, primitive, QuickCheck 73836 + , quickcheck-instances, random, reflection, statistics, tasty 73837 + , tasty-hunit, tasty-quickcheck, tasty-th, unordered-containers 73838 + , vector 73839 }: 73840 mkDerivation { 73841 pname = "decision-diagrams"; 73842 + version = "0.2.0.0"; 73843 + sha256 = "0l03mwig95h300rn1cfhd5ahwrlap6zsw09lwmkx6wkw6rjf4a5s"; 73844 libraryHaskellDepends = [ 73845 base containers hashable hashtables intern mwc-random primitive 73846 + random reflection unordered-containers vector 73847 ]; 73848 testHaskellDepends = [ 73849 + base containers deepseq doctest mwc-random QuickCheck 73850 + quickcheck-instances statistics tasty tasty-hunit tasty-quickcheck 73851 + tasty-th vector 73852 ]; 73853 description = "Binary Decision Diagrams (BDD) and Zero-suppressed Binary Decision Diagrams (ZDD)"; 73854 license = lib.licenses.bsd3; ··· 74064 pname = "deepseq-generics"; 74065 version = "0.2.0.0"; 74066 sha256 = "17bwghc15mc9pchfd1w46jh2p3wzc86aj6a537wqwxn08rayzcxh"; 74067 + revision = "7"; 74068 + editedCabalFile = "1issqf30ykabjpk7f66k8pfyylxw7bxa39b5iq72s76nxi392lig"; 74069 libraryHaskellDepends = [ base deepseq ghc-prim ]; 74070 testHaskellDepends = [ 74071 base deepseq ghc-prim HUnit test-framework test-framework-hunit ··· 74581 }: 74582 mkDerivation { 74583 pname = "dep-t"; 74584 + version = "0.5.1.0"; 74585 + sha256 = "1rj12an1dbppci4j8psffw5j28a6brqbpnwklv7k8y9iwmmyhiaz"; 74586 libraryHaskellDepends = [ base mtl transformers unliftio-core ]; 74587 testHaskellDepends = [ 74588 aeson barbies base bytestring containers doctest mtl rank2classes ··· 74597 74598 "dep-t-advice" = callPackage 74599 ({ mkDerivation, aeson, barbies, base, containers, criterion, dep-t 74600 + , doctest, microlens, mtl, rank2classes, sop-core, tasty 74601 + , tasty-hunit, template-haskell, text, transformers, unliftio-core 74602 }: 74603 mkDerivation { 74604 pname = "dep-t-advice"; 74605 + version = "0.5.1.0"; 74606 + sha256 = "0bpxqb8nzf7sl0h7g0dzf30pvcf3z6kqf57aczy925x1spw58bpx"; 74607 libraryHaskellDepends = [ 74608 base dep-t mtl sop-core transformers unliftio-core 74609 ]; 74610 testHaskellDepends = [ 74611 + aeson barbies base containers dep-t doctest microlens mtl 74612 + rank2classes sop-core tasty tasty-hunit template-haskell text 74613 + transformers unliftio-core 74614 ]; 74615 benchmarkHaskellDepends = [ 74616 base criterion dep-t mtl rank2classes sop-core template-haskell 74617 text transformers unliftio-core 74618 ]; 74619 + description = "Giving good advice to functions in records-of-functions"; 74620 license = lib.licenses.bsd3; 74621 hydraPlatforms = lib.platforms.none; 74622 }) {}; ··· 74808 license = lib.licenses.publicDomain; 74809 }) {}; 74810 74811 + "dependent-sum-template_0_1_1_1" = callPackage 74812 + ({ mkDerivation, base, constraints-extras, dependent-sum 74813 + , template-haskell, th-abstraction, th-extras 74814 + }: 74815 + mkDerivation { 74816 + pname = "dependent-sum-template"; 74817 + version = "0.1.1.1"; 74818 + sha256 = "03xffmih70ksk7jgfs3ypaa91bm1x21fjxqpj1gkhp9gbj6w2vyl"; 74819 + libraryHaskellDepends = [ 74820 + base dependent-sum template-haskell th-abstraction th-extras 74821 + ]; 74822 + testHaskellDepends = [ base constraints-extras dependent-sum ]; 74823 + description = "Template Haskell code to generate instances of classes in dependent-sum package"; 74824 + license = lib.licenses.publicDomain; 74825 + hydraPlatforms = lib.platforms.none; 74826 + }) {}; 74827 + 74828 "depends" = callPackage 74829 ({ mkDerivation, base, containers, directory, filepath, hspec 74830 , process, QuickCheck, transformers, yaml-config ··· 75859 maintainers = with lib.maintainers; [ Gabriel439 ]; 75860 }) {}; 75861 75862 + "dhall_1_40_2" = callPackage 75863 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write 75864 + , base, base16-bytestring, bytestring, case-insensitive, cborg 75865 + , cborg-json, containers, contravariant, cryptohash-sha256 75866 + , data-fix, deepseq, Diff, directory, doctest, dotgen, either 75867 + , exceptions, filepath, foldl, gauge, generic-random, half 75868 + , hashable, haskeline, http-client, http-client-tls, http-types 75869 + , lens-family-core, megaparsec, mmorph, mockery, mtl, network-uri 75870 + , optparse-applicative, parser-combinators, parsers, pretty-simple 75871 + , prettyprinter, prettyprinter-ansi-terminal, profunctors 75872 + , QuickCheck, quickcheck-instances, repline, scientific, serialise 75873 + , special-values, spoon, system-filepath, tasty 75874 + , tasty-expected-failure, tasty-hunit, tasty-quickcheck 75875 + , tasty-silver, template-haskell, temporary, text, text-manipulate 75876 + , th-lift-instances, time, transformers, turtle 75877 , unordered-containers, uri-encode, vector 75878 }: 75879 mkDerivation { 75880 pname = "dhall"; 75881 + version = "1.40.2"; 75882 + sha256 = "14wh497fipvz01zc9s31gv144spg1iqfwp6x5mlk1hjk0v9qs5by"; 75883 isLibrary = true; 75884 isExecutable = true; 75885 enableSeparateDataOutput = true; 75886 libraryHaskellDepends = [ 75887 + aeson aeson-pretty ansi-terminal atomic-write base 75888 + base16-bytestring bytestring case-insensitive cborg cborg-json 75889 + containers contravariant cryptohash-sha256 data-fix deepseq Diff 75890 + directory dotgen either exceptions filepath half hashable haskeline 75891 + http-client http-client-tls http-types lens-family-core megaparsec 75892 + mmorph mtl network-uri optparse-applicative parser-combinators 75893 + parsers pretty-simple prettyprinter prettyprinter-ansi-terminal 75894 + profunctors repline scientific serialise template-haskell text 75895 + text-manipulate th-lift-instances time transformers 75896 + unordered-containers uri-encode vector 75897 ]; 75898 executableHaskellDepends = [ base ]; 75899 testHaskellDepends = [ ··· 75901 either filepath foldl generic-random http-client http-client-tls 75902 lens-family-core megaparsec mockery prettyprinter QuickCheck 75903 quickcheck-instances scientific serialise special-values spoon 75904 + system-filepath tasty tasty-expected-failure tasty-hunit 75905 + tasty-quickcheck tasty-silver template-haskell temporary text time 75906 + transformers turtle unordered-containers vector 75907 ]; 75908 benchmarkHaskellDepends = [ 75909 base bytestring containers directory gauge text ··· 75937 maintainers = with lib.maintainers; [ Gabriel439 ]; 75938 }) {}; 75939 75940 + "dhall-bash_1_0_39" = callPackage 75941 ({ mkDerivation, base, bytestring, containers, dhall 75942 , neat-interpolation, optparse-generic, shell-escape, text 75943 }: 75944 mkDerivation { 75945 pname = "dhall-bash"; 75946 + version = "1.0.39"; 75947 + sha256 = "0by0w5dqsi0yrs9qnkpls7n5m0qwslxkcycb4s97vk8xl6nj5kk8"; 75948 isLibrary = true; 75949 isExecutable = true; 75950 libraryHaskellDepends = [ ··· 75988 }: 75989 mkDerivation { 75990 pname = "dhall-csv"; 75991 + version = "1.0.1"; 75992 + sha256 = "00a08lcxf9r1ln87bzy4j83z08yl1m7xmzv1irg0xa03vskby3lx"; 75993 isLibrary = true; 75994 isExecutable = true; 75995 libraryHaskellDepends = [ ··· 76012 }) {}; 76013 76014 "dhall-docs" = callPackage 76015 + ({ mkDerivation, base, base16-bytestring, bytestring, containers 76016 + , cryptohash-sha256, dhall, directory, doctest, file-embed 76017 + , filepath, foldl, lens-family-core, lucid, megaparsec, mmark, mtl 76018 , optparse-applicative, path, path-io, pretty, prettyprinter, tasty 76019 , tasty-hunit, tasty-silver, text, transformers, turtle 76020 }: 76021 mkDerivation { 76022 pname = "dhall-docs"; 76023 + version = "1.0.8"; 76024 + sha256 = "1rkwvk6vd8l52nxv186fw3qdmsjvi8098yccnnbysmf41rz80fi7"; 76025 isLibrary = true; 76026 isExecutable = true; 76027 enableSeparateDataOutput = true; 76028 libraryHaskellDepends = [ 76029 + base base16-bytestring bytestring containers cryptohash-sha256 76030 + dhall directory file-embed filepath lens-family-core lucid 76031 + megaparsec mmark mtl optparse-applicative path path-io 76032 + prettyprinter text transformers 76033 ]; 76034 executableHaskellDepends = [ base dhall ]; 76035 testHaskellDepends = [ 76036 base bytestring containers dhall directory doctest filepath foldl 76037 + lucid path path-io pretty tasty tasty-hunit tasty-silver text 76038 turtle 76039 ]; 76040 description = "Generate HTML docs from a dhall package"; ··· 76107 maintainers = with lib.maintainers; [ Gabriel439 ]; 76108 }) {}; 76109 76110 + "dhall-json_1_7_9" = callPackage 76111 ({ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal 76112 , base, bytestring, containers, dhall, exceptions, filepath 76113 , lens-family-core, optparse-applicative, prettyprinter ··· 76116 }: 76117 mkDerivation { 76118 pname = "dhall-json"; 76119 + version = "1.7.9"; 76120 + sha256 = "11rl46vn6lzcm9kznpfc43c3a2cbq2si2zba3k2x4j360kvg9fgn"; 76121 isLibrary = true; 76122 isExecutable = true; 76123 libraryHaskellDepends = [ ··· 76189 maintainers = with lib.maintainers; [ Gabriel439 ]; 76190 }) {}; 76191 76192 + "dhall-lsp-server_1_0_17" = callPackage 76193 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers 76194 + , data-default, dhall, dhall-json, directory, doctest, filepath 76195 + , haskell-lsp, haskell-lsp-types, hslogger, hspec, lens, lsp-test 76196 + , megaparsec, mtl, network-uri, optparse-applicative, prettyprinter 76197 + , QuickCheck, rope-utf16-splay, tasty, tasty-hspec, text 76198 + , transformers, unordered-containers, uri-encode 76199 + }: 76200 + mkDerivation { 76201 + pname = "dhall-lsp-server"; 76202 + version = "1.0.17"; 76203 + sha256 = "0h4wji3fsvkplj78bfqi3x9p7q9ikcsmj65nfrfn4p6p6i1knhw8"; 76204 + isLibrary = true; 76205 + isExecutable = true; 76206 + libraryHaskellDepends = [ 76207 + aeson aeson-pretty base bytestring containers data-default dhall 76208 + dhall-json directory filepath haskell-lsp hslogger lens megaparsec 76209 + mtl network-uri prettyprinter rope-utf16-splay text transformers 76210 + unordered-containers uri-encode 76211 + ]; 76212 + executableHaskellDepends = [ base optparse-applicative ]; 76213 + testHaskellDepends = [ 76214 + base directory doctest filepath haskell-lsp-types hspec lsp-test 76215 + QuickCheck tasty tasty-hspec text 76216 + ]; 76217 + description = "Language Server Protocol (LSP) server for Dhall"; 76218 + license = lib.licenses.mit; 76219 + hydraPlatforms = lib.platforms.none; 76220 + maintainers = with lib.maintainers; [ Gabriel439 ]; 76221 + }) {}; 76222 + 76223 "dhall-nix" = callPackage 76224 ({ mkDerivation, base, containers, data-fix, dhall, hnix 76225 , lens-family-core, neat-interpolation, optparse-generic, text ··· 76244 maintainers = with lib.maintainers; [ Gabriel439 ]; 76245 }) {}; 76246 76247 + "dhall-nix_1_1_23" = callPackage 76248 ({ mkDerivation, base, containers, data-fix, dhall, hnix 76249 , lens-family-core, neat-interpolation, optparse-generic, text 76250 }: 76251 mkDerivation { 76252 pname = "dhall-nix"; 76253 + version = "1.1.23"; 76254 + sha256 = "17ajfkhxg4kjn6w7v3ymr6nsbqplvywkcwmfzybxqvmphh4zmfjb"; 76255 isLibrary = true; 76256 isExecutable = true; 76257 libraryHaskellDepends = [ ··· 76268 }) {}; 76269 76270 "dhall-nixpkgs" = callPackage 76271 + ({ mkDerivation, aeson, base, base16-bytestring, base64-bytestring 76272 + , bytestring, data-fix, dhall, foldl, hnix, lens-family-core 76273 + , megaparsec, mmorph, neat-interpolation, network-uri 76274 + , optparse-applicative, prettyprinter, text, transformers, turtle 76275 }: 76276 mkDerivation { 76277 pname = "dhall-nixpkgs"; 76278 + version = "1.0.7"; 76279 + sha256 = "1s7md4b2jzgmf557clln9fc5lmdrd9xjs55dd97dv8q6krm8nabg"; 76280 isLibrary = false; 76281 isExecutable = true; 76282 executableHaskellDepends = [ 76283 + aeson base base16-bytestring base64-bytestring bytestring data-fix 76284 + dhall foldl hnix lens-family-core megaparsec mmorph 76285 + neat-interpolation network-uri optparse-applicative prettyprinter 76286 + text transformers turtle 76287 ]; 76288 description = "Convert Dhall projects to Nix packages"; 76289 license = lib.licenses.bsd3; ··· 76297 }: 76298 mkDerivation { 76299 pname = "dhall-openapi"; 76300 + version = "1.0.3"; 76301 + sha256 = "0k7yq7g77ws7wjfzd35ydsjwaq2kc1y0rhwjwb6yvkyvljmr0ykz"; 76302 isLibrary = true; 76303 isExecutable = true; 76304 libraryHaskellDepends = [ ··· 76391 }: 76392 mkDerivation { 76393 pname = "dhall-toml"; 76394 + version = "1.0.1"; 76395 + sha256 = "024cillwk8rq7jlv6vh85ifypy1ddfvszf3fzmgl1r0ca9iclmbb"; 76396 isLibrary = true; 76397 isExecutable = true; 76398 libraryHaskellDepends = [ ··· 76439 maintainers = with lib.maintainers; [ Gabriel439 ]; 76440 }) {}; 76441 76442 + "dhall-yaml_1_2_9" = callPackage 76443 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, dhall 76444 , dhall-json, exceptions, HsYAML, HsYAML-aeson 76445 , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal ··· 76447 }: 76448 mkDerivation { 76449 pname = "dhall-yaml"; 76450 + version = "1.2.9"; 76451 + sha256 = "0gn9jrqihimjs8i9ksgmlkh8c64km52rmsgz2y6k3ab0igkv8dw6"; 76452 isLibrary = true; 76453 isExecutable = true; 76454 libraryHaskellDepends = [ ··· 77839 }: 77840 mkDerivation { 77841 pname = "digit"; 77842 + version = "0.11"; 77843 + sha256 = "1ic9qvlqrdi3a8wlgrahl6mrc43sc9x1k9p7myydzai4zg1wr013"; 77844 libraryHaskellDepends = [ 77845 base lens parsers scientific semigroupoids semigroups 77846 template-haskell ··· 78558 }: 78559 mkDerivation { 78560 pname = "discord-haskell"; 78561 + version = "1.9.2"; 78562 + sha256 = "1dqnhnd55qkrs33gbq1kpcq2hyp2ni33qp4xq9cwjlplgzpc32w6"; 78563 isLibrary = true; 78564 isExecutable = true; 78565 libraryHaskellDepends = [ ··· 80732 ({ mkDerivation, base, doctest }: 80733 mkDerivation { 80734 pname = "doctest-driver-gen"; 80735 version = "0.3.0.5"; 80736 sha256 = "08zv5c1cfklknpbw974sw4rb6jiijd3q28cpjw1cncc06n2jy85b"; 80737 isLibrary = true; ··· 80741 testHaskellDepends = [ base doctest ]; 80742 description = "Generate driver file for doctest's cabal integration"; 80743 license = lib.licenses.bsd3; 80744 }) {}; 80745 80746 "doctest-exitcode-stdio" = callPackage ··· 80791 license = lib.licenses.mit; 80792 }) {}; 80793 80794 + "doctest-parallel" = callPackage 80795 + ({ mkDerivation, base, base-compat, Cabal, cabal-install-parsers 80796 + , code-page, containers, deepseq, directory, exceptions, filepath 80797 + , ghc, ghc-paths, Glob, hspec, hspec-core, hspec-discover, HUnit 80798 + , mockery, pretty, process, QuickCheck, setenv, silently 80799 + , stringbuilder, syb, template-haskell, transformers 80800 + , unordered-containers 80801 + }: 80802 + mkDerivation { 80803 + pname = "doctest-parallel"; 80804 + version = "0.1"; 80805 + sha256 = "0hc5zg94idc62kgfsinbd5cd6xcy9cjvcpav38x4b0slr7i69b4v"; 80806 + libraryHaskellDepends = [ 80807 + base base-compat Cabal cabal-install-parsers code-page containers 80808 + deepseq directory exceptions filepath ghc ghc-paths Glob pretty 80809 + process syb template-haskell transformers unordered-containers 80810 + ]; 80811 + testHaskellDepends = [ 80812 + base base-compat code-page deepseq directory exceptions filepath 80813 + ghc ghc-paths hspec hspec-core hspec-discover HUnit mockery process 80814 + QuickCheck setenv silently stringbuilder syb transformers 80815 + ]; 80816 + testToolDepends = [ hspec-discover ]; 80817 + doHaddock = false; 80818 + description = "Test interactive Haskell examples"; 80819 + license = lib.licenses.mit; 80820 + hydraPlatforms = lib.platforms.none; 80821 + broken = true; 80822 + }) {}; 80823 + 80824 "doctest-prop" = callPackage 80825 ({ mkDerivation, base, doctest, HUnit, QuickCheck }: 80826 mkDerivation { ··· 81313 ]; 81314 description = "Loads environment variables from dotenv files"; 81315 license = lib.licenses.mit; 81316 + }) {}; 81317 + 81318 + "dotenv_0_9_0_0" = callPackage 81319 + ({ mkDerivation, base, base-compat, containers, directory 81320 + , exceptions, hspec, hspec-discover, hspec-megaparsec, megaparsec 81321 + , optparse-applicative, process, text, transformers 81322 + }: 81323 + mkDerivation { 81324 + pname = "dotenv"; 81325 + version = "0.9.0.0"; 81326 + sha256 = "12w7n6yn8mk5l3b2a1ppzg3s4fvs24gx2plas8amhxrqdpx4gdk7"; 81327 + isLibrary = true; 81328 + isExecutable = true; 81329 + enableSeparateDataOutput = true; 81330 + libraryHaskellDepends = [ 81331 + base base-compat containers directory exceptions megaparsec process 81332 + text transformers 81333 + ]; 81334 + executableHaskellDepends = [ 81335 + base base-compat megaparsec optparse-applicative process text 81336 + transformers 81337 + ]; 81338 + testHaskellDepends = [ 81339 + base base-compat containers directory exceptions hspec 81340 + hspec-megaparsec megaparsec process text transformers 81341 + ]; 81342 + testToolDepends = [ hspec-discover ]; 81343 + description = "Loads environment variables from dotenv files"; 81344 + license = lib.licenses.mit; 81345 + hydraPlatforms = lib.platforms.none; 81346 }) {}; 81347 81348 "dotfs" = callPackage ··· 82662 }: 82663 mkDerivation { 82664 pname = "dump-core"; 82665 + version = "0.1.4"; 82666 + sha256 = "0fl6lmwrzjxwirnpwmjiqbc5fj2s4fnp0dv8s3bcdslxwxkmi9l4"; 82667 enableSeparateDataOutput = true; 82668 libraryHaskellDepends = [ 82669 aeson base bytestring containers directory filepath ghc monadLib ··· 86039 ({ mkDerivation, aeson, async, base, blaze-html, blaze-markup 86040 , commonmark, commonmark-extensions, commonmark-pandoc, containers 86041 , data-default, directory, filepath, filepattern, fsnotify 86042 + , http-types, lvar, megaparsec, monad-logger, monad-logger-extras 86043 + , neat-interpolation, optparse-applicative, pandoc-types, parsec 86044 + , parser-combinators, relude, safe-exceptions, stm, text, time 86045 + , unicode-transforms, unionmount, unliftio, uri-encode, wai 86046 + , wai-middleware-static, wai-websockets, warp, websockets, yaml 86047 }: 86048 mkDerivation { 86049 pname = "ema"; 86050 + version = "0.2.0.0"; 86051 + sha256 = "1pjgpy4rvpwvrdszppb51nys281aglbpjgx4yci9hklp0kbkkh9i"; 86052 libraryHaskellDepends = [ 86053 aeson async base blaze-html blaze-markup commonmark 86054 commonmark-extensions commonmark-pandoc containers data-default 86055 + directory filepath filepattern fsnotify http-types lvar megaparsec 86056 monad-logger monad-logger-extras neat-interpolation 86057 + optparse-applicative pandoc-types parsec parser-combinators relude 86058 + safe-exceptions stm text time unicode-transforms unionmount 86059 + unliftio uri-encode wai wai-middleware-static wai-websockets warp 86060 + websockets yaml 86061 ]; 86062 description = "Static site generator library with hot reload"; 86063 license = lib.licenses.agpl3Only; 86064 }) {}; ··· 87912 "ersatz" = callPackage 87913 ({ mkDerivation, array, attoparsec, base, bytestring, containers 87914 , data-default, fail, lens, mtl, parsec, process, semigroups 87915 , streams, temporary, transformers, unordered-containers 87916 }: 87917 mkDerivation { ··· 89151 }: 89152 mkDerivation { 89153 pname = "eventlog2html"; 89154 + version = "0.9.2"; 89155 + sha256 = "0mr916gppp8pgyqdx89zhmcil7hkm7462h6vsq1y4n1qf5hx30jv"; 89156 isLibrary = true; 89157 isExecutable = true; 89158 libraryHaskellDepends = [ ··· 89496 pname = "exact-pi"; 89497 version = "0.5.0.1"; 89498 sha256 = "0q0qrkmpff835m3zz3w60i1y4sqicnzqb6vqmk13cjh4ign5d0ax"; 89499 + revision = "2"; 89500 + editedCabalFile = "11g9w0rcndi8c28hykzipcfcxffxgdys21di1fdz4n5p05f3ldqa"; 89501 libraryHaskellDepends = [ base numtype-dk ]; 89502 testHaskellDepends = [ 89503 base numtype-dk QuickCheck tasty tasty-hunit tasty-quickcheck ··· 89654 license = lib.licenses.bsd3; 89655 }) {}; 89656 89657 + "exception-transformers_0_4_0_11" = callPackage 89658 + ({ mkDerivation, base, fail, HUnit, test-framework 89659 + , test-framework-hunit, transformers, transformers-compat 89660 + }: 89661 + mkDerivation { 89662 + pname = "exception-transformers"; 89663 + version = "0.4.0.11"; 89664 + sha256 = "1zmd2s40m86c9mhv32l5bvvf5r52cgpxvb4v5phyc3pjwlr7m8g5"; 89665 + libraryHaskellDepends = [ 89666 + base fail transformers transformers-compat 89667 + ]; 89668 + testHaskellDepends = [ 89669 + base HUnit test-framework test-framework-hunit transformers 89670 + transformers-compat 89671 + ]; 89672 + description = "Type classes and monads for unchecked extensible exceptions"; 89673 + license = lib.licenses.bsd3; 89674 + hydraPlatforms = lib.platforms.none; 89675 + }) {}; 89676 + 89677 "exception-via" = callPackage 89678 ({ mkDerivation, base, template-haskell }: 89679 mkDerivation { ··· 89954 pname = "exiftool"; 89955 version = "0.2.0.0"; 89956 sha256 = "138d25fxqz3vg62mfgmva52flyzjxd8dxr0kc7ayfil1zk3bp4jg"; 89957 + revision = "2"; 89958 + editedCabalFile = "1f1qa9qlmi3i7iif6ddazgqpgds64fr467c0rs53060rcbyjr9gd"; 89959 libraryHaskellDepends = [ 89960 aeson base base64 bytestring hashable process scientific 89961 string-conversions temporary text unordered-containers vector ··· 91661 broken = true; 91662 }) {}; 91663 91664 + "faktory_1_1_2_1" = callPackage 91665 ({ mkDerivation, aeson, aeson-casing, aeson-qq, async, base 91666 , bytestring, connection, cryptonite, errors, hspec, markdown-unlit 91667 , megaparsec, memory, mtl, network, random, safe-exceptions ··· 91669 }: 91670 mkDerivation { 91671 pname = "faktory"; 91672 + version = "1.1.2.1"; 91673 + sha256 = "0hdwp12qn6m7xd2d7wsj3092jgvx2h6gf4b0gdswy1mkf0c2jql9"; 91674 isLibrary = true; 91675 isExecutable = true; 91676 libraryHaskellDepends = [ ··· 92865 pname = "feed"; 92866 version = "1.3.2.0"; 92867 sha256 = "0kv3vx3njqlhwvkmf12m1gmwl8jj97kfa60da2362vwdavhcf4dk"; 92868 + revision = "3"; 92869 + editedCabalFile = "029bip9jrmygvsdrdxn5gyb899kny41a98xjvy65gapd8ir1fd43"; 92870 enableSeparateDataOutput = true; 92871 libraryHaskellDepends = [ 92872 base base-compat bytestring old-locale old-time safe text time ··· 94045 }) {}; 94046 94047 "filepather" = callPackage 94048 + ({ mkDerivation, base, bytestring, contravariant, directory 94049 + , filepath, lens, mmorph, mtl, semigroupoids, semigroups 94050 + , transformers 94051 }: 94052 mkDerivation { 94053 pname = "filepather"; 94054 + version = "0.4.0"; 94055 + sha256 = "0b103xaxs09lr720md8rrn5gc581ihja6v1jv8gcp8yfnqrn4m1p"; 94056 libraryHaskellDepends = [ 94057 + base bytestring contravariant directory filepath lens mmorph mtl 94058 + semigroupoids semigroups transformers 94059 ]; 94060 description = "Functions on System.FilePath"; 94061 license = lib.licenses.bsd3; 94062 }) {}; 94063 94064 "filepattern" = callPackage ··· 96074 license = lib.licenses.mit; 96075 }) {}; 96076 96077 + "flow_1_0_23" = callPackage 96078 + ({ mkDerivation, base, HUnit }: 96079 + mkDerivation { 96080 + pname = "flow"; 96081 + version = "1.0.23"; 96082 + sha256 = "064dzij0qj0psnis7fcr3zklkkm8bncl448c9k1na1g7h46660mv"; 96083 + libraryHaskellDepends = [ base ]; 96084 + testHaskellDepends = [ base HUnit ]; 96085 + description = "Write more understandable Haskell"; 96086 + license = lib.licenses.mit; 96087 + hydraPlatforms = lib.platforms.none; 96088 + }) {}; 96089 + 96090 "flow-er" = callPackage 96091 ({ mkDerivation, base, doctest, flow, QuickCheck }: 96092 mkDerivation { ··· 96811 pname = "foldl"; 96812 version = "1.4.12"; 96813 sha256 = "0zf4yljh3s2ddxa7dhzdglmylj14kfldhkclc44g37zvjq6kcnag"; 96814 + revision = "1"; 96815 + editedCabalFile = "15d002khil6d4qjzm4hgfwnl502884jys9pqdm22jvdvsln84jjm"; 96816 libraryHaskellDepends = [ 96817 base bytestring comonad containers contravariant hashable primitive 96818 profunctors random semigroupoids text transformers ··· 96946 }: 96947 mkDerivation { 96948 pname = "folds"; 96949 version = "0.7.7"; 96950 sha256 = "1hggk92i61f3nxcjdxvgs3b8am3jypig09s9wqwrwzaclx0mk5sh"; 96951 configureFlags = [ "-f-test-hlint" ]; ··· 96956 ]; 96957 description = "Beautiful Folding"; 96958 license = lib.licenses.bsd3; 96959 }) {}; 96960 96961 "folds-common" = callPackage ··· 97905 pname = "fourmolu"; 97906 version = "0.4.0.0"; 97907 sha256 = "1mq0h6nsl7ssfwh6zqhyja7w212vn8msmlm5iwwimca279hzwywb"; 97908 + revision = "1"; 97909 + editedCabalFile = "03bwhqj547brmgk191gy3k9xayi6fqqk2f5sbz3ail1bk7b73xnq"; 97910 isLibrary = true; 97911 isExecutable = true; 97912 libraryHaskellDepends = [ ··· 97929 }) {}; 97930 97931 "fp-ieee" = callPackage 97932 + ({ mkDerivation, base, doctest, hspec, hspec-core, integer-gmp 97933 + , integer-logarithms, QuickCheck, random, tasty-bench 97934 }: 97935 mkDerivation { 97936 pname = "fp-ieee"; 97937 + version = "0.1.0.2"; 97938 + sha256 = "0zfrjqyi3pvfmsidq2vsfwqaah0ag6pkixlxicr43jmfyrhi4snl"; 97939 libraryHaskellDepends = [ base integer-gmp integer-logarithms ]; 97940 testHaskellDepends = [ 97941 + base doctest hspec hspec-core integer-logarithms QuickCheck random 97942 ]; 97943 + benchmarkHaskellDepends = [ base tasty-bench ]; 97944 description = "IEEE 754-2019 compliant operations"; 97945 license = lib.licenses.bsd3; 97946 }) {}; 97947 97948 "fpco-api" = callPackage ··· 98219 98220 "franz" = callPackage 98221 ({ mkDerivation, base, bytestring, cereal, concurrent-resource-map 98222 + , containers, cpu, deepseq, directory, exceptions, fast-builder 98223 + , filepath, fsnotify, hashable, mtl, network, optparse-applicative 98224 + , process, retry, sendfile, stm, stm-delay, temporary, text 98225 + , transformers, unboxed-ref, unordered-containers, vector 98226 }: 98227 mkDerivation { 98228 pname = "franz"; 98229 + version = "0.5"; 98230 + sha256 = "1fhh27sjv46yk2kqw6kgn1wn6m1acl8vp1j9r7ag3pd93y0w3d1s"; 98231 isLibrary = true; 98232 isExecutable = true; 98233 libraryHaskellDepends = [ 98234 base bytestring cereal concurrent-resource-map containers cpu 98235 + deepseq directory exceptions fast-builder filepath fsnotify 98236 + hashable mtl network process retry sendfile stm stm-delay temporary 98237 + text transformers unboxed-ref unordered-containers vector 98238 ]; 98239 executableHaskellDepends = [ 98240 base bytestring network optparse-applicative stm vector ··· 100600 license = lib.licenses.isc; 100601 }) {}; 100602 100603 + "futhark_0_20_7" = callPackage 100604 ({ mkDerivation, aeson, alex, ansi-terminal, array, base 100605 , base16-bytestring, binary, blaze-html, bmp, bytestring 100606 , bytestring-to-vector, cmark-gfm, containers, cryptohash-md5 ··· 100615 }: 100616 mkDerivation { 100617 pname = "futhark"; 100618 + version = "0.20.7"; 100619 + sha256 = "1j91gilrjyi0hd7fsh1pq687y4vdmk9kv0lwrwhq74rcczyyyrvj"; 100620 isLibrary = true; 100621 isExecutable = true; 100622 libraryHaskellDepends = [ ··· 100817 license = lib.licenses.mit; 100818 }) {}; 100819 100820 + "fuzzy-time_0_2_0_0" = callPackage 100821 + ({ mkDerivation, base, containers, deepseq, megaparsec, text, time 100822 + , validity, validity-time 100823 + }: 100824 + mkDerivation { 100825 + pname = "fuzzy-time"; 100826 + version = "0.2.0.0"; 100827 + sha256 = "0gf6bj0jrd8jh30n1cdjc31ynjpsrikwacp3mysa76kqb4mxl3xz"; 100828 + libraryHaskellDepends = [ 100829 + base containers deepseq megaparsec text time validity validity-time 100830 + ]; 100831 + license = lib.licenses.mit; 100832 + hydraPlatforms = lib.platforms.none; 100833 + }) {}; 100834 + 100835 "fuzzy-time-gen" = callPackage 100836 ({ mkDerivation, base, containers, criterion, fuzzy-time 100837 , genvalidity, genvalidity-criterion, genvalidity-hspec ··· 100840 }: 100841 mkDerivation { 100842 pname = "fuzzy-time-gen"; 100843 + version = "0.2.0.0"; 100844 + sha256 = "0lcs0kgm935rizvsy2p8v8g1kjsjishd9l7jzgl45vlwbs5g863l"; 100845 libraryHaskellDepends = [ 100846 base containers fuzzy-time genvalidity genvalidity-time megaparsec 100847 QuickCheck time ··· 100903 }: 100904 mkDerivation { 100905 pname = "fuzzyset"; 100906 version = "0.2.2"; 100907 sha256 = "1153xv53l6khw7yy36pfaf7pmmlwpg4ig7ywk4rxj375janlg1g8"; 100908 libraryHaskellDepends = [ ··· 100914 ]; 100915 description = "Fuzzy set for approximate string matching"; 100916 license = lib.licenses.bsd3; 100917 }) {}; 100918 100919 "fuzzytime" = callPackage ··· 101934 hydraPlatforms = lib.platforms.none; 101935 }) {}; 101936 101937 + "gemcap" = callPackage 101938 + ({ mkDerivation, base, bytestring, hspec, io-streams, network 101939 + , tcp-streams, text, tls, transformers, x509 101940 + }: 101941 + mkDerivation { 101942 + pname = "gemcap"; 101943 + version = "0.1.0"; 101944 + sha256 = "0173dhqdcfkkrlj3x3m0fml4rk3sfmiflwfp9bnpja7iq9br2vhf"; 101945 + libraryHaskellDepends = [ 101946 + base bytestring io-streams network tcp-streams text tls 101947 + transformers x509 101948 + ]; 101949 + testHaskellDepends = [ 101950 + base bytestring hspec io-streams network tcp-streams text tls 101951 + transformers x509 101952 + ]; 101953 + description = "a simple Gemini capsule (server)"; 101954 + license = lib.licenses.agpl3Plus; 101955 + }) {}; 101956 + 101957 "gemini-router" = callPackage 101958 ({ mkDerivation, base, gemini-server, HsOpenSSL, network-uri 101959 , transformers ··· 102687 license = lib.licenses.mit; 102688 }) {}; 102689 102690 + "generic-random_1_5_0_1" = callPackage 102691 ({ mkDerivation, base, deepseq, QuickCheck }: 102692 mkDerivation { 102693 pname = "generic-random"; 102694 + version = "1.5.0.1"; 102695 + sha256 = "02iczjf2xc4sxfi234nf6irfj5slvf3p5hpaxl8r5nc8hy052d6x"; 102696 libraryHaskellDepends = [ base QuickCheck ]; 102697 testHaskellDepends = [ base deepseq QuickCheck ]; 102698 description = "Generic random generators for QuickCheck"; ··· 103124 license = lib.licenses.mit; 103125 }) {}; 103126 103127 + "genvalidity_1_0_0_1" = callPackage 103128 + ({ mkDerivation, base, hspec, hspec-core, QuickCheck, random 103129 + , validity 103130 + }: 103131 + mkDerivation { 103132 + pname = "genvalidity"; 103133 + version = "1.0.0.1"; 103134 + sha256 = "1rkrw46mhb4cvvg69avmbvsmssg5aii9g2kb4xqa9488jf8wz3m0"; 103135 + libraryHaskellDepends = [ base QuickCheck random validity ]; 103136 + testHaskellDepends = [ base hspec hspec-core QuickCheck ]; 103137 + description = "Testing utilities for the validity library"; 103138 + license = lib.licenses.mit; 103139 + hydraPlatforms = lib.platforms.none; 103140 + }) {}; 103141 + 103142 "genvalidity-aeson" = callPackage 103143 ({ mkDerivation, aeson, base, genvalidity, genvalidity-hspec 103144 , genvalidity-scientific, genvalidity-text ··· 103161 license = lib.licenses.mit; 103162 }) {}; 103163 103164 + "genvalidity-aeson_1_0_0_0" = callPackage 103165 + ({ mkDerivation, aeson, base, criterion, deepseq, genvalidity 103166 + , genvalidity-criterion, genvalidity-hspec, genvalidity-scientific 103167 + , genvalidity-text, genvalidity-unordered-containers 103168 + , genvalidity-vector, hspec, QuickCheck, validity, validity-aeson 103169 + }: 103170 + mkDerivation { 103171 + pname = "genvalidity-aeson"; 103172 + version = "1.0.0.0"; 103173 + sha256 = "1k28vl7i2idv44962wspvhpqpfznj52ckd3g7h580894vghhwi89"; 103174 + libraryHaskellDepends = [ 103175 + aeson base genvalidity genvalidity-scientific genvalidity-text 103176 + genvalidity-unordered-containers genvalidity-vector QuickCheck 103177 + validity validity-aeson 103178 + ]; 103179 + testHaskellDepends = [ 103180 + aeson base deepseq genvalidity genvalidity-hspec hspec 103181 + ]; 103182 + benchmarkHaskellDepends = [ 103183 + aeson base criterion genvalidity-criterion 103184 + ]; 103185 + description = "GenValidity support for aeson"; 103186 + license = lib.licenses.mit; 103187 + hydraPlatforms = lib.platforms.none; 103188 + }) {}; 103189 + 103190 "genvalidity-bytestring" = callPackage 103191 ({ mkDerivation, base, bytestring, criterion, deepseq, genvalidity 103192 , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck ··· 103212 license = lib.licenses.mit; 103213 }) {}; 103214 103215 + "genvalidity-bytestring_1_0_0_0" = callPackage 103216 + ({ mkDerivation, base, bytestring, criterion, deepseq, genvalidity 103217 + , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck 103218 + , random, validity, validity-bytestring 103219 + }: 103220 + mkDerivation { 103221 + pname = "genvalidity-bytestring"; 103222 + version = "1.0.0.0"; 103223 + sha256 = "0bsi0y05pivyx14cvl7w46fgp1y5b53w2bk07q3vgzk079vfrcrg"; 103224 + libraryHaskellDepends = [ 103225 + base bytestring genvalidity QuickCheck random validity 103226 + validity-bytestring 103227 + ]; 103228 + testHaskellDepends = [ 103229 + base bytestring deepseq genvalidity genvalidity-hspec hspec 103230 + QuickCheck validity 103231 + ]; 103232 + benchmarkHaskellDepends = [ 103233 + base bytestring criterion genvalidity genvalidity-criterion 103234 + QuickCheck 103235 + ]; 103236 + description = "GenValidity support for ByteString"; 103237 + license = lib.licenses.mit; 103238 + hydraPlatforms = lib.platforms.none; 103239 + }) {}; 103240 + 103241 "genvalidity-containers" = callPackage 103242 ({ mkDerivation, base, containers, criterion, genvalidity 103243 , genvalidity-criterion, genvalidity-hspec, genvalidity-property ··· 103260 ]; 103261 description = "GenValidity support for containers"; 103262 license = lib.licenses.mit; 103263 + }) {}; 103264 + 103265 + "genvalidity-containers_1_0_0_0" = callPackage 103266 + ({ mkDerivation, base, containers, criterion, genvalidity 103267 + , genvalidity-criterion, genvalidity-hspec, genvalidity-property 103268 + , hspec, QuickCheck, validity, validity-containers 103269 + }: 103270 + mkDerivation { 103271 + pname = "genvalidity-containers"; 103272 + version = "1.0.0.0"; 103273 + sha256 = "146nnn1k82js6vkgx3ys5nl251jbryqg1lvb56fd3849az68px3k"; 103274 + libraryHaskellDepends = [ 103275 + base containers genvalidity QuickCheck validity validity-containers 103276 + ]; 103277 + testHaskellDepends = [ 103278 + base containers genvalidity genvalidity-hspec genvalidity-property 103279 + hspec QuickCheck validity validity-containers 103280 + ]; 103281 + benchmarkHaskellDepends = [ 103282 + base containers criterion genvalidity genvalidity-criterion 103283 + QuickCheck 103284 + ]; 103285 + description = "GenValidity support for containers"; 103286 + license = lib.licenses.mit; 103287 + hydraPlatforms = lib.platforms.none; 103288 }) {}; 103289 103290 "genvalidity-criterion" = callPackage ··· 103304 license = lib.licenses.mit; 103305 }) {}; 103306 103307 + "genvalidity-criterion_1_0_0_0" = callPackage 103308 + ({ mkDerivation, base, criterion, deepseq, genvalidity, QuickCheck 103309 + }: 103310 + mkDerivation { 103311 + pname = "genvalidity-criterion"; 103312 + version = "1.0.0.0"; 103313 + sha256 = "050i515v8wggamlnywmx93nlb8gqhnlf5qafsrn0gl5w8d82blc9"; 103314 + libraryHaskellDepends = [ 103315 + base criterion deepseq genvalidity QuickCheck 103316 + ]; 103317 + benchmarkHaskellDepends = [ 103318 + base criterion genvalidity QuickCheck 103319 + ]; 103320 + description = "Criterion benchmarks for generators"; 103321 + license = lib.licenses.mit; 103322 + hydraPlatforms = lib.platforms.none; 103323 + }) {}; 103324 + 103325 "genvalidity-hspec" = callPackage 103326 ({ mkDerivation, base, genvalidity, genvalidity-property, hspec 103327 , hspec-core, QuickCheck, transformers, validity ··· 103341 license = lib.licenses.mit; 103342 }) {}; 103343 103344 + "genvalidity-hspec_1_0_0_0" = callPackage 103345 + ({ mkDerivation, base, genvalidity, genvalidity-property, hspec 103346 + , hspec-core, QuickCheck, transformers, validity 103347 + }: 103348 + mkDerivation { 103349 + pname = "genvalidity-hspec"; 103350 + version = "1.0.0.0"; 103351 + sha256 = "1p00iphswnsaabcnjmvf4ahydpqg66zya4qfjb52bbz6cb7k06s7"; 103352 + libraryHaskellDepends = [ 103353 + base genvalidity genvalidity-property hspec hspec-core QuickCheck 103354 + transformers validity 103355 + ]; 103356 + testHaskellDepends = [ 103357 + base genvalidity hspec hspec-core QuickCheck 103358 + ]; 103359 + description = "Standard spec's for GenValidity instances"; 103360 + license = lib.licenses.mit; 103361 + hydraPlatforms = lib.platforms.none; 103362 + }) {}; 103363 + 103364 "genvalidity-hspec-aeson" = callPackage 103365 ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity 103366 , genvalidity-aeson, genvalidity-hspec, genvalidity-property ··· 103383 license = lib.licenses.mit; 103384 }) {}; 103385 103386 + "genvalidity-hspec-aeson_1_0_0_0" = callPackage 103387 + ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity 103388 + , genvalidity-aeson, genvalidity-hspec, genvalidity-property 103389 + , genvalidity-text, hspec, QuickCheck, text, validity 103390 + }: 103391 + mkDerivation { 103392 + pname = "genvalidity-hspec-aeson"; 103393 + version = "1.0.0.0"; 103394 + sha256 = "18ga4g62z0fwkxbr2390dbmhpxpzczgz923gq0vvhnvc34r1vjh6"; 103395 + libraryHaskellDepends = [ 103396 + aeson base bytestring deepseq genvalidity genvalidity-hspec hspec 103397 + QuickCheck 103398 + ]; 103399 + testHaskellDepends = [ 103400 + aeson base genvalidity genvalidity-aeson genvalidity-hspec 103401 + genvalidity-property genvalidity-text hspec QuickCheck text 103402 + validity 103403 + ]; 103404 + description = "Standard spec's for aeson-related instances"; 103405 + license = lib.licenses.mit; 103406 + hydraPlatforms = lib.platforms.none; 103407 + }) {}; 103408 + 103409 "genvalidity-hspec-binary" = callPackage 103410 ({ mkDerivation, base, binary, deepseq, genvalidity 103411 , genvalidity-hspec, genvalidity-property, hspec, QuickCheck ··· 103425 license = lib.licenses.mit; 103426 }) {}; 103427 103428 + "genvalidity-hspec-binary_1_0_0_0" = callPackage 103429 + ({ mkDerivation, base, binary, deepseq, genvalidity 103430 + , genvalidity-hspec, genvalidity-property, hspec, QuickCheck 103431 + , validity 103432 + }: 103433 + mkDerivation { 103434 + pname = "genvalidity-hspec-binary"; 103435 + version = "1.0.0.0"; 103436 + sha256 = "08avm7kdx6y90mmms5hdq4xryg5jdca6bqfhzy9wrkr79q2jv4vc"; 103437 + libraryHaskellDepends = [ 103438 + base binary deepseq genvalidity genvalidity-hspec hspec QuickCheck 103439 + ]; 103440 + testHaskellDepends = [ 103441 + base binary genvalidity genvalidity-property hspec validity 103442 + ]; 103443 + description = "Standard spec's for binary-related Instances"; 103444 + license = lib.licenses.mit; 103445 + hydraPlatforms = lib.platforms.none; 103446 + }) {}; 103447 + 103448 "genvalidity-hspec-cereal" = callPackage 103449 ({ mkDerivation, base, cereal, deepseq, genvalidity 103450 , genvalidity-hspec, genvalidity-property, hspec, QuickCheck ··· 103465 license = lib.licenses.mit; 103466 }) {}; 103467 103468 + "genvalidity-hspec-cereal_1_0_0_0" = callPackage 103469 + ({ mkDerivation, base, cereal, deepseq, genvalidity 103470 + , genvalidity-hspec, genvalidity-property, hspec, QuickCheck 103471 + , validity 103472 + }: 103473 + mkDerivation { 103474 + pname = "genvalidity-hspec-cereal"; 103475 + version = "1.0.0.0"; 103476 + sha256 = "1cj5jcgjyjf8ib7h8ldkjfwgdq4wzk7xkmxlmyyi37iscjpv32ni"; 103477 + libraryHaskellDepends = [ 103478 + base cereal deepseq genvalidity genvalidity-hspec hspec QuickCheck 103479 + ]; 103480 + testHaskellDepends = [ 103481 + base cereal genvalidity genvalidity-property hspec QuickCheck 103482 + validity 103483 + ]; 103484 + description = "Standard spec's for cereal-related instances"; 103485 + license = lib.licenses.mit; 103486 + hydraPlatforms = lib.platforms.none; 103487 + }) {}; 103488 + 103489 "genvalidity-hspec-hashable" = callPackage 103490 ({ mkDerivation, base, genvalidity, genvalidity-hspec 103491 , genvalidity-property, hashable, hspec, hspec-core, QuickCheck ··· 103507 license = lib.licenses.mit; 103508 }) {}; 103509 103510 + "genvalidity-hspec-hashable_1_0_0_0" = callPackage 103511 + ({ mkDerivation, base, genvalidity, genvalidity-hspec 103512 + , genvalidity-property, hashable, hspec, hspec-core, QuickCheck 103513 + , validity 103514 + }: 103515 + mkDerivation { 103516 + pname = "genvalidity-hspec-hashable"; 103517 + version = "1.0.0.0"; 103518 + sha256 = "14fg796iivlpp4gqsmma9zf0z9iqk524ydyqmza83qrjh8v2ff5v"; 103519 + libraryHaskellDepends = [ 103520 + base genvalidity genvalidity-hspec genvalidity-property hashable 103521 + hspec QuickCheck validity 103522 + ]; 103523 + testHaskellDepends = [ 103524 + base genvalidity genvalidity-hspec genvalidity-property hashable 103525 + hspec hspec-core QuickCheck validity 103526 + ]; 103527 + description = "Standard spec's for Hashable instances"; 103528 + license = lib.licenses.mit; 103529 + hydraPlatforms = lib.platforms.none; 103530 + }) {}; 103531 + 103532 "genvalidity-hspec-optics" = callPackage 103533 ({ mkDerivation, base, genvalidity, genvalidity-hspec 103534 , genvalidity-property, hspec, microlens, QuickCheck, validity ··· 103548 license = lib.licenses.mit; 103549 }) {}; 103550 103551 + "genvalidity-hspec-optics_1_0_0_0" = callPackage 103552 + ({ mkDerivation, base, genvalidity, genvalidity-hspec 103553 + , genvalidity-property, hspec, microlens, QuickCheck, validity 103554 + }: 103555 + mkDerivation { 103556 + pname = "genvalidity-hspec-optics"; 103557 + version = "1.0.0.0"; 103558 + sha256 = "1bhhhihk4r8q78l35dm4gm8kf5mjzpynawbcq9vzpq3ny9h7bxmr"; 103559 + libraryHaskellDepends = [ 103560 + base genvalidity genvalidity-hspec hspec microlens QuickCheck 103561 + ]; 103562 + testHaskellDepends = [ 103563 + base genvalidity genvalidity-hspec genvalidity-property hspec 103564 + microlens validity 103565 + ]; 103566 + description = "Standard spec's for lens"; 103567 + license = lib.licenses.mit; 103568 + hydraPlatforms = lib.platforms.none; 103569 + }) {}; 103570 + 103571 "genvalidity-hspec-persistent" = callPackage 103572 ({ mkDerivation, base, genvalidity, genvalidity-hspec 103573 , genvalidity-property, genvalidity-text, hspec, persistent ··· 103588 license = lib.licenses.mit; 103589 }) {}; 103590 103591 + "genvalidity-hspec-persistent_1_0_0_0" = callPackage 103592 + ({ mkDerivation, base, genvalidity, genvalidity-hspec 103593 + , genvalidity-property, genvalidity-text, hspec, persistent 103594 + , QuickCheck, text, validity 103595 + }: 103596 + mkDerivation { 103597 + pname = "genvalidity-hspec-persistent"; 103598 + version = "1.0.0.0"; 103599 + sha256 = "131k8yibypaqb4pbwrm0ql6h2ywqchlm2w0rzmax9ylzg71vkm0z"; 103600 + libraryHaskellDepends = [ 103601 + base genvalidity genvalidity-hspec hspec persistent QuickCheck text 103602 + ]; 103603 + testHaskellDepends = [ 103604 + base genvalidity genvalidity-hspec genvalidity-property 103605 + genvalidity-text hspec persistent QuickCheck text validity 103606 + ]; 103607 + description = "Standard spec's for persistent-related instances"; 103608 + license = lib.licenses.mit; 103609 + hydraPlatforms = lib.platforms.none; 103610 + }) {}; 103611 + 103612 "genvalidity-mergeful" = callPackage 103613 ({ mkDerivation, base, containers, criterion, genvalidity 103614 , genvalidity-containers, genvalidity-criterion, genvalidity-hspec ··· 103634 license = lib.licenses.mit; 103635 }) {}; 103636 103637 + "genvalidity-mergeful_0_3_0_0" = callPackage 103638 + ({ mkDerivation, base, containers, criterion, genvalidity 103639 + , genvalidity-containers, genvalidity-criterion, genvalidity-hspec 103640 + , genvalidity-hspec-aeson, genvalidity-time, genvalidity-uuid 103641 + , hspec, mergeful, mtl, pretty-show, QuickCheck, random, time, uuid 103642 + }: 103643 + mkDerivation { 103644 + pname = "genvalidity-mergeful"; 103645 + version = "0.3.0.0"; 103646 + sha256 = "0dd22kdlydhdns86awmmzbnr9bwrb84623zcyb5b9aaxmq75ifza"; 103647 + libraryHaskellDepends = [ 103648 + base containers genvalidity genvalidity-containers genvalidity-time 103649 + mergeful QuickCheck 103650 + ]; 103651 + testHaskellDepends = [ 103652 + base containers genvalidity-hspec genvalidity-hspec-aeson 103653 + genvalidity-uuid hspec mergeful mtl pretty-show QuickCheck random 103654 + time uuid 103655 + ]; 103656 + benchmarkHaskellDepends = [ 103657 + base criterion genvalidity-criterion mergeful 103658 + ]; 103659 + license = lib.licenses.mit; 103660 + hydraPlatforms = lib.platforms.none; 103661 + }) {}; 103662 + 103663 "genvalidity-mergeless" = callPackage 103664 ({ mkDerivation, base, containers, criterion, genvalidity 103665 , genvalidity-containers, genvalidity-criterion, genvalidity-hspec ··· 103686 license = lib.licenses.mit; 103687 }) {}; 103688 103689 + "genvalidity-mergeless_0_3_0_0" = callPackage 103690 + ({ mkDerivation, base, containers, criterion, genvalidity 103691 + , genvalidity-containers, genvalidity-criterion, genvalidity-hspec 103692 + , genvalidity-hspec-aeson, genvalidity-time, genvalidity-uuid 103693 + , hspec, mergeless, mtl, pretty-show, QuickCheck, random, time 103694 + , uuid 103695 + }: 103696 + mkDerivation { 103697 + pname = "genvalidity-mergeless"; 103698 + version = "0.3.0.0"; 103699 + sha256 = "1glz1w7mpbwpn800khqd2jzigs19k6y0bxx7cid2zvzwrnhz6prl"; 103700 + libraryHaskellDepends = [ 103701 + base containers genvalidity genvalidity-containers genvalidity-time 103702 + mergeless QuickCheck 103703 + ]; 103704 + testHaskellDepends = [ 103705 + base containers genvalidity-hspec genvalidity-hspec-aeson 103706 + genvalidity-uuid hspec mergeless mtl pretty-show QuickCheck random 103707 + time uuid 103708 + ]; 103709 + benchmarkHaskellDepends = [ 103710 + base criterion genvalidity-criterion mergeless 103711 + ]; 103712 + license = lib.licenses.mit; 103713 + hydraPlatforms = lib.platforms.none; 103714 + }) {}; 103715 + 103716 "genvalidity-path" = callPackage 103717 ({ mkDerivation, base, criterion, genvalidity 103718 , genvalidity-criterion, genvalidity-hspec, hspec, path, QuickCheck ··· 103733 license = lib.licenses.mit; 103734 }) {}; 103735 103736 + "genvalidity-path_1_0_0_0" = callPackage 103737 + ({ mkDerivation, base, criterion, genvalidity 103738 + , genvalidity-criterion, genvalidity-hspec, hspec, path, QuickCheck 103739 + , validity-path 103740 + }: 103741 + mkDerivation { 103742 + pname = "genvalidity-path"; 103743 + version = "1.0.0.0"; 103744 + sha256 = "172gss10xl274s95l3ywgra32ldnl2a4gicc1xgi5q7v5zmj5gaa"; 103745 + libraryHaskellDepends = [ 103746 + base genvalidity path QuickCheck validity-path 103747 + ]; 103748 + testHaskellDepends = [ base genvalidity-hspec hspec path ]; 103749 + benchmarkHaskellDepends = [ 103750 + base criterion genvalidity genvalidity-criterion path QuickCheck 103751 + ]; 103752 + description = "GenValidity support for Path"; 103753 + license = lib.licenses.mit; 103754 + hydraPlatforms = lib.platforms.none; 103755 + }) {}; 103756 + 103757 "genvalidity-persistent" = callPackage 103758 ({ mkDerivation, base, containers, criterion, deepseq, genvalidity 103759 , genvalidity-containers, genvalidity-criterion, genvalidity-hspec ··· 103782 broken = true; 103783 }) {}; 103784 103785 + "genvalidity-persistent_1_0_0_0" = callPackage 103786 + ({ mkDerivation, base, containers, criterion, deepseq, genvalidity 103787 + , genvalidity-containers, genvalidity-criterion, genvalidity-hspec 103788 + , hspec, persistent, persistent-template, QuickCheck 103789 + , validity-containers, validity-persistent 103790 + }: 103791 + mkDerivation { 103792 + pname = "genvalidity-persistent"; 103793 + version = "1.0.0.0"; 103794 + sha256 = "0a03vgsi5px45838q6a4b4yckf7djdy3xwd4g85b2ik3psv9vgl9"; 103795 + libraryHaskellDepends = [ 103796 + base containers genvalidity genvalidity-containers persistent 103797 + QuickCheck validity-containers validity-persistent 103798 + ]; 103799 + testHaskellDepends = [ 103800 + base genvalidity genvalidity-hspec hspec persistent 103801 + persistent-template QuickCheck validity-containers 103802 + ]; 103803 + benchmarkHaskellDepends = [ 103804 + base criterion deepseq genvalidity genvalidity-criterion persistent 103805 + persistent-template 103806 + ]; 103807 + description = "GenValidity support for Persistent"; 103808 + license = lib.licenses.mit; 103809 + hydraPlatforms = lib.platforms.none; 103810 + broken = true; 103811 + }) {}; 103812 + 103813 "genvalidity-property" = callPackage 103814 ({ mkDerivation, base, directory, doctest, filepath, genvalidity 103815 , hspec, pretty-show, QuickCheck, validity ··· 103826 license = lib.licenses.mit; 103827 }) {}; 103828 103829 + "genvalidity-property_1_0_0_0" = callPackage 103830 + ({ mkDerivation, base, genvalidity, hspec, pretty-show, QuickCheck 103831 + , validity 103832 + }: 103833 + mkDerivation { 103834 + pname = "genvalidity-property"; 103835 + version = "1.0.0.0"; 103836 + sha256 = "1nxcdq04rkckrb3v49pjx378n5s828k24x7hix6manyxqmd3hplw"; 103837 + libraryHaskellDepends = [ 103838 + base genvalidity hspec pretty-show QuickCheck validity 103839 + ]; 103840 + testHaskellDepends = [ base genvalidity hspec QuickCheck ]; 103841 + description = "Standard properties for functions on `Validity` types"; 103842 + license = lib.licenses.mit; 103843 + hydraPlatforms = lib.platforms.none; 103844 + }) {}; 103845 + 103846 "genvalidity-scientific" = callPackage 103847 ({ mkDerivation, base, genvalidity, genvalidity-hspec, hspec 103848 , QuickCheck, scientific, validity, validity-scientific ··· 103861 license = lib.licenses.mit; 103862 }) {}; 103863 103864 + "genvalidity-scientific_1_0_0_0" = callPackage 103865 + ({ mkDerivation, base, genvalidity, genvalidity-hspec, hspec 103866 + , QuickCheck, scientific, validity, validity-scientific 103867 + }: 103868 + mkDerivation { 103869 + pname = "genvalidity-scientific"; 103870 + version = "1.0.0.0"; 103871 + sha256 = "0xi1a1jsby1dqv50lmpp98x2y5j9vaf3sl38spv5bnafyp1i6pmq"; 103872 + libraryHaskellDepends = [ 103873 + base genvalidity QuickCheck scientific validity validity-scientific 103874 + ]; 103875 + testHaskellDepends = [ 103876 + base genvalidity genvalidity-hspec hspec QuickCheck scientific 103877 + ]; 103878 + description = "GenValidity support for Scientific"; 103879 + license = lib.licenses.mit; 103880 + hydraPlatforms = lib.platforms.none; 103881 + }) {}; 103882 + 103883 "genvalidity-sydtest" = callPackage 103884 ({ mkDerivation, base, genvalidity, pretty-show, QuickCheck 103885 , sydtest, sydtest-discover, validity ··· 103897 license = lib.licenses.mit; 103898 }) {}; 103899 103900 + "genvalidity-sydtest_1_0_0_0" = callPackage 103901 + ({ mkDerivation, base, genvalidity, pretty-show, QuickCheck 103902 + , sydtest, sydtest-discover, validity 103903 + }: 103904 + mkDerivation { 103905 + pname = "genvalidity-sydtest"; 103906 + version = "1.0.0.0"; 103907 + sha256 = "11v66s8srcfigb4jkvz7nm0ynczg8mdslw4vn98qyv2j85sp6l45"; 103908 + libraryHaskellDepends = [ 103909 + base genvalidity pretty-show QuickCheck sydtest validity 103910 + ]; 103911 + testHaskellDepends = [ base genvalidity QuickCheck sydtest ]; 103912 + testToolDepends = [ sydtest-discover ]; 103913 + description = "Standard properties for functions on `Validity` types for the sydtest framework"; 103914 + license = lib.licenses.mit; 103915 + hydraPlatforms = lib.platforms.none; 103916 + }) {}; 103917 + 103918 "genvalidity-sydtest-aeson" = callPackage 103919 ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity 103920 , genvalidity-aeson, genvalidity-sydtest, genvalidity-text ··· 103937 license = lib.licenses.mit; 103938 }) {}; 103939 103940 + "genvalidity-sydtest-aeson_1_0_0_0" = callPackage 103941 + ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity 103942 + , genvalidity-aeson, genvalidity-sydtest, genvalidity-text 103943 + , QuickCheck, sydtest, sydtest-discover, text, validity 103944 + }: 103945 + mkDerivation { 103946 + pname = "genvalidity-sydtest-aeson"; 103947 + version = "1.0.0.0"; 103948 + sha256 = "1n8n07h5v7gwpfrfd8f4jir3d2331licmv78ih0i0qxwr87grv02"; 103949 + libraryHaskellDepends = [ 103950 + aeson base bytestring deepseq genvalidity genvalidity-sydtest 103951 + QuickCheck sydtest 103952 + ]; 103953 + testHaskellDepends = [ 103954 + aeson base genvalidity genvalidity-aeson genvalidity-sydtest 103955 + genvalidity-text QuickCheck sydtest text validity 103956 + ]; 103957 + testToolDepends = [ sydtest-discover ]; 103958 + description = "Standard spec's for aeson-related instances in sydtest"; 103959 + license = lib.licenses.mit; 103960 + hydraPlatforms = lib.platforms.none; 103961 + }) {}; 103962 + 103963 "genvalidity-sydtest-hashable" = callPackage 103964 ({ mkDerivation, base, genvalidity, genvalidity-sydtest, hashable 103965 , QuickCheck, sydtest, sydtest-discover, validity ··· 103981 license = lib.licenses.mit; 103982 }) {}; 103983 103984 + "genvalidity-sydtest-hashable_1_0_0_0" = callPackage 103985 + ({ mkDerivation, base, genvalidity, genvalidity-sydtest, hashable 103986 + , QuickCheck, sydtest, sydtest-discover, validity 103987 + }: 103988 + mkDerivation { 103989 + pname = "genvalidity-sydtest-hashable"; 103990 + version = "1.0.0.0"; 103991 + sha256 = "05482ynm19k9wj0hvvlfimvdng1wkl35409lp1r6vj02b7ml4i2z"; 103992 + libraryHaskellDepends = [ 103993 + base genvalidity genvalidity-sydtest hashable QuickCheck sydtest 103994 + validity 103995 + ]; 103996 + testHaskellDepends = [ 103997 + base genvalidity genvalidity-sydtest hashable QuickCheck sydtest 103998 + validity 103999 + ]; 104000 + testToolDepends = [ sydtest-discover ]; 104001 + description = "Standard spec's for Hashable instances for sydtest"; 104002 + license = lib.licenses.mit; 104003 + hydraPlatforms = lib.platforms.none; 104004 + }) {}; 104005 + 104006 "genvalidity-sydtest-lens" = callPackage 104007 ({ mkDerivation, base, genvalidity, genvalidity-sydtest, microlens 104008 , QuickCheck, sydtest, sydtest-discover, validity ··· 104022 license = lib.licenses.mit; 104023 }) {}; 104024 104025 + "genvalidity-sydtest-lens_1_0_0_0" = callPackage 104026 + ({ mkDerivation, base, genvalidity, genvalidity-sydtest, microlens 104027 + , QuickCheck, sydtest, sydtest-discover, validity 104028 + }: 104029 + mkDerivation { 104030 + pname = "genvalidity-sydtest-lens"; 104031 + version = "1.0.0.0"; 104032 + sha256 = "0yvgbyhbf8mbqy6hil8g1zk1l0zgjnrw3y3cydnqvvbvka5h7jm9"; 104033 + libraryHaskellDepends = [ 104034 + base genvalidity genvalidity-sydtest microlens QuickCheck sydtest 104035 + ]; 104036 + testHaskellDepends = [ 104037 + base genvalidity genvalidity-sydtest microlens sydtest validity 104038 + ]; 104039 + testToolDepends = [ sydtest-discover ]; 104040 + description = "Standard spec's for lens for sydtest"; 104041 + license = lib.licenses.mit; 104042 + hydraPlatforms = lib.platforms.none; 104043 + }) {}; 104044 + 104045 "genvalidity-sydtest-persistent" = callPackage 104046 ({ mkDerivation, base, genvalidity, genvalidity-sydtest 104047 , genvalidity-text, persistent, QuickCheck, sydtest ··· 104064 license = lib.licenses.mit; 104065 }) {}; 104066 104067 + "genvalidity-sydtest-persistent_1_0_0_0" = callPackage 104068 + ({ mkDerivation, base, genvalidity, genvalidity-sydtest 104069 + , genvalidity-text, persistent, QuickCheck, sydtest 104070 + , sydtest-discover, text, validity 104071 + }: 104072 + mkDerivation { 104073 + pname = "genvalidity-sydtest-persistent"; 104074 + version = "1.0.0.0"; 104075 + sha256 = "1njjwl9x7kirvzxpqpdw5gzfba1ixxx8z3ji3yn3fvhm8rkswfyp"; 104076 + libraryHaskellDepends = [ 104077 + base genvalidity genvalidity-sydtest persistent QuickCheck sydtest 104078 + text 104079 + ]; 104080 + testHaskellDepends = [ 104081 + base genvalidity genvalidity-sydtest genvalidity-text persistent 104082 + QuickCheck sydtest text validity 104083 + ]; 104084 + testToolDepends = [ sydtest-discover ]; 104085 + description = "Standard spec's for persistent-related instances for sydtest"; 104086 + license = lib.licenses.mit; 104087 + hydraPlatforms = lib.platforms.none; 104088 + }) {}; 104089 + 104090 "genvalidity-text" = callPackage 104091 ({ mkDerivation, array, base, criterion, genvalidity 104092 , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck ··· 104110 license = lib.licenses.mit; 104111 }) {}; 104112 104113 + "genvalidity-text_1_0_0_0" = callPackage 104114 + ({ mkDerivation, array, base, criterion, genvalidity 104115 + , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck 104116 + , random, text, validity, validity-text 104117 + }: 104118 + mkDerivation { 104119 + pname = "genvalidity-text"; 104120 + version = "1.0.0.0"; 104121 + sha256 = "1gr5wqp2rph212hz60kk94wp14p7pwrhay8vlg2b8g40ixai8qw6"; 104122 + libraryHaskellDepends = [ 104123 + array base genvalidity QuickCheck random text validity 104124 + validity-text 104125 + ]; 104126 + testHaskellDepends = [ 104127 + base genvalidity genvalidity-hspec hspec QuickCheck text 104128 + ]; 104129 + benchmarkHaskellDepends = [ 104130 + base criterion genvalidity genvalidity-criterion QuickCheck text 104131 + ]; 104132 + description = "GenValidity support for Text"; 104133 + license = lib.licenses.mit; 104134 + hydraPlatforms = lib.platforms.none; 104135 + }) {}; 104136 + 104137 "genvalidity-time" = callPackage 104138 ({ mkDerivation, base, criterion, genvalidity 104139 , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck, time ··· 104154 license = lib.licenses.mit; 104155 }) {}; 104156 104157 + "genvalidity-time_1_0_0_0" = callPackage 104158 + ({ mkDerivation, base, criterion, genvalidity 104159 + , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck, time 104160 + , validity-time 104161 + }: 104162 + mkDerivation { 104163 + pname = "genvalidity-time"; 104164 + version = "1.0.0.0"; 104165 + sha256 = "15xj7x915524h0hi9b6c7y6imwkv3g7b10cr7wx8yaysh5d1cx7r"; 104166 + libraryHaskellDepends = [ 104167 + base genvalidity QuickCheck time validity-time 104168 + ]; 104169 + testHaskellDepends = [ base genvalidity-hspec hspec time ]; 104170 + benchmarkHaskellDepends = [ 104171 + base criterion genvalidity-criterion time 104172 + ]; 104173 + description = "GenValidity support for time"; 104174 + license = lib.licenses.mit; 104175 + hydraPlatforms = lib.platforms.none; 104176 + }) {}; 104177 + 104178 "genvalidity-typed-uuid" = callPackage 104179 ({ mkDerivation, base, criterion, genvalidity 104180 , genvalidity-criterion, genvalidity-hspec, genvalidity-hspec-aeson ··· 104199 license = lib.licenses.mit; 104200 }) {}; 104201 104202 + "genvalidity-typed-uuid_0_1_0_1" = callPackage 104203 + ({ mkDerivation, base, criterion, genvalidity 104204 + , genvalidity-criterion, genvalidity-hspec, genvalidity-hspec-aeson 104205 + , genvalidity-uuid, hspec, QuickCheck, typed-uuid 104206 + }: 104207 + mkDerivation { 104208 + pname = "genvalidity-typed-uuid"; 104209 + version = "0.1.0.1"; 104210 + sha256 = "18lfvw9slpgpng80mcj7mh7pfpl4xdyn9cfydafb7yq5lyr1vkym"; 104211 + libraryHaskellDepends = [ 104212 + base genvalidity genvalidity-uuid QuickCheck typed-uuid 104213 + ]; 104214 + testHaskellDepends = [ 104215 + base genvalidity genvalidity-hspec genvalidity-hspec-aeson 104216 + genvalidity-uuid hspec QuickCheck typed-uuid 104217 + ]; 104218 + benchmarkHaskellDepends = [ 104219 + base criterion genvalidity genvalidity-criterion genvalidity-uuid 104220 + QuickCheck typed-uuid 104221 + ]; 104222 + description = "Generators for Phantom-Typed version of UUID"; 104223 + license = lib.licenses.mit; 104224 + hydraPlatforms = lib.platforms.none; 104225 + }) {}; 104226 + 104227 "genvalidity-unordered-containers" = callPackage 104228 ({ mkDerivation, base, genvalidity, genvalidity-hspec, hashable 104229 , hspec, QuickCheck, unordered-containers, validity ··· 104245 license = lib.licenses.mit; 104246 }) {}; 104247 104248 + "genvalidity-unordered-containers_1_0_0_0" = callPackage 104249 + ({ mkDerivation, base, genvalidity, genvalidity-hspec, hashable 104250 + , hspec, QuickCheck, unordered-containers, validity 104251 + , validity-unordered-containers 104252 + }: 104253 + mkDerivation { 104254 + pname = "genvalidity-unordered-containers"; 104255 + version = "1.0.0.0"; 104256 + sha256 = "1sd67x2kw7l0kbsaa67x3an94sv1hvnkbb8r42v36cc5jjaw29dk"; 104257 + libraryHaskellDepends = [ 104258 + base genvalidity hashable QuickCheck unordered-containers validity 104259 + validity-unordered-containers 104260 + ]; 104261 + testHaskellDepends = [ 104262 + base genvalidity genvalidity-hspec hspec unordered-containers 104263 + validity 104264 + ]; 104265 + description = "GenValidity support for unordered-containers"; 104266 + license = lib.licenses.mit; 104267 + hydraPlatforms = lib.platforms.none; 104268 + }) {}; 104269 + 104270 "genvalidity-uuid" = callPackage 104271 ({ mkDerivation, base, criterion, genvalidity 104272 , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck, uuid ··· 104289 license = lib.licenses.mit; 104290 }) {}; 104291 104292 + "genvalidity-uuid_1_0_0_0" = callPackage 104293 + ({ mkDerivation, base, criterion, genvalidity 104294 + , genvalidity-criterion, genvalidity-hspec, hspec, QuickCheck, uuid 104295 + , validity, validity-uuid 104296 + }: 104297 + mkDerivation { 104298 + pname = "genvalidity-uuid"; 104299 + version = "1.0.0.0"; 104300 + sha256 = "1w53ziz3zbm4dv64gr60md5riis28bi3lrznzsrjyvd6nngxx460"; 104301 + libraryHaskellDepends = [ 104302 + base genvalidity QuickCheck uuid validity validity-uuid 104303 + ]; 104304 + testHaskellDepends = [ 104305 + base genvalidity genvalidity-hspec hspec QuickCheck uuid 104306 + ]; 104307 + benchmarkHaskellDepends = [ 104308 + base criterion genvalidity genvalidity-criterion QuickCheck uuid 104309 + ]; 104310 + description = "GenValidity support for UUID"; 104311 + license = lib.licenses.mit; 104312 + hydraPlatforms = lib.platforms.none; 104313 + }) {}; 104314 + 104315 "genvalidity-vector" = callPackage 104316 ({ mkDerivation, base, genvalidity, genvalidity-hspec, hspec 104317 , QuickCheck, validity, validity-vector, vector ··· 104328 ]; 104329 description = "GenValidity support for vector"; 104330 license = lib.licenses.mit; 104331 + }) {}; 104332 + 104333 + "genvalidity-vector_1_0_0_0" = callPackage 104334 + ({ mkDerivation, base, genvalidity, genvalidity-hspec, hspec 104335 + , QuickCheck, validity, validity-vector, vector 104336 + }: 104337 + mkDerivation { 104338 + pname = "genvalidity-vector"; 104339 + version = "1.0.0.0"; 104340 + sha256 = "1l2zjbfjg05xxxgn359zfj93yx26zcz9xlayw2jf9brwv8wx23gy"; 104341 + libraryHaskellDepends = [ 104342 + base genvalidity QuickCheck validity validity-vector vector 104343 + ]; 104344 + testHaskellDepends = [ 104345 + base genvalidity genvalidity-hspec hspec vector 104346 + ]; 104347 + description = "GenValidity support for vector"; 104348 + license = lib.licenses.mit; 104349 + hydraPlatforms = lib.platforms.none; 104350 }) {}; 104351 104352 "geo-resolver" = callPackage ··· 105230 license = lib.licenses.bsd3; 105231 }) {}; 105232 105233 + "ghc-events_0_17_0_1" = callPackage 105234 + ({ mkDerivation, array, base, binary, bytestring, containers, text 105235 + , vector 105236 + }: 105237 + mkDerivation { 105238 + pname = "ghc-events"; 105239 + version = "0.17.0.1"; 105240 + sha256 = "1jbfl8wprbrc1pwiw2dv70add9pssqrfllhn1zgic1vks15q37sr"; 105241 + isLibrary = true; 105242 + isExecutable = true; 105243 + libraryHaskellDepends = [ 105244 + array base binary bytestring containers text vector 105245 + ]; 105246 + executableHaskellDepends = [ base containers ]; 105247 + testHaskellDepends = [ base ]; 105248 + description = "Library and tool for parsing .eventlog files from GHC"; 105249 + license = lib.licenses.bsd3; 105250 + hydraPlatforms = lib.platforms.none; 105251 + }) {}; 105252 + 105253 "ghc-events-analyze" = callPackage 105254 ({ mkDerivation, base, blaze-svg, bytestring, containers 105255 , diagrams-lib, diagrams-svg, filepath, ghc-events, hashable, lens ··· 105323 license = lib.licenses.bsd3; 105324 }) {}; 105325 105326 + "ghc-exactprint_1_3_0" = callPackage 105327 ({ mkDerivation }: 105328 mkDerivation { 105329 pname = "ghc-exactprint"; 105330 + version = "1.3.0"; 105331 + sha256 = "012ka8qxc340sijbn6sgwdpzdkk07kpbs6i8b71kwnpk5k5ahqdl"; 105332 isLibrary = true; 105333 isExecutable = true; 105334 description = "ExactPrint for GHC"; ··· 105380 }: 105381 mkDerivation { 105382 pname = "ghc-heap-view"; 105383 + version = "0.6.3"; 105384 + sha256 = "1pwla6985y7kh98rpzl1wrcqcn6w47qaaviyd9vcpkwhgvv62zij"; 105385 enableSeparateDataOutput = true; 105386 setupHaskellDepends = [ base Cabal filepath ]; 105387 libraryHaskellDepends = [ ··· 106123 pname = "ghc-tags"; 106124 version = "1.3"; 106125 sha256 = "1fshj5zdnhr879c9q48mb89f1fidc2skgmgi385sa5r8wxn1ili0"; 106126 + revision = "1"; 106127 + editedCabalFile = "000haj96zlg110hxi1hi9vpcyg8w4xkm24d1xbcccn71grvhig5i"; 106128 isLibrary = false; 106129 isExecutable = true; 106130 executableHaskellDepends = [ ··· 106620 }: 106621 mkDerivation { 106622 pname = "ghcide"; 106623 + version = "1.5.0.1"; 106624 + sha256 = "0z6fq9p6wikcgacnqg8brq0bkphd14h7g5absw53ya047vgp02gc"; 106625 isLibrary = true; 106626 isExecutable = true; 106627 libraryHaskellDepends = [ ··· 107159 }: 107160 mkDerivation { 107161 pname = "gi-cairo-connector"; 107162 + version = "0.1.1"; 107163 + sha256 = "0jkca1x0dlyfwyywn6gmsnxhyad3j7vfwa0c4hpvx8k8m350dn3c"; 107164 libraryHaskellDepends = [ 107165 base gi-cairo gi-cairo-render haskell-gi-base mtl 107166 ]; ··· 107174 }: 107175 mkDerivation { 107176 pname = "gi-cairo-render"; 107177 + version = "0.1.1"; 107178 + sha256 = "09gxykx633xvwcqx1cjl9kj2748jdq49ayy6z5p3hz7bxqlna952"; 107179 libraryHaskellDepends = [ 107180 array base bytestring haskell-gi-base mtl text utf8-string 107181 ]; ··· 108135 }: 108136 mkDerivation { 108137 pname = "gi-gtk-hs"; 108138 version = "0.3.11"; 108139 sha256 = "0scbipy7086pv1xc57vmq48wcx3p7wbznwjcn99dqw4gf9yrqwwz"; 108140 libraryHaskellDepends = [ ··· 108143 ]; 108144 description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; 108145 license = lib.licenses.lgpl21Only; 108146 }) {}; 108147 108148 "gi-gtk-layer-shell" = callPackage ··· 109412 }: 109413 mkDerivation { 109414 pname = "git-annex"; 109415 + version = "8.20211123"; 109416 + sha256 = "0i9dhh601axv0b1i56yzn6jnfp160z530fp9pd557kpq4nbvg5kl"; 109417 configureFlags = [ 109418 "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" 109419 "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" ··· 110089 pname = "github-rest"; 110090 version = "1.1.1"; 110091 sha256 = "1wf4gs3324h4pfal5qcpb65lfpm4kpmxmv4fiv6asrvhas9cwglm"; 110092 + revision = "1"; 110093 + editedCabalFile = "0xk5xkl4zcymcms6fybngkj9xj6pwi01vz4yklpjs21f9iyccljv"; 110094 libraryHaskellDepends = [ 110095 aeson base bytestring http-client http-client-tls http-types jwt 110096 mtl scientific text time transformers unliftio unliftio-core ··· 114798 license = lib.licenses.bsd3; 114799 }) {}; 114800 114801 + "gothic_0_1_8" = callPackage 114802 + ({ mkDerivation, aeson, base, binary, bytestring, connection 114803 + , exceptions, hashable, http-client, http-client-tls, http-conduit 114804 + , http-types, lens, lens-aeson, scientific, text, unix 114805 + , unordered-containers, vector 114806 + }: 114807 + mkDerivation { 114808 + pname = "gothic"; 114809 + version = "0.1.8"; 114810 + sha256 = "1gicw2g86xz68a8qvj0p2nxw42rwibr0qqi53nily5yvlc40v4qd"; 114811 + libraryHaskellDepends = [ 114812 + aeson base binary bytestring connection exceptions hashable 114813 + http-client http-client-tls http-conduit http-types lens lens-aeson 114814 + scientific text unix unordered-containers vector 114815 + ]; 114816 + description = "A Haskell Vault KVv2 secret engine client"; 114817 + license = lib.licenses.bsd3; 114818 + hydraPlatforms = lib.platforms.none; 114819 + }) {}; 114820 + 114821 "gotta-go-fast" = callPackage 114822 ({ mkDerivation, base, brick, cmdargs, directory, file-embed 114823 , random, split, text, time, vty, word-wrap ··· 118101 pname = "hOpenPGP"; 118102 version = "2.9.5"; 118103 sha256 = "1wzvlk7my7a8rwmsw1glw2dlph3b2hwyz2jkcjr0hd1jj8ywksnx"; 118104 + revision = "1"; 118105 + editedCabalFile = "0zislyrgjdnxzrk8hnlby19cb7v14rcr1xk9jj6hpi1b7vrks8q9"; 118106 libraryHaskellDepends = [ 118107 aeson asn1-encoding attoparsec base base16-bytestring bifunctors 118108 binary binary-conduit bytestring bz2 conduit conduit-extra ··· 118133 ]; 118134 description = "native Haskell implementation of OpenPGP (RFC4880)"; 118135 license = lib.licenses.mit; 118136 + }) {}; 118137 + 118138 + "hOpenPGP_2_9_7" = callPackage 118139 + ({ mkDerivation, aeson, asn1-encoding, attoparsec, base 118140 + , base16-bytestring, bifunctors, binary, binary-conduit, bytestring 118141 + , bz2, conduit, conduit-extra, containers, criterion 118142 + , crypto-cipher-types, cryptonite, errors, hashable 118143 + , incremental-parser, ixset-typed, lens, memory, monad-loops 118144 + , nettle, network-uri, openpgp-asciiarmor, prettyprinter 118145 + , QuickCheck, quickcheck-instances, resourcet, split, tasty 118146 + , tasty-hunit, tasty-quickcheck, text, time, time-locale-compat 118147 + , transformers, unliftio-core, unordered-containers, zlib 118148 + }: 118149 + mkDerivation { 118150 + pname = "hOpenPGP"; 118151 + version = "2.9.7"; 118152 + sha256 = "1fix387wi8fqdav4zzczc3dyzcwrnb4zvpq72prs5cs7sc609w3z"; 118153 + libraryHaskellDepends = [ 118154 + aeson asn1-encoding attoparsec base base16-bytestring bifunctors 118155 + binary binary-conduit bytestring bz2 conduit conduit-extra 118156 + containers crypto-cipher-types cryptonite errors hashable 118157 + incremental-parser ixset-typed lens memory monad-loops nettle 118158 + network-uri openpgp-asciiarmor prettyprinter resourcet split text 118159 + time time-locale-compat transformers unliftio-core 118160 + unordered-containers zlib 118161 + ]; 118162 + testHaskellDepends = [ 118163 + aeson attoparsec base base16-bytestring bifunctors binary 118164 + binary-conduit bytestring bz2 conduit conduit-extra containers 118165 + crypto-cipher-types cryptonite errors hashable incremental-parser 118166 + ixset-typed lens memory monad-loops nettle network-uri 118167 + prettyprinter QuickCheck quickcheck-instances resourcet split tasty 118168 + tasty-hunit tasty-quickcheck text time time-locale-compat 118169 + transformers unliftio-core unordered-containers zlib 118170 + ]; 118171 + benchmarkHaskellDepends = [ 118172 + aeson attoparsec base base16-bytestring bifunctors binary 118173 + binary-conduit bytestring bz2 conduit conduit-extra containers 118174 + criterion crypto-cipher-types cryptonite errors hashable 118175 + incremental-parser ixset-typed lens memory monad-loops nettle 118176 + network-uri prettyprinter resourcet split text time 118177 + time-locale-compat transformers unliftio-core unordered-containers 118178 + zlib 118179 + ]; 118180 + description = "native Haskell implementation of OpenPGP (RFC4880)"; 118181 + license = lib.licenses.mit; 118182 + hydraPlatforms = lib.platforms.none; 118183 }) {}; 118184 118185 "hPDB" = callPackage ··· 122795 license = lib.licenses.bsd3; 122796 }) {}; 122797 122798 + "hashable_1_4_0_1" = callPackage 122799 ({ mkDerivation, base, base-orphans, bytestring, containers 122800 , deepseq, ghc-prim, HUnit, integer-gmp, QuickCheck, random 122801 , test-framework, test-framework-hunit, test-framework-quickcheck2 ··· 122803 }: 122804 mkDerivation { 122805 pname = "hashable"; 122806 + version = "1.4.0.1"; 122807 + sha256 = "04v61w87hvm6lg9a7p5mz177iab3rvb86pzcclcdw0w314dsxpaw"; 122808 libraryHaskellDepends = [ 122809 base base-orphans bytestring containers deepseq ghc-prim 122810 integer-gmp text ··· 123127 license = lib.licenses.bsd3; 123128 }) {}; 123129 123130 + "hashtables_1_3" = callPackage 123131 + ({ mkDerivation, base, ghc-prim, hashable, HUnit, mwc-random 123132 + , primitive, QuickCheck, test-framework, test-framework-hunit 123133 + , test-framework-quickcheck2, vector 123134 + }: 123135 + mkDerivation { 123136 + pname = "hashtables"; 123137 + version = "1.3"; 123138 + sha256 = "1lqdz4hp6lrzi37f6d2448dmk8jpv56igv5h0kcbnbl42dnmly5g"; 123139 + libraryHaskellDepends = [ 123140 + base ghc-prim hashable primitive vector 123141 + ]; 123142 + testHaskellDepends = [ 123143 + base ghc-prim hashable HUnit mwc-random primitive QuickCheck 123144 + test-framework test-framework-hunit test-framework-quickcheck2 123145 + vector 123146 + ]; 123147 + description = "Mutable hash tables in the ST monad"; 123148 + license = lib.licenses.bsd3; 123149 + hydraPlatforms = lib.platforms.none; 123150 + }) {}; 123151 + 123152 "hashtables-plus" = callPackage 123153 ({ mkDerivation, base, criterion-plus, deepseq, hashable 123154 , hashtables, lens, loch-th, mtl, mwc-random, placeholders ··· 124195 }: 124196 mkDerivation { 124197 pname = "haskell-language-server"; 124198 + version = "1.5.1.0"; 124199 + sha256 = "0aixq570sbrg9nnhaxlj8lv3k1dskbz53iwp5c1ljgrlmsz786ky"; 124200 isLibrary = true; 124201 isExecutable = true; 124202 libraryHaskellDepends = [ ··· 126289 }) {}; 126290 126291 "haskoin-core" = callPackage 126292 + ({ mkDerivation, aeson, array, base, base16, base64, binary, bytes 126293 , bytestring, cereal, conduit, containers, cryptonite, deepseq 126294 , entropy, hashable, hspec, hspec-discover, HUnit, lens, lens-aeson 126295 , memory, mtl, murmur3, network, QuickCheck, safe, scientific ··· 126298 }: 126299 mkDerivation { 126300 pname = "haskoin-core"; 126301 + version = "0.21.0"; 126302 + sha256 = "13jc15jdk2331j0rbqjqbi041rz9dl04f60xbxyjiq76hlqpaphw"; 126303 libraryHaskellDepends = [ 126304 aeson array base base16 binary bytes bytestring cereal conduit 126305 containers cryptonite deepseq entropy hashable hspec memory mtl ··· 126308 vector 126309 ]; 126310 testHaskellDepends = [ 126311 + aeson array base base16 base64 binary bytes bytestring cereal 126312 + conduit containers cryptonite deepseq entropy hashable hspec HUnit 126313 + lens lens-aeson memory mtl murmur3 network QuickCheck safe 126314 + scientific secp256k1-haskell split string-conversions text time 126315 + transformers unordered-containers vector 126316 ]; 126317 testToolDepends = [ hspec-discover ]; 126318 description = "Bitcoin & Bitcoin Cash library for Haskell"; ··· 126432 , optparse-applicative, QuickCheck, random, rocksdb-haskell-jprupp 126433 , rocksdb-query, scotty, stm, string-conversions, text, time 126434 , transformers, unliftio, unordered-containers, vault, wai 126435 + , wai-extra, wai-websockets, warp, websockets, wreq 126436 }: 126437 mkDerivation { 126438 pname = "haskoin-store"; 126439 + version = "0.61.0"; 126440 + sha256 = "0br8xni0qi7c4zy27f3ajrpg4g6fxa9siy0hglwz8ahbhw852ylg"; 126441 isLibrary = true; 126442 isExecutable = true; 126443 libraryHaskellDepends = [ ··· 126447 monad-control monad-logger mtl network nqe random 126448 rocksdb-haskell-jprupp rocksdb-query scotty stm string-conversions 126449 text time transformers unliftio unordered-containers vault wai 126450 + wai-extra wai-websockets warp websockets wreq 126451 ]; 126452 executableHaskellDepends = [ 126453 aeson aeson-pretty base base16 bytes bytestring cereal conduit ··· 126456 http-types lens monad-control monad-logger mtl network nqe 126457 optparse-applicative random rocksdb-haskell-jprupp rocksdb-query 126458 scotty stm string-conversions text time transformers unliftio 126459 + unordered-containers vault wai wai-extra wai-websockets warp 126460 + websockets wreq 126461 ]; 126462 testHaskellDepends = [ 126463 aeson aeson-pretty base base16 base64 bytes bytestring cereal ··· 126466 http-types lens monad-control monad-logger mtl network nqe 126467 QuickCheck random rocksdb-haskell-jprupp rocksdb-query scotty stm 126468 string-conversions text time transformers unliftio 126469 + unordered-containers vault wai wai-extra wai-websockets warp 126470 + websockets wreq 126471 ]; 126472 testToolDepends = [ hspec-discover ]; 126473 description = "Storage and index for Bitcoin and Bitcoin Cash"; ··· 126484 }: 126485 mkDerivation { 126486 pname = "haskoin-store-data"; 126487 + version = "0.61.0"; 126488 + sha256 = "06skq0syh1wfrm36kqvp2n77i6b0cmkhijff1mclabqnhkpzdk3d"; 126489 libraryHaskellDepends = [ 126490 aeson base binary bytes bytestring cereal containers data-default 126491 deepseq hashable haskoin-core http-client http-types lens mtl ··· 126756 pname = "hasktags"; 126757 version = "0.72.0"; 126758 sha256 = "09p79w16fgpqi6bwq162769xdrnyb7wnmz56k00nz6dj1a0bbbdd"; 126759 + revision = "2"; 126760 + editedCabalFile = "0f3v6k3bvsczz0z5i09286c0i74wz782vayzyp5lndqvrx3b4g0x"; 126761 isLibrary = true; 126762 isExecutable = true; 126763 libraryHaskellDepends = [ ··· 130198 "instance-map" = callPackage 130199 "instance-map" = callPackage 130200 "instance-map" = callPackage 130201 + revision = "1"; 130202 + editedCabalFile = "0w7960730qh8y41xa1mx4lbk288axkqa03wamh9j6pmag9axcphq"; 130203 libraryHaskellDepends = [ 130204 "instance-map" = callPackage 130205 "instance-map" = callPackage ··· 130225 "instance-map" = callPackage 130226 version = "0.15.0"; 130227 "instance-map" = callPackage 130228 + revision = "1"; 130229 + editedCabalFile = "0njy7nh5r935xb0za9r0hligqy0nzwlfnzlfqcvb1frkzxissydp"; 130230 libraryHaskellDepends = [ 130231 "instance-map" = callPackage 130232 "instance-map" = callPackage ··· 133079 license = lib.licenses.bsd3; 133080 }) {}; 133081 133082 + "hie-bios_0_8_0" = callPackage 133083 + ({ mkDerivation, aeson, base, base16-bytestring, bytestring 133084 + "instance-map" = callPackage 133085 + "instance-map" = callPackage 133086 + "instance-map" = callPackage 133087 + "instance-map" = callPackage 133088 + "instance-map" = callPackage 133089 + }: 133090 + mkDerivation { 133091 + "instance-map" = callPackage 133092 + version = "0.8.0"; 133093 + sha256 = "1apy7zdafrw96f7sbhhq62hlk4blcsi4kc4kq59wcm2yvj134rvv"; 133094 + isLibrary = true; 133095 + isExecutable = true; 133096 + libraryHaskellDepends = [ 133097 + "instance-map" = callPackage 133098 + "instance-map" = callPackage 133099 + "instance-map" = callPackage 133100 + "instance-map" = callPackage 133101 + ]; 133102 + executableHaskellDepends = [ 133103 + "instance-map" = callPackage 133104 + ]; 133105 + testHaskellDepends = [ 133106 + aeson base directory extra filepath ghc hspec-expectations tasty 133107 + "instance-map" = callPackage 133108 + unordered-containers yaml 133109 + ]; 133110 + "instance-map" = callPackage 133111 + license = lib.licenses.bsd3; 133112 + hydraPlatforms = lib.platforms.none; 133113 + }) {}; 133114 + 133115 "instance-map" = callPackage 133116 ({ mkDerivation, array, base, bytestring, containers, directory 133117 "instance-map" = callPackage ··· 134047 license = lib.licenses.bsd3; 134048 }) {}; 134049 134050 + "hint_0_9_0_5" = callPackage 134051 + ({ mkDerivation, base, containers, directory, exceptions, filepath 134052 + "instance-map" = callPackage 134053 + , transformers, unix 134054 + }: 134055 + mkDerivation { 134056 + "instance-map" = callPackage 134057 + version = "0.9.0.5"; 134058 + sha256 = "1qjasjbilvrfwk8lxfw0pa0hwpsr7nn0n9yd95lwjgfnqnigzcb8"; 134059 + libraryHaskellDepends = [ 134060 + base containers directory exceptions filepath ghc ghc-boot 134061 + ghc-paths random temporary transformers unix 134062 + ]; 134063 + testHaskellDepends = [ 134064 + "instance-map" = callPackage 134065 + ]; 134066 + "instance-map" = callPackage 134067 + license = lib.licenses.bsd3; 134068 + hydraPlatforms = lib.platforms.none; 134069 + }) {}; 134070 + 134071 "instance-map" = callPackage 134072 "instance-map" = callPackage 134073 }: ··· 134678 "instance-map" = callPackage 134679 version = "0.2.0.4"; 134680 "instance-map" = callPackage 134681 + revision = "1"; 134682 + editedCabalFile = "0ni726dy3a0mmqwlpqby4yhy7cdddjala1vwgaq75pgb0bmp7wr0"; 134683 isLibrary = true; 134684 isExecutable = true; 134685 libraryHaskellDepends = [ ··· 135079 maintainers = with lib.maintainers; [ peti ]; 135080 }) {}; 135081 135082 + "hledger_1_24" = callPackage 135083 + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs 135084 + , containers, data-default, Decimal, Diff, directory, extra 135085 + , filepath, githash, hashable, haskeline, hledger-lib, lucid 135086 + , math-functions, megaparsec, microlens, mtl, process, regex-tdfa 135087 + , safe, shakespeare, split, tabular, tasty, temporary, terminfo 135088 + , text, time, timeit, transformers, unordered-containers 135089 + , utf8-string, utility-ht, wizards 135090 }: 135091 mkDerivation { 135092 pname = "hledger"; 135093 + version = "1.24"; 135094 + sha256 = "19aw0q5i4i114wms063z4id08vfknz2zn1ydzbv53kykqc8h26n0"; 135095 isLibrary = true; 135096 isExecutable = true; 135097 libraryHaskellDepends = [ 135098 + aeson ansi-terminal base bytestring cmdargs containers data-default 135099 + Decimal Diff directory extra filepath githash hashable haskeline 135100 + hledger-lib lucid math-functions megaparsec microlens mtl process 135101 + regex-tdfa safe shakespeare split tabular tasty temporary terminfo 135102 + text time timeit transformers unordered-containers utf8-string 135103 + utility-ht wizards 135104 ]; 135105 executableHaskellDepends = [ 135106 + aeson ansi-terminal base bytestring cmdargs containers data-default 135107 + Decimal directory extra filepath githash haskeline hledger-lib 135108 + math-functions megaparsec microlens mtl process regex-tdfa safe 135109 + shakespeare split tabular tasty temporary terminfo text time timeit 135110 + transformers unordered-containers utf8-string utility-ht wizards 135111 ]; 135112 testHaskellDepends = [ 135113 + aeson ansi-terminal base bytestring cmdargs containers data-default 135114 + Decimal directory extra filepath githash haskeline hledger-lib 135115 + math-functions megaparsec microlens mtl process regex-tdfa safe 135116 + shakespeare split tabular tasty temporary terminfo text time timeit 135117 + transformers unordered-containers utf8-string utility-ht wizards 135118 ]; 135119 description = "Command-line interface for the hledger accounting system"; 135120 license = lib.licenses.gpl3Only; ··· 135366 license = lib.licenses.gpl3Only; 135367 }) {}; 135368 135369 + "hledger-lib_1_24" = callPackage 135370 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array, base 135371 + , blaze-markup, bytestring, call-stack, cassava, cassava-megaparsec 135372 + , cmdargs, containers, data-default, Decimal, directory, doclayout 135373 + , doctest, extra, file-embed, filepath, Glob, hashtables 135374 + , megaparsec, microlens, microlens-th, mtl, parser-combinators 135375 + , pretty-simple, regex-tdfa, safe, tabular, tasty, tasty-hunit 135376 + , template-haskell, text, time, timeit, transformers, uglymemo 135377 + , unordered-containers, utf8-string 135378 }: 135379 mkDerivation { 135380 pname = "hledger-lib"; 135381 + version = "1.24"; 135382 + sha256 = "1gjqcjvcmkhwm8z0aanv93n0zglh699mnbh9a7symw06ii4yv5ll"; 135383 libraryHaskellDepends = [ 135384 + aeson aeson-pretty ansi-terminal array base blaze-markup bytestring 135385 + call-stack cassava cassava-megaparsec cmdargs containers 135386 + data-default Decimal directory doclayout extra file-embed filepath 135387 + Glob hashtables megaparsec microlens microlens-th mtl 135388 parser-combinators pretty-simple regex-tdfa safe tabular tasty 135389 tasty-hunit template-haskell text time timeit transformers uglymemo 135390 unordered-containers utf8-string 135391 ]; 135392 testHaskellDepends = [ 135393 + aeson aeson-pretty ansi-terminal array base blaze-markup bytestring 135394 + call-stack cassava cassava-megaparsec cmdargs containers 135395 + data-default Decimal directory doclayout doctest extra file-embed 135396 + filepath Glob hashtables megaparsec microlens microlens-th mtl 135397 + parser-combinators pretty-simple regex-tdfa safe tabular tasty 135398 + tasty-hunit template-haskell text time timeit transformers uglymemo 135399 + unordered-containers utf8-string 135400 ]; 135401 description = "A reusable library providing the core functionality of hledger"; 135402 license = lib.licenses.gpl3Only; ··· 135477 maintainers = with lib.maintainers; [ peti ]; 135478 }) {}; 135479 135480 + "hledger-ui_1_24" = callPackage 135481 + ({ mkDerivation, ansi-terminal, async, base, brick, cmdargs 135482 + , containers, data-default, directory, doclayout, extra, filepath 135483 + , fsnotify, hledger, hledger-lib, megaparsec, microlens 135484 , microlens-platform, process, safe, split, text, text-zipper, time 135485 , transformers, unix, vector, vty 135486 }: 135487 mkDerivation { 135488 pname = "hledger-ui"; 135489 + version = "1.24"; 135490 + sha256 = "0a0n677f8s3397yzmfvj2686nsc90zz289lgb41qclbnz4ppcr9c"; 135491 isLibrary = false; 135492 isExecutable = true; 135493 executableHaskellDepends = [ 135494 + ansi-terminal async base brick cmdargs containers data-default 135495 + directory doclayout extra filepath fsnotify hledger hledger-lib 135496 + megaparsec microlens microlens-platform process safe split text 135497 + text-zipper time transformers unix vector vty 135498 ]; 135499 description = "Curses-style terminal interface for the hledger accounting system"; 135500 license = lib.licenses.gpl3Only; ··· 135559 maintainers = with lib.maintainers; [ peti ]; 135560 }) {}; 135561 135562 + "hledger-web_1_24" = callPackage 135563 ({ mkDerivation, aeson, base, base64, blaze-html, blaze-markup 135564 , bytestring, case-insensitive, clientsession, cmdargs, conduit 135565 , conduit-extra, containers, data-default, Decimal, directory ··· 135572 }: 135573 mkDerivation { 135574 pname = "hledger-web"; 135575 + version = "1.24"; 135576 + sha256 = "0xpj6v1ks4d0m9pk6sljyx9f2vxq440bl59qn7gz0hv1lzm6zrbi"; 135577 isLibrary = true; 135578 isExecutable = true; 135579 libraryHaskellDepends = [ ··· 135846 }: 135847 mkDerivation { 135848 pname = "hlrdb-core"; 135849 + version = "0.1.6.2"; 135850 + sha256 = "19pnwjlcg504kpvxq8r1hwb533adi2d919vgb1lr25c9bdyxc32n"; 135851 libraryHaskellDepends = [ 135852 base bytestring hashable hedis lens mtl profunctors random time 135853 unordered-containers ··· 135918 }: 135919 mkDerivation { 135920 pname = "hls-class-plugin"; 135921 + version = "1.0.1.2"; 135922 + sha256 = "1ybg6dd3m8ynhkn80189nqc8ng2lfplk3xrq7cq4mdx4bgdnjbgq"; 135923 libraryHaskellDepends = [ 135924 aeson base containers ghc ghc-exactprint ghcide hls-plugin-api lens 135925 lsp text transformers ··· 135942 }: 135943 mkDerivation { 135944 pname = "hls-eval-plugin"; 135945 + version = "1.2.0.2"; 135946 + sha256 = "0nrlfs40hmbjjw6r01b3fcxwh01b4ap9v2ij6jyqrgkbs19qfp49"; 135947 libraryHaskellDepends = [ 135948 aeson base containers data-default deepseq Diff directory dlist 135949 extra filepath ghc ghc-boot-th ghc-paths ghcide hashable hls-graph ··· 135985 }: 135986 mkDerivation { 135987 pname = "hls-explicit-imports-plugin"; 135988 + version = "1.0.1.2"; 135989 + sha256 = "12m0idqxx47ixyn6i03jzwp4z9xwnb5q0p0655ik03xhibwjja7d"; 135990 libraryHaskellDepends = [ 135991 aeson base containers deepseq ghc ghcide hls-graph hls-plugin-api 135992 lsp text unordered-containers ··· 136018 }: 136019 mkDerivation { 136020 pname = "hls-fourmolu-plugin"; 136021 + version = "1.0.1.2"; 136022 + sha256 = "1w7rnb18fn71aqzspq7wic0nd1qwh5r2vr9j2yiwvp95p42zxf0n"; 136023 libraryHaskellDepends = [ 136024 base filepath fourmolu ghc ghc-boot-th ghcide hls-plugin-api lens 136025 lsp text ··· 136037 }: 136038 mkDerivation { 136039 pname = "hls-graph"; 136040 + version = "1.5.1.1"; 136041 + sha256 = "1ak6i03ch5xm6r4ym09k9vxfq7y5xwr9c6d84cgl8288g2i0fnpz"; 136042 enableSeparateDataOutput = true; 136043 libraryHaskellDepends = [ 136044 aeson async base bytestring containers deepseq directory exceptions ··· 136077 }: 136078 mkDerivation { 136079 pname = "hls-hlint-plugin"; 136080 + version = "1.0.2.1"; 136081 + sha256 = "11a6gkz4af137zdg0m4bipjy2vn8bmarjd127sdrwli3vy7jzs3s"; 136082 libraryHaskellDepends = [ 136083 aeson apply-refact base binary bytestring containers data-default 136084 deepseq Diff directory extra filepath ghc ghc-exactprint ghc-lib ··· 136101 }: 136102 mkDerivation { 136103 pname = "hls-module-name-plugin"; 136104 + version = "1.0.0.3"; 136105 + sha256 = "0nymxfwvqalmwgv3a0a5a10vk8yi6k7r3gb1yyd0iz6vkz6k10p3"; 136106 libraryHaskellDepends = [ 136107 aeson base directory filepath ghcide hls-plugin-api lsp text 136108 transformers unordered-containers ··· 136119 }: 136120 mkDerivation { 136121 pname = "hls-ormolu-plugin"; 136122 + version = "1.0.1.2"; 136123 + sha256 = "1kp63ydmczvjbwzkmxzd8m4fnm8yljzxraisa85sd7pagv2djh7q"; 136124 libraryHaskellDepends = [ 136125 base filepath ghc ghc-boot-th ghcide hls-plugin-api lens lsp ormolu 136126 text ··· 136199 pname = "hls-rename-plugin"; 136200 version = "1.0.0.0"; 136201 sha256 = "0j13nh3fvvmj1sd11fiq9fccq23s6p7jz3m96b49kprkayx65zhh"; 136202 + revision = "1"; 136203 + editedCabalFile = "193q5qz563lvwm1vpfadr7cy7yxk15z2va5p9bw0xjz2x8yhc5fq"; 136204 libraryHaskellDepends = [ 136205 base containers extra ghc ghc-exactprint ghcide hiedb 136206 hls-plugin-api hls-retrie-plugin lsp lsp-types syb text ··· 136218 }: 136219 mkDerivation { 136220 pname = "hls-retrie-plugin"; 136221 + version = "1.0.1.4"; 136222 + sha256 = "18ldvywi8zl08xfd1z4dhj84xhxa9kq0hdminv6d3xf470ghkrdv"; 136223 libraryHaskellDepends = [ 136224 aeson base containers deepseq directory extra ghc ghcide hashable 136225 hls-plugin-api lsp lsp-types retrie safe-exceptions text ··· 136237 }: 136238 mkDerivation { 136239 pname = "hls-splice-plugin"; 136240 + version = "1.0.0.6"; 136241 + sha256 = "0cnm0kaimbcyrjgphz61fhs9wg4wscv8bj9c09pxxwz6npf2r3wz"; 136242 libraryHaskellDepends = [ 136243 aeson base containers dlist extra foldl ghc ghc-exactprint ghcide 136244 hls-plugin-api lens lsp retrie syb text transformers unliftio-core ··· 136256 }: 136257 mkDerivation { 136258 pname = "hls-stylish-haskell-plugin"; 136259 + version = "1.0.0.4"; 136260 + sha256 = "0p6cqjslf9qnb2df6dvznyzily55mcs13f0kd0x64p8kf2chc6ic"; 136261 libraryHaskellDepends = [ 136262 base directory filepath ghc ghc-boot-th ghcide hls-plugin-api 136263 lsp-types stylish-haskell text ··· 136279 }: 136280 mkDerivation { 136281 pname = "hls-tactics-plugin"; 136282 + version = "1.5.0.1"; 136283 + sha256 = "1fji3m1dczswzsrvvsg00jflsq9h4jpgclyma91rcncdrl7j4ylz"; 136284 libraryHaskellDepends = [ 136285 aeson base containers deepseq directory extra filepath fingertree 136286 generic-lens ghc ghc-boot-th ghc-exactprint ghc-source-gen ghcide ··· 136307 }: 136308 mkDerivation { 136309 pname = "hls-test-utils"; 136310 + version = "1.1.0.2"; 136311 + sha256 = "1506438g4bzc05f8km5kcjq8hv1sk56bllbcnjkx3fdqdamr3piv"; 136312 libraryHaskellDepends = [ 136313 aeson async base blaze-markup bytestring containers data-default 136314 directory extra filepath ghcide hls-graph hls-plugin-api hspec ··· 137642 pname = "hoist-error"; 137643 version = "0.2.1.0"; 137644 sha256 = "028lczd80nhj3yj5dq9qixzdzkyisl34qpi6bb28r8b9nj2i2nss"; 137645 + revision = "5"; 137646 + editedCabalFile = "173vmbviw39ivb1cg2c0w35m0dd32n0ki82nd6h3j8yww0pzgk5p"; 137647 libraryHaskellDepends = [ base either mtl ]; 137648 description = "Some convenience facilities for hoisting errors into a monad"; 137649 license = lib.licenses.mit; ··· 139069 license = lib.licenses.mit; 139070 }) {}; 139071 139072 + "hpack_0_34_6" = callPackage 139073 + ({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal 139074 + , containers, cryptonite, deepseq, directory, filepath, Glob, hspec 139075 + , hspec-discover, http-client, http-client-tls, http-types, HUnit 139076 + , infer-license, interpolate, mockery, pretty, QuickCheck 139077 + , scientific, template-haskell, temporary, text, transformers 139078 + , unordered-containers, vector, yaml 139079 + }: 139080 + mkDerivation { 139081 + pname = "hpack"; 139082 + version = "0.34.6"; 139083 + sha256 = "0hmaf5j4blyav3a0r1qbdhr5hs8s88c6l7ryxi011xj7hqs4fi8w"; 139084 + isLibrary = true; 139085 + isExecutable = true; 139086 + libraryHaskellDepends = [ 139087 + aeson base bifunctors bytestring Cabal containers cryptonite 139088 + deepseq directory filepath Glob http-client http-client-tls 139089 + http-types infer-license pretty scientific text transformers 139090 + unordered-containers vector yaml 139091 + ]; 139092 + executableHaskellDepends = [ 139093 + aeson base bifunctors bytestring Cabal containers cryptonite 139094 + deepseq directory filepath Glob http-client http-client-tls 139095 + http-types infer-license pretty scientific text transformers 139096 + unordered-containers vector yaml 139097 + ]; 139098 + testHaskellDepends = [ 139099 + aeson base bifunctors bytestring Cabal containers cryptonite 139100 + deepseq directory filepath Glob hspec http-client http-client-tls 139101 + http-types HUnit infer-license interpolate mockery pretty 139102 + QuickCheck scientific template-haskell temporary text transformers 139103 + unordered-containers vector yaml 139104 + ]; 139105 + testToolDepends = [ hspec-discover ]; 139106 + description = "A modern format for Haskell packages"; 139107 + license = lib.licenses.mit; 139108 + hydraPlatforms = lib.platforms.none; 139109 + }) {}; 139110 + 139111 "hpack-convert" = callPackage 139112 ({ mkDerivation, aeson, aeson-qq, base, base-compat, bytestring 139113 , Cabal, containers, deepseq, directory, filepath, Glob, hspec ··· 139694 }: 139695 mkDerivation { 139696 pname = "hpqtypes-extras"; 139697 + version = "1.13.1.0"; 139698 + sha256 = "19d55ivy39pipal8v3anymnh5fpzms4skcxd2mgv1chpdw60n09w"; 139699 libraryHaskellDepends = [ 139700 base base16-bytestring bytestring containers cryptohash exceptions 139701 extra fields-json hpqtypes lifted-base log-base monad-control mtl ··· 140214 license = lib.licenses.bsd3; 140215 }) {inherit (pkgs) ruby;}; 140216 140217 + "hruby_0_4_0_0" = callPackage 140218 + ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal 140219 + , process, QuickCheck, ruby, scientific, stm, text 140220 + , unordered-containers, vector 140221 + }: 140222 + mkDerivation { 140223 + pname = "hruby"; 140224 + version = "0.4.0.0"; 140225 + sha256 = "0qd3mfc8mr5b0vmvfqnmjrba5abvwb4vn6mjlm0mhlgigmh685f9"; 140226 + setupHaskellDepends = [ base Cabal process ]; 140227 + libraryHaskellDepends = [ 140228 + aeson attoparsec base bytestring scientific stm text 140229 + unordered-containers vector 140230 + ]; 140231 + librarySystemDepends = [ ruby ]; 140232 + testHaskellDepends = [ 140233 + aeson attoparsec base QuickCheck text vector 140234 + ]; 140235 + description = "Embed a Ruby intepreter in your Haskell program !"; 140236 + license = lib.licenses.bsd3; 140237 + hydraPlatforms = lib.platforms.none; 140238 + }) {inherit (pkgs) ruby;}; 140239 + 140240 "hs" = callPackage 140241 ({ mkDerivation, base, containers, data-default, directory 140242 , enum-text, filepath, fmt, optparse-applicative, possibly, text ··· 140754 license = lib.licenses.bsd3; 140755 }) {}; 140756 140757 + "hs-opentelemetry-api" = callPackage 140758 + ({ mkDerivation, async, attoparsec, base, binary, bytestring 140759 + , charset, clock, containers, ghc-prim, hashable, hspec, http-types 140760 + , memory, mtl, template-haskell, text, thread-utils-context 140761 + , unliftio-core, unordered-containers, vault, vector 140762 + , vector-builder 140763 + }: 140764 + mkDerivation { 140765 + pname = "hs-opentelemetry-api"; 140766 + version = "0.0.1.0"; 140767 + sha256 = "0n2x9yrrfqf1z7klfwllpl42rpi84s5kdywb3c77a9386xrf9gvw"; 140768 + libraryHaskellDepends = [ 140769 + async attoparsec base binary bytestring charset clock containers 140770 + ghc-prim hashable http-types memory mtl template-haskell text 140771 + thread-utils-context unliftio-core unordered-containers vault 140772 + vector vector-builder 140773 + ]; 140774 + testHaskellDepends = [ 140775 + async attoparsec base binary bytestring charset clock containers 140776 + ghc-prim hashable hspec http-types memory mtl template-haskell text 140777 + thread-utils-context unliftio-core unordered-containers vault 140778 + vector vector-builder 140779 + ]; 140780 + description = "OpenTelemetry API for use by libraries for direct instrumentation or wrapper packages"; 140781 + license = lib.licenses.bsd3; 140782 + }) {}; 140783 + 140784 + "hs-opentelemetry-exporter-in-memory" = callPackage 140785 + ({ mkDerivation, async, base, hs-opentelemetry-api, unagi-chan }: 140786 + mkDerivation { 140787 + pname = "hs-opentelemetry-exporter-in-memory"; 140788 + version = "0.0.1.0"; 140789 + sha256 = "0hd7pdcziyygvvv9c4klcihj4zyla6kzyc7k42gbg3383r7iw99r"; 140790 + libraryHaskellDepends = [ 140791 + async base hs-opentelemetry-api unagi-chan 140792 + ]; 140793 + testHaskellDepends = [ 140794 + async base hs-opentelemetry-api unagi-chan 140795 + ]; 140796 + license = lib.licenses.bsd3; 140797 + }) {}; 140798 + 140799 + "hs-opentelemetry-exporter-otlp" = callPackage 140800 + ({ mkDerivation, base, bytestring, case-insensitive, clock 140801 + , hs-opentelemetry-api, hs-opentelemetry-otlp, http-client 140802 + , http-conduit, http-types, microlens, mtl, proto-lens, text 140803 + , unordered-containers, vector, vector-builder 140804 + }: 140805 + mkDerivation { 140806 + pname = "hs-opentelemetry-exporter-otlp"; 140807 + version = "0.0.1.0"; 140808 + sha256 = "0vkxi2agwnhwlncijz2aqb45ri1c3aq6azpmn1igzzd29vsh4qam"; 140809 + libraryHaskellDepends = [ 140810 + base bytestring case-insensitive clock hs-opentelemetry-api 140811 + hs-opentelemetry-otlp http-client http-conduit http-types microlens 140812 + mtl proto-lens text unordered-containers vector vector-builder 140813 + ]; 140814 + testHaskellDepends = [ 140815 + base bytestring case-insensitive clock hs-opentelemetry-api 140816 + hs-opentelemetry-otlp http-client http-conduit http-types microlens 140817 + mtl proto-lens text unordered-containers vector vector-builder 140818 + ]; 140819 + description = "OpenTelemetry exporter supporting the standard OTLP protocol"; 140820 + license = lib.licenses.bsd3; 140821 + }) {}; 140822 + 140823 + "hs-opentelemetry-instrumentation-wai" = callPackage 140824 + ({ mkDerivation, base, bytestring, hs-opentelemetry-api, http-types 140825 + , iproute, network, text, vault, wai 140826 + }: 140827 + mkDerivation { 140828 + pname = "hs-opentelemetry-instrumentation-wai"; 140829 + version = "0.0.1.0"; 140830 + sha256 = "075jbkcxsgmjrq731zlyq70421yrmqfsb8zsm149sxsnalxp4jpw"; 140831 + libraryHaskellDepends = [ 140832 + base bytestring hs-opentelemetry-api http-types iproute network 140833 + text vault wai 140834 + ]; 140835 + testHaskellDepends = [ 140836 + base bytestring hs-opentelemetry-api http-types iproute network 140837 + text vault wai 140838 + ]; 140839 + description = "WAI instrumentation middleware for OpenTelemetry"; 140840 + license = lib.licenses.bsd3; 140841 + }) {}; 140842 + 140843 + "hs-opentelemetry-instrumentation-yesod" = callPackage 140844 + ({ mkDerivation, base, hs-opentelemetry-api 140845 + , hs-opentelemetry-instrumentation-wai, microlens, mtl 140846 + , template-haskell, text, unliftio, wai, yesod-core 140847 + }: 140848 + mkDerivation { 140849 + pname = "hs-opentelemetry-instrumentation-yesod"; 140850 + version = "0.0.1.0"; 140851 + sha256 = "1jywbj76xf2nq2vayx0wa875csisnd0xgb14lq37jr9hqqmzam4z"; 140852 + libraryHaskellDepends = [ 140853 + base hs-opentelemetry-api hs-opentelemetry-instrumentation-wai 140854 + microlens mtl template-haskell text unliftio wai yesod-core 140855 + ]; 140856 + testHaskellDepends = [ 140857 + base hs-opentelemetry-api hs-opentelemetry-instrumentation-wai 140858 + microlens mtl template-haskell text unliftio wai yesod-core 140859 + ]; 140860 + description = "Yesod middleware for providing OpenTelemetry instrumentation"; 140861 + license = lib.licenses.bsd3; 140862 + }) {}; 140863 + 140864 + "hs-opentelemetry-otlp" = callPackage 140865 + ({ mkDerivation, base, proto-lens, proto-lens-runtime }: 140866 + mkDerivation { 140867 + pname = "hs-opentelemetry-otlp"; 140868 + version = "0.0.1.0"; 140869 + sha256 = "1hlflmr51lz4pbxxmlmp2rb5p4lcj09fhry41rv52nmk9iim4qr0"; 140870 + libraryHaskellDepends = [ base proto-lens proto-lens-runtime ]; 140871 + description = "OpenTelemetry protocol buffer modules generated for the OTLP protocol by the proto-lens package"; 140872 + license = lib.licenses.bsd3; 140873 + }) {}; 140874 + 140875 + "hs-opentelemetry-propagator-w3c" = callPackage 140876 + ({ mkDerivation, attoparsec, base, bytestring, hs-opentelemetry-api 140877 + , http-types, text 140878 + }: 140879 + mkDerivation { 140880 + pname = "hs-opentelemetry-propagator-w3c"; 140881 + version = "0.0.1.0"; 140882 + sha256 = "0kv59ljydrl557ifs5z5kix1lwrglr4mr1ky3nixq7ydrzmsxr16"; 140883 + libraryHaskellDepends = [ 140884 + attoparsec base bytestring hs-opentelemetry-api http-types text 140885 + ]; 140886 + testHaskellDepends = [ 140887 + attoparsec base bytestring hs-opentelemetry-api http-types text 140888 + ]; 140889 + license = lib.licenses.bsd3; 140890 + }) {}; 140891 + 140892 + "hs-opentelemetry-sdk" = callPackage 140893 + ({ mkDerivation, async, base, bytestring, clock 140894 + , hs-opentelemetry-api, hs-opentelemetry-exporter-otlp 140895 + , hs-opentelemetry-propagator-w3c, hspec, http-types, mwc-random 140896 + , network-bsd, random, random-bytestring, stm, text, unagi-chan 140897 + , unix, unordered-containers, vector, vector-builder 140898 + }: 140899 + mkDerivation { 140900 + pname = "hs-opentelemetry-sdk"; 140901 + version = "0.0.1.0"; 140902 + sha256 = "01p934rlifsfq3mfxrlm1zp6nwb8xscibvprl4qylyanhhvngd4z"; 140903 + libraryHaskellDepends = [ 140904 + async base bytestring hs-opentelemetry-api 140905 + hs-opentelemetry-exporter-otlp hs-opentelemetry-propagator-w3c 140906 + http-types mwc-random network-bsd random random-bytestring stm text 140907 + unagi-chan unix unordered-containers vector vector-builder 140908 + ]; 140909 + testHaskellDepends = [ 140910 + async base bytestring clock hs-opentelemetry-api 140911 + hs-opentelemetry-exporter-otlp hs-opentelemetry-propagator-w3c 140912 + hspec http-types mwc-random network-bsd random random-bytestring 140913 + stm text unagi-chan unix unordered-containers vector vector-builder 140914 + ]; 140915 + description = "OpenTelemetry SDK for use in applications"; 140916 + license = lib.licenses.bsd3; 140917 + }) {}; 140918 + 140919 "hs-pattrans" = callPackage 140920 ({ mkDerivation, async, base, bytestring, cassava, Chart 140921 , Chart-cairo, colour, containers, contravariant, directory ··· 143013 license = lib.licenses.isc; 143014 }) {}; 143015 143016 + "hsinstall_2_7" = callPackage 143017 + ({ mkDerivation, ansi-wl-pprint, base, Cabal, directory, exceptions 143018 + , filepath, heredoc, newtype-generics, optparse-applicative 143019 + , process, safe-exceptions, transformers 143020 + }: 143021 + mkDerivation { 143022 + pname = "hsinstall"; 143023 + version = "2.7"; 143024 + sha256 = "142gdcdka2i61hv9pxpqfi25h5nzz8k7nxlnymfmn4inpayvdr29"; 143025 + isLibrary = true; 143026 + isExecutable = true; 143027 + libraryHaskellDepends = [ base directory filepath ]; 143028 + executableHaskellDepends = [ 143029 + ansi-wl-pprint base Cabal directory exceptions filepath heredoc 143030 + newtype-generics optparse-applicative process safe-exceptions 143031 + transformers 143032 + ]; 143033 + description = "Install Haskell software"; 143034 + license = lib.licenses.isc; 143035 + hydraPlatforms = lib.platforms.none; 143036 + }) {}; 143037 + 143038 "hskeleton" = callPackage 143039 ({ mkDerivation, base, Cabal }: 143040 mkDerivation { ··· 143916 license = lib.licenses.mit; 143917 }) {}; 143918 143919 + "hspec_2_9_2" = callPackage 143920 ({ mkDerivation, base, hspec-core, hspec-discover 143921 , hspec-expectations, QuickCheck 143922 }: 143923 mkDerivation { 143924 pname = "hspec"; 143925 + version = "2.9.2"; 143926 + sha256 = "0zyy2pinv77a161aybpay6syy4y275ap409rzns0v3yqndxn250c"; 143927 libraryHaskellDepends = [ 143928 base hspec-core hspec-discover hspec-expectations QuickCheck 143929 ]; ··· 144014 license = lib.licenses.mit; 144015 }) {}; 144016 144017 + "hspec-core_2_9_2" = callPackage 144018 ({ mkDerivation, ansi-terminal, array, base, base-orphans 144019 , call-stack, clock, deepseq, directory, filepath 144020 , hspec-expectations, hspec-meta, HUnit, process, QuickCheck ··· 144023 }: 144024 mkDerivation { 144025 pname = "hspec-core"; 144026 + version = "2.9.2"; 144027 + sha256 = "175c4g98ancn42j8czjrxm60hik6f3wysifszsqlprhna3cxw1yn"; 144028 libraryHaskellDepends = [ 144029 ansi-terminal array base call-stack clock deepseq directory 144030 filepath hspec-expectations HUnit QuickCheck quickcheck-io random ··· 144081 maintainers = with lib.maintainers; [ maralorn ]; 144082 }) {}; 144083 144084 + "hspec-discover_2_9_2" = callPackage 144085 ({ mkDerivation, base, directory, filepath, hspec-meta, mockery 144086 , QuickCheck 144087 }: 144088 mkDerivation { 144089 pname = "hspec-discover"; 144090 + version = "2.9.2"; 144091 + sha256 = "0chp9fcmjqmwbh2s77ixzjk0w5d19yyph6093j6cky03cbzv1a05"; 144092 isLibrary = true; 144093 isExecutable = true; 144094 libraryHaskellDepends = [ base directory filepath ]; ··· 144130 testHaskellDepends = [ aeson-qq base hspec ]; 144131 description = "Hspec expectations for JSON Values"; 144132 license = lib.licenses.mit; 144133 + }) {}; 144134 + 144135 + "hspec-expectations-json_1_0_0_5" = callPackage 144136 + ({ mkDerivation, aeson, aeson-pretty, aeson-qq, base, Diff, hspec 144137 + , HUnit, scientific, text, vector 144138 + }: 144139 + mkDerivation { 144140 + pname = "hspec-expectations-json"; 144141 + version = "1.0.0.5"; 144142 + sha256 = "12kb0dsw36rwg522lhs31gi2ij8vf8lq36j3983i352yiqrzb586"; 144143 + libraryHaskellDepends = [ 144144 + aeson aeson-pretty base Diff HUnit scientific text vector 144145 + ]; 144146 + testHaskellDepends = [ aeson-qq base hspec ]; 144147 + description = "Hspec expectations for JSON Values"; 144148 + license = lib.licenses.mit; 144149 + hydraPlatforms = lib.platforms.none; 144150 }) {}; 144151 144152 "hspec-expectations-lens" = callPackage ··· 144382 license = lib.licenses.mit; 144383 }) {}; 144384 144385 + "hspec-junit-formatter_1_0_3_0" = callPackage 144386 ({ mkDerivation, base, conduit, containers, directory, exceptions 144387 + , filepath, hspec, hspec-core, markdown-unlit, temporary, text 144388 + , time, xml-conduit, xml-types 144389 }: 144390 mkDerivation { 144391 pname = "hspec-junit-formatter"; 144392 + version = "1.0.3.0"; 144393 + sha256 = "06003bw98bp9jl379463x1bk3ds30spsmg9h4lvr367k6diyi6ax"; 144394 libraryHaskellDepends = [ 144395 base conduit containers directory exceptions filepath hspec-core 144396 text time xml-conduit xml-types 144397 ]; 144398 + testHaskellDepends = [ 144399 + base containers filepath hspec hspec-core markdown-unlit temporary 144400 + text xml-conduit 144401 + ]; 144402 + testToolDepends = [ markdown-unlit ]; 144403 description = "A JUnit XML runner/formatter for hspec"; 144404 license = lib.licenses.mit; 144405 hydraPlatforms = lib.platforms.none; ··· 144471 license = lib.licenses.mit; 144472 }) {}; 144473 144474 + "hspec-meta_2_9_2" = callPackage 144475 ({ mkDerivation, ansi-terminal, array, base, call-stack, clock 144476 , deepseq, directory, filepath, QuickCheck, quickcheck-io, random 144477 , setenv, stm, time, transformers 144478 }: 144479 mkDerivation { 144480 pname = "hspec-meta"; 144481 + version = "2.9.2"; 144482 + sha256 = "1pbmy93vqgb1i2qf1qij3z9q73as9fcv3c1wbff4mnd1fxsxgc9y"; 144483 isLibrary = true; 144484 isExecutable = true; 144485 libraryHaskellDepends = [ ··· 146512 pname = "http-api-data"; 146513 version = "0.4.3"; 146514 sha256 = "171bw2a44pg50d3y77gw2y9vmx72laky7hnn5hw6r93pnjmlf9yz"; 146515 + revision = "5"; 146516 + editedCabalFile = "18gh7q1j2jiz4c6sn352j5rl4009gi238nni8ff9kqgi3c4mlrs0"; 146517 libraryHaskellDepends = [ 146518 attoparsec attoparsec-iso8601 base base-compat bytestring 146519 containers cookie hashable http-types tagged text time-compat ··· 147367 pname = "http-query"; 147368 version = "0.1.0.1"; 147369 sha256 = "11l3bxbaxkd0mrarp5l3s3c4xhvdiq8lj739hxspi6cgk0ywjwxw"; 147370 + revision = "1"; 147371 + editedCabalFile = "1c1xxzsdwclzmrgflaj1nz4k2ll5h53swpfimzxs37kjdxsxkr2b"; 147372 libraryHaskellDepends = [ 147373 aeson base bytestring http-conduit network-uri text 147374 ]; 147375 description = "Simple http queries"; 147376 license = lib.licenses.bsd3; 147377 + }) {}; 147378 + 147379 + "http-query_0_1_1" = callPackage 147380 + ({ mkDerivation, aeson, base, bytestring, http-conduit, network-uri 147381 + , text 147382 + }: 147383 + mkDerivation { 147384 + pname = "http-query"; 147385 + version = "0.1.1"; 147386 + sha256 = "0k97ck1x2j9is5bslxaaw1fghh4yrvy50fahdy7sg51h5ihzcarp"; 147387 + libraryHaskellDepends = [ 147388 + aeson base bytestring http-conduit network-uri text 147389 + ]; 147390 + description = "Simple http queries"; 147391 + license = lib.licenses.bsd3; 147392 + hydraPlatforms = lib.platforms.none; 147393 }) {}; 147394 147395 "http-querystring" = callPackage ··· 150890 }: 150891 mkDerivation { 150892 pname = "hyperloglog"; 150893 version = "0.4.5"; 150894 sha256 = "0v2zw0p104gbydj6hp2cxa2s4b85pq4srcspr582aqj38bs7spfz"; 150895 libraryHaskellDepends = [ ··· 150899 ]; 150900 description = "An approximate streaming (constant space) unique object counter"; 150901 license = lib.licenses.bsd3; 150902 }) {}; 150903 150904 "hyperloglogplus" = callPackage ··· 152104 pname = "ihaskell"; 152105 version = "0.10.2.1"; 152106 sha256 = "1bpxm51c8f0cl7cvg7d2f39fnar7a811s3fgxvxmvsb7yw3v92vc"; 152107 + revision = "1"; 152108 + editedCabalFile = "0qw3zi7fs82k5kk08s6qmpnb6zhfjp77fpqylq9j2ip04sgdcdrp"; 152109 isLibrary = true; 152110 isExecutable = true; 152111 enableSeparateDataOutput = true; ··· 152128 license = lib.licenses.mit; 152129 }) {}; 152130 152131 + "ihaskell_0_10_2_2" = callPackage 152132 + ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring 152133 + , cmdargs, containers, directory, exceptions, filepath, ghc 152134 + , ghc-boot, ghc-parser, ghc-paths, haskeline, here, hlint, hspec 152135 + , hspec-contrib, http-client, http-client-tls, HUnit 152136 + , ipython-kernel, parsec, process, random, raw-strings-qq, setenv 152137 + , shelly, split, stm, strict, text, time, transformers, unix 152138 + , unordered-containers, utf8-string, vector 152139 + }: 152140 + mkDerivation { 152141 + pname = "ihaskell"; 152142 + version = "0.10.2.2"; 152143 + sha256 = "1lcyhj19v44wc6blj31fc4gfzsbqj0wnf9fyll8xi4nq0wq0zw89"; 152144 + isLibrary = true; 152145 + isExecutable = true; 152146 + enableSeparateDataOutput = true; 152147 + libraryHaskellDepends = [ 152148 + aeson base base64-bytestring binary bytestring cmdargs containers 152149 + directory exceptions filepath ghc ghc-boot ghc-parser ghc-paths 152150 + haskeline hlint http-client http-client-tls ipython-kernel parsec 152151 + process random shelly split stm strict text time transformers unix 152152 + unordered-containers utf8-string vector 152153 + ]; 152154 + executableHaskellDepends = [ 152155 + aeson base bytestring containers directory ghc ipython-kernel 152156 + process strict text transformers unix unordered-containers 152157 + ]; 152158 + testHaskellDepends = [ 152159 + base directory ghc ghc-paths here hspec hspec-contrib HUnit 152160 + raw-strings-qq setenv shelly text transformers 152161 + ]; 152162 + description = "A Haskell backend kernel for the IPython project"; 152163 + license = lib.licenses.mit; 152164 + hydraPlatforms = lib.platforms.none; 152165 + }) {}; 152166 + 152167 "ihaskell-aeson" = callPackage 152168 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, here 152169 , ihaskell, text ··· 153007 }: 153008 mkDerivation { 153009 pname = "implicit-hie-cradle"; 153010 + version = "0.5.0.0"; 153011 + sha256 = "0cfciqc0lpvksyvs3azqncbc0c2ckqg9avzd69cnd59b0mc8jsiy"; 153012 libraryHaskellDepends = [ 153013 base base16-bytestring bytestring containers directory extra 153014 filepath hie-bios hslogger implicit-hie process temporary text time ··· 154044 license = lib.licenses.bsd3; 154045 }) {}; 154046 154047 + "influxdb_1_9_2_2" = callPackage 154048 + ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal 154049 + , cabal-doctest, clock, containers, doctest, foldl, http-client 154050 + , http-types, lens, network, optional-args, raw-strings-qq 154051 + , scientific, tagged, tasty, tasty-hunit, template-haskell, text 154052 + , time, unordered-containers, vector 154053 + }: 154054 + mkDerivation { 154055 + pname = "influxdb"; 154056 + version = "1.9.2.2"; 154057 + sha256 = "08nqby0m69n8vqppprd3wk5z4r0aqs8kggkjzps106k809q0ycdg"; 154058 + isLibrary = true; 154059 + isExecutable = true; 154060 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 154061 + libraryHaskellDepends = [ 154062 + aeson attoparsec base bytestring clock containers foldl http-client 154063 + http-types lens network optional-args scientific tagged text time 154064 + unordered-containers vector 154065 + ]; 154066 + testHaskellDepends = [ 154067 + base containers doctest lens raw-strings-qq tasty tasty-hunit 154068 + template-haskell time vector 154069 + ]; 154070 + description = "InfluxDB client library for Haskell"; 154071 + license = lib.licenses.bsd3; 154072 + hydraPlatforms = lib.platforms.none; 154073 + }) {}; 154074 + 154075 "informative" = callPackage 154076 ({ mkDerivation, base, containers, csv, highlighting-kate 154077 , http-conduit, monad-logger, pandoc, persistent ··· 154360 }: 154361 mkDerivation { 154362 pname = "inline-r"; 154363 version = "0.10.5"; 154364 sha256 = "1jaj3p4vj9g1pk4rfs1sywbq04w24g137yvl6g6mlsxyzd4mldwh"; 154365 libraryHaskellDepends = [ ··· 154439 "insert-ordered-containers" = callPackage 154440 ({ mkDerivation, aeson, base, base-compat, deepseq, hashable 154441 , indexed-traversable, lens, optics-core, optics-extra, QuickCheck 154442 , semigroupoids, tasty, tasty-quickcheck, text, transformers 154443 , unordered-containers 154444 }: ··· 154456 ]; 154457 description = "Associative containers retaining insertion order for traversals"; 154458 license = lib.licenses.bsd3; 154459 }) {}; 154460 154461 "inserts" = callPackage ··· 154871 ]; 154872 description = "Integer roots and perfect powers"; 154873 license = lib.licenses.mit; 154874 + }) {}; 154875 + 154876 + "integer-roots_1_0_2_0" = callPackage 154877 + ({ mkDerivation, base, doctest, integer-gmp, smallcheck, tasty 154878 + , tasty-hunit, tasty-quickcheck, tasty-smallcheck 154879 + }: 154880 + mkDerivation { 154881 + pname = "integer-roots"; 154882 + version = "1.0.2.0"; 154883 + sha256 = "15sn3jgm8axm8f9z02aj3xdf318qwwc5qfc8b4r0n7hfr1jgrqs5"; 154884 + libraryHaskellDepends = [ base integer-gmp ]; 154885 + testHaskellDepends = [ 154886 + base doctest smallcheck tasty tasty-hunit tasty-quickcheck 154887 + tasty-smallcheck 154888 + ]; 154889 + description = "Integer roots and perfect powers"; 154890 + license = lib.licenses.mit; 154891 + hydraPlatforms = lib.platforms.none; 154892 }) {}; 154893 154894 "integer-simple" = callPackage ··· 156110 }) {}; 156111 156112 "ip2location" = callPackage 156113 + ({ mkDerivation, aeson, base, binary, bytestring, http-client 156114 + , http-client-tls, http-types, iproute, split, uri-encode 156115 + }: 156116 mkDerivation { 156117 pname = "ip2location"; 156118 + version = "8.4.0"; 156119 + sha256 = "0004hfjvy5dcvvphiarswpy7vnl4lip25qbc662l6vjia0wwn95x"; 156120 + libraryHaskellDepends = [ 156121 + aeson base binary bytestring http-client http-client-tls http-types 156122 + iproute split uri-encode 156123 + ]; 156124 description = "IP2Location Haskell package for IP geolocation"; 156125 license = lib.licenses.mit; 156126 hydraPlatforms = lib.platforms.none; ··· 156422 pname = "ipython-kernel"; 156423 version = "0.10.2.1"; 156424 sha256 = "016w7bmji3k1cnnl3vq35zq6fnqdvc2x762zfzv4ync2jz63rq38"; 156425 + revision = "1"; 156426 + editedCabalFile = "12h7nm3z53g7q0c8ckq3dqp7gdgcm6paln577c4pyhvh218iqycl"; 156427 isLibrary = true; 156428 isExecutable = true; 156429 enableSeparateDataOutput = true; ··· 156434 ]; 156435 description = "A library for creating kernels for IPython frontends"; 156436 license = lib.licenses.mit; 156437 + }) {}; 156438 + 156439 + "ipython-kernel_0_10_2_2" = callPackage 156440 + ({ mkDerivation, aeson, base, binary, bytestring, containers 156441 + , cryptonite, directory, filepath, memory, parsec, process 156442 + , temporary, text, transformers, unordered-containers, uuid 156443 + , zeromq4-haskell 156444 + }: 156445 + mkDerivation { 156446 + pname = "ipython-kernel"; 156447 + version = "0.10.2.2"; 156448 + sha256 = "1zvpabfqnkga2smp4p0p46i9llkvxdcdvf0ysafh5xia4ls2icyq"; 156449 + isLibrary = true; 156450 + isExecutable = true; 156451 + enableSeparateDataOutput = true; 156452 + libraryHaskellDepends = [ 156453 + aeson base binary bytestring containers cryptonite directory 156454 + filepath memory parsec process temporary text transformers 156455 + unordered-containers uuid zeromq4-haskell 156456 + ]; 156457 + description = "A library for creating kernels for IPython frontends"; 156458 + license = lib.licenses.mit; 156459 + hydraPlatforms = lib.platforms.none; 156460 }) {}; 156461 156462 "irc" = callPackage ··· 158562 broken = true; 158563 }) {}; 158564 158565 + "jet" = callPackage 158566 + ({ mkDerivation, aeson, aeson-extra, aeson-pretty, ansi-terminal 158567 + , base, bytestring, comonad, containers, free, hashable, Hclip 158568 + , lens, mtl, prettyprinter, prettyprinter-ansi-terminal 158569 + , recursion-schemes, recursive-zipper, scientific, text 158570 + , text-zipper, transformers, unix, unordered-containers, vector 158571 + , vty 158572 + }: 158573 + mkDerivation { 158574 + pname = "jet"; 158575 + version = "0.0.0.1"; 158576 + sha256 = "07l4lq9h9c470jrlprqc3r9iag44m97066hy8kcwdqw5iwi1yqld"; 158577 + isLibrary = true; 158578 + isExecutable = true; 158579 + libraryHaskellDepends = [ 158580 + aeson aeson-extra aeson-pretty ansi-terminal base bytestring 158581 + comonad containers free hashable Hclip lens mtl prettyprinter 158582 + prettyprinter-ansi-terminal recursion-schemes recursive-zipper 158583 + scientific text text-zipper transformers unix unordered-containers 158584 + vector vty 158585 + ]; 158586 + executableHaskellDepends = [ 158587 + aeson aeson-extra aeson-pretty ansi-terminal base bytestring 158588 + comonad containers free hashable Hclip lens mtl prettyprinter 158589 + prettyprinter-ansi-terminal recursion-schemes recursive-zipper 158590 + scientific text text-zipper transformers unix unordered-containers 158591 + vector vty 158592 + ]; 158593 + testHaskellDepends = [ 158594 + aeson aeson-extra aeson-pretty ansi-terminal base bytestring 158595 + comonad containers free hashable Hclip lens mtl prettyprinter 158596 + prettyprinter-ansi-terminal recursion-schemes recursive-zipper 158597 + scientific text text-zipper transformers unix unordered-containers 158598 + vector vty 158599 + ]; 158600 + license = lib.licenses.bsd3; 158601 + }) {}; 158602 + 158603 "jet-stream" = callPackage 158604 ({ mkDerivation, async, base, bytestring, conceit, doctest, foldl 158605 , process, stm, stm-chans, tasty, tasty-hunit, text, time ··· 160063 pname = "json-stream"; 160064 version = "0.4.2.4"; 160065 sha256 = "1ryv2738ajagb0wdkac5lka1kzprrf85gqxabafmm3g5szllxjl1"; 160066 + revision = "1"; 160067 + editedCabalFile = "0i1250irn8zxhr3vlik3zaja81a8yj7rjyfk1654bwpih9rq81f6"; 160068 libraryHaskellDepends = [ 160069 aeson base bytestring scientific text unordered-containers vector 160070 ]; ··· 160459 }: 160460 mkDerivation { 160461 pname = "jsonrpc-conduit"; 160462 + version = "0.3.7"; 160463 + sha256 = "0i1anr471rm7wil2l62mcwkqsyd62zwcgc0rb3iblr64bjd6kl80"; 160464 libraryHaskellDepends = [ 160465 aeson attoparsec base bytestring conduit conduit-extra mtl text 160466 transformers unordered-containers ··· 161017 license = lib.licenses.mit; 161018 }) {}; 161019 161020 + "jwt_0_10_1" = callPackage 161021 + ({ mkDerivation, aeson, base, bytestring, containers, cryptonite 161022 + , doctest, http-types, HUnit, lens, lens-aeson, memory, network-uri 161023 + , QuickCheck, scientific, semigroups, tasty, tasty-hunit 161024 + , tasty-quickcheck, tasty-th, text, time, unordered-containers 161025 + , vector, x509, x509-store 161026 + }: 161027 + mkDerivation { 161028 + pname = "jwt"; 161029 + version = "0.10.1"; 161030 + sha256 = "02nymdz8yrvq4vw41ah5qmb4rn01xf300d7vz18j4nif55viag4z"; 161031 + libraryHaskellDepends = [ 161032 + aeson base bytestring containers cryptonite http-types memory 161033 + network-uri scientific semigroups text time unordered-containers 161034 + vector x509 x509-store 161035 + ]; 161036 + testHaskellDepends = [ 161037 + aeson base bytestring containers cryptonite doctest http-types 161038 + HUnit lens lens-aeson memory network-uri QuickCheck scientific 161039 + semigroups tasty tasty-hunit tasty-quickcheck tasty-th text time 161040 + unordered-containers vector x509 x509-store 161041 + ]; 161042 + description = "JSON Web Token (JWT) decoding and encoding"; 161043 + license = lib.licenses.mit; 161044 + hydraPlatforms = lib.platforms.none; 161045 + }) {}; 161046 + 161047 "kademlia" = callPackage 161048 ({ mkDerivation, base, bytestring, containers, HUnit, mtl, network 161049 , QuickCheck, stm, tasty, tasty-hunit, tasty-quickcheck ··· 161628 license = lib.licenses.mit; 161629 }) {}; 161630 161631 + "katip-logstash_0_1_0_2" = callPackage 161632 + ({ mkDerivation, aeson, base, katip, logstash, retry, stm 161633 + , stm-chans, text, transformers, unliftio 161634 + }: 161635 + mkDerivation { 161636 + pname = "katip-logstash"; 161637 + version = "0.1.0.2"; 161638 + sha256 = "0hd277cvgs83aqr70g3c59nb5jc81fxhv7ngkk80gx4gc62q6l19"; 161639 + libraryHaskellDepends = [ 161640 + aeson base katip logstash retry stm stm-chans text transformers 161641 + unliftio 161642 + ]; 161643 + description = "Logstash backend for katip"; 161644 + license = lib.licenses.mit; 161645 + hydraPlatforms = lib.platforms.none; 161646 + }) {}; 161647 + 161648 "katip-logzio" = callPackage 161649 ({ mkDerivation, aeson, async, base, bytestring, errors, hedgehog 161650 , hostname, http-client, http-client-tls, http-types, katip, retry ··· 165342 license = lib.licenses.gpl3Only; 165343 }) {}; 165344 165345 + "language-docker_10_4_0" = callPackage 165346 ({ mkDerivation, base, bytestring, containers, data-default-class 165347 , hspec, hspec-megaparsec, HUnit, megaparsec, prettyprinter 165348 , QuickCheck, split, text, time 165349 }: 165350 mkDerivation { 165351 pname = "language-docker"; 165352 + version = "10.4.0"; 165353 + sha256 = "04qn8a0jaxcaircl8ib9p5m45xiay33i4i0gdpgk2qdidac9m2al"; 165354 libraryHaskellDepends = [ 165355 base bytestring containers data-default-class megaparsec 165356 prettyprinter split text time ··· 166233 pname = "language-sygus"; 166234 version = "0.1.1.2"; 166235 sha256 = "1vgd45bd866mm2w80hg8q11iz8g9ifz5ccm0sh13xrnpvfvdv862"; 166236 + revision = "1"; 166237 + editedCabalFile = "1byjfj7r2ggw122hl1vrx4crdnq9xi57xipyxfa35ixmx4r306ji"; 166238 libraryHaskellDepends = [ array base hashable text ]; 166239 testHaskellDepends = [ base deepseq tasty tasty-hunit text ]; 166240 description = "A parser and printer for the SyGuS 2.0 language."; ··· 166824 pname = "lattices"; 166825 version = "2.0.3"; 166826 sha256 = "1mn78xqwsksybggnsnx8xkmzlc9his1si14dy5v6vmlchkjym9qg"; 166827 + revision = "2"; 166828 + editedCabalFile = "0dnfpgvrq7qkza4k82siayy0rpwj0gcdd2nybzp0m25dq7lign3r"; 166829 libraryHaskellDepends = [ 166830 base base-compat containers deepseq hashable integer-logarithms 166831 OneTuple QuickCheck semigroupoids tagged transformers universe-base ··· 168071 }: 168072 mkDerivation { 168073 pname = "lens-action"; 168074 version = "0.2.6"; 168075 sha256 = "0cdprc5j6r976dmrga2zwvcr7qsv7nqy3nvncp66yyy0dk2qlwm3"; 168076 libraryHaskellDepends = [ ··· 168079 ]; 168080 description = "Monadic Getters and Folds"; 168081 license = lib.licenses.bsd3; 168082 }) {}; 168083 168084 "lens-aeson" = callPackage ··· 168087 }: 168088 mkDerivation { 168089 pname = "lens-aeson"; 168090 version = "1.1.3"; 168091 sha256 = "05jyn6rn0anhgfmk754gmmpcy5jv3ki213z4v243n9jvdjdlg7ms"; 168092 libraryHaskellDepends = [ ··· 168095 ]; 168096 description = "Law-abiding lenses for aeson"; 168097 license = lib.licenses.mit; 168098 }) {}; 168099 168100 "lens-core" = callPackage ··· 169496 169497 "libnix" = callPackage 169498 ({ mkDerivation, aeson, base, bytestring, deepseq, directory 169499 + , errors, filepath, mtl, process, tasty, tasty-hunit, text 169500 }: 169501 mkDerivation { 169502 pname = "libnix"; 169503 + version = "0.4.1.0"; 169504 + sha256 = "0p9icnwwz38whg9vnvy5id7rnj92n9mgb8jhrlahbgxhz1af7idk"; 169505 libraryHaskellDepends = [ 169506 + aeson base bytestring deepseq errors filepath mtl process text 169507 ]; 169508 testHaskellDepends = [ 169509 base directory errors tasty tasty-hunit text ··· 170033 }) {}; 170034 170035 "libyaml-streamly" = callPackage 170036 + ({ mkDerivation, base, bytestring, deepseq, safe-exceptions 170037 + , streamly 170038 + }: 170039 mkDerivation { 170040 pname = "libyaml-streamly"; 170041 + version = "0.2.1"; 170042 + sha256 = "0jh980ilaxhdhyp3vbmg0s3c2vf5ckxlkyj6n45vqb56847mg5bk"; 170043 libraryHaskellDepends = [ 170044 + base bytestring deepseq safe-exceptions streamly 170045 ]; 170046 description = "Low-level, streaming YAML interface via streamly"; 170047 license = lib.licenses.bsd3; ··· 172199 license = lib.licenses.mit; 172200 }) {}; 172201 172202 + "list-t_1_0_5_1" = callPackage 172203 + ({ mkDerivation, base, base-prelude, foldl, HTF, logict, mmorph 172204 + , monad-control, mtl, mtl-prelude, semigroups, transformers 172205 + , transformers-base 172206 + }: 172207 + mkDerivation { 172208 + pname = "list-t"; 172209 + version = "1.0.5.1"; 172210 + sha256 = "0apcqxz5i0swwfkszwh5rdrda641n4jzkdc5kp3q78ja932vavwy"; 172211 + libraryHaskellDepends = [ 172212 + base foldl logict mmorph monad-control mtl semigroups transformers 172213 + transformers-base 172214 + ]; 172215 + testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ]; 172216 + description = "ListT done right"; 172217 + license = lib.licenses.mit; 172218 + hydraPlatforms = lib.platforms.none; 172219 + }) {}; 172220 + 172221 "list-t-attoparsec" = callPackage 172222 ({ mkDerivation, attoparsec, base-prelude, either, hspec, list-t 172223 , list-t-text, text, transformers ··· 173760 }: 173761 mkDerivation { 173762 pname = "log-domain"; 173763 version = "0.13.2"; 173764 sha256 = "0i4fx9k8cwjvmj0pgfnbici1b68zmif1jmmqxplpjqy32ksnyifa"; 173765 libraryHaskellDepends = [ ··· 173768 ]; 173769 description = "Log-domain arithmetic"; 173770 license = lib.licenses.bsd3; 173771 }) {}; 173772 173773 "log-effect" = callPackage ··· 174142 }) {}; 174143 174144 "logging-facade" = callPackage 174145 ({ mkDerivation, base, call-stack, hspec, hspec-discover 174146 , transformers 174147 }: ··· 174154 testToolDepends = [ hspec-discover ]; 174155 description = "Simple logging abstraction that allows multiple back-ends"; 174156 license = lib.licenses.mit; 174157 }) {}; 174158 174159 "logging-facade-journald" = callPackage ··· 174343 ]; 174344 description = "Logstash client library for Haskell"; 174345 license = lib.licenses.mit; 174346 + }) {}; 174347 + 174348 + "logstash_0_1_0_3" = callPackage 174349 + ({ mkDerivation, aeson, async, base, bytestring, data-default-class 174350 + , exceptions, monad-control, mtl, network, resource-pool, resourcet 174351 + , retry, stm, stm-chans, time, tls, unbounded-delays, unliftio 174352 + }: 174353 + mkDerivation { 174354 + pname = "logstash"; 174355 + version = "0.1.0.3"; 174356 + sha256 = "17s7529mcvpm7pqjz5d980ra70z41zk0k52l6ps1p1zfi5p4niys"; 174357 + libraryHaskellDepends = [ 174358 + aeson async base bytestring data-default-class exceptions 174359 + monad-control mtl network resource-pool resourcet retry stm 174360 + stm-chans time tls unbounded-delays unliftio 174361 + ]; 174362 + description = "Logstash client library for Haskell"; 174363 + license = lib.licenses.mit; 174364 + hydraPlatforms = lib.platforms.none; 174365 }) {}; 174366 174367 "lojban" = callPackage ··· 174891 174892 "lorentz" = callPackage 174893 ({ mkDerivation, aeson-pretty, base-noprelude, bimap, bytestring 174894 + , constraints, containers, cryptonite, data-default 174895 + , first-class-families, fmt, lens, morley, morley-prelude, mtl 174896 + , named, optparse-applicative, singletons, template-haskell, text 174897 , text-manipulate, unordered-containers, vinyl, with-utf8 174898 }: 174899 mkDerivation { 174900 pname = "lorentz"; 174901 + version = "0.13.0"; 174902 + sha256 = "1r4pni5hnf8vaxyv62jvq9dvhwalgzczhymm4w9ixfhncnr6znv4"; 174903 libraryHaskellDepends = [ 174904 aeson-pretty base-noprelude bimap bytestring constraints containers 174905 + cryptonite data-default first-class-families fmt lens morley 174906 morley-prelude mtl named optparse-applicative singletons 174907 template-haskell text text-manipulate unordered-containers vinyl 174908 with-utf8 ··· 175489 ({ mkDerivation, base, lua5_3, tasty, tasty-hunit }: 175490 mkDerivation { 175491 pname = "lua"; 175492 + version = "2.0.2"; 175493 + sha256 = "0hsbwws16p9xrpmx4j8f9hmz8lhjjz9b8ngb3y7pxi6lx08mypgw"; 175494 configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ]; 175495 libraryHaskellDepends = [ base ]; 175496 librarySystemDepends = [ lua5_3 ]; ··· 177395 pname = "managed"; 177396 version = "1.0.8"; 177397 sha256 = "00wzfy9facwgimrilz7bxaigr79w10733h8zfgyhll644p2rnz38"; 177398 + revision = "1"; 177399 + editedCabalFile = "1b95c8lfc45lqjmykbyrls7lpnyjsv770zsdyg5fw9x65r83mdw2"; 177400 libraryHaskellDepends = [ base transformers ]; 177401 description = "A monad for managed values"; 177402 license = lib.licenses.bsd3; 177403 + maintainers = with lib.maintainers; [ Gabriel439 ]; 177404 + }) {}; 177405 + 177406 + "managed_1_0_9" = callPackage 177407 + ({ mkDerivation, base, transformers }: 177408 + mkDerivation { 177409 + pname = "managed"; 177410 + version = "1.0.9"; 177411 + sha256 = "0vx8aim8bcyyvxxnmi1xkbl3kwrvskjn99z3y8h458g7nsinsisd"; 177412 + revision = "1"; 177413 + editedCabalFile = "1sp7nsav3ln1m4kiian9y2jql0ywlswk8zb4wv8i4wkcr2cbbjkq"; 177414 + libraryHaskellDepends = [ base transformers ]; 177415 + description = "A monad for managed values"; 177416 + license = lib.licenses.bsd3; 177417 + hydraPlatforms = lib.platforms.none; 177418 maintainers = with lib.maintainers; [ Gabriel439 ]; 177419 }) {}; 177420 ··· 178564 }) {}; 178565 178566 "mason" = callPackage 178567 + ({ mkDerivation, array, base, bytestring, ghc-prim, network, text 178568 }: 178569 mkDerivation { 178570 pname = "mason"; 178571 + version = "0.2.5"; 178572 + sha256 = "0ch8qajaj83pifxy24z4srb3j51z5zn94lrx0ziqcfrpshck569j"; 178573 libraryHaskellDepends = [ 178574 + array base bytestring ghc-prim network text 178575 ]; 178576 description = "Fast and extensible bytestring builder"; 178577 license = lib.licenses.bsd3; ··· 178693 broken = true; 178694 }) {}; 178695 178696 + "massiv-persist_1_0_0_2" = callPackage 178697 ({ mkDerivation, base, bytestring, deepseq, doctest, hspec 178698 , hspec-discover, massiv, massiv-test, persist, primitive 178699 , QuickCheck 178700 }: 178701 mkDerivation { 178702 pname = "massiv-persist"; 178703 + version = "1.0.0.2"; 178704 + sha256 = "1hqmwbrxv664y4rfm37ziym25l9218pd21lz4180c0k3hfpdfsxy"; 178705 libraryHaskellDepends = [ 178706 base bytestring deepseq massiv persist primitive 178707 ]; ··· 178756 broken = true; 178757 }) {}; 178758 178759 + "massiv-serialise_1_0_0_2" = callPackage 178760 ({ mkDerivation, base, deepseq, doctest, hspec, hspec-discover 178761 , massiv, massiv-test, QuickCheck, serialise, vector 178762 }: 178763 mkDerivation { 178764 pname = "massiv-serialise"; 178765 + version = "1.0.0.2"; 178766 + sha256 = "1309nsjk36l1qiq769f9yrvn20xgf6abkmqqddzb8gqfbvhkzzym"; 178767 libraryHaskellDepends = [ base deepseq massiv serialise vector ]; 178768 testHaskellDepends = [ 178769 base doctest hspec massiv massiv-test QuickCheck serialise ··· 180964 pname = "memory"; 180965 version = "0.16.0"; 180966 sha256 = "0zzxyr2b7gj92h3jzaq1lfqfyfkfj4l636ry35191i9bp3wa0v8l"; 180967 + revision = "1"; 180968 + editedCabalFile = "02ql04drvyk8sdadxs4yi1h4aic0pxgnrph3j5ndcm6r7hfnv8py"; 180969 libraryHaskellDepends = [ 180970 base basement bytestring deepseq ghc-prim 180971 ]; ··· 181136 }: 181137 mkDerivation { 181138 pname = "mergeful-persistent"; 181139 + version = "0.1.0.0"; 181140 + sha256 = "13i2bajgxwmyr5w8qfswlpizhsajnnhgs96hav74sj5m5i6z0dpi"; 181141 libraryHaskellDepends = [ 181142 base containers mergeful microlens mtl persistent 181143 ]; ··· 181175 }: 181176 mkDerivation { 181177 pname = "mergeless-persistent"; 181178 + version = "0.1.0.0"; 181179 + sha256 = "05fazha6q5lmpagfazlrly7ms0p1jag9n6llwmr0zspx0raq35mb"; 181180 libraryHaskellDepends = [ 181181 base containers mergeless microlens persistent 181182 ]; ··· 185338 ]; 185339 description = "Logstash backend for monad-logger"; 185340 license = lib.licenses.mit; 185341 + }) {}; 185342 + 185343 + "monad-logger-logstash_0_2_0_2" = callPackage 185344 + ({ mkDerivation, aeson, base, logstash, monad-logger, retry, stm 185345 + , stm-chans, text, transformers, unliftio 185346 + }: 185347 + mkDerivation { 185348 + pname = "monad-logger-logstash"; 185349 + version = "0.2.0.2"; 185350 + sha256 = "1f0376s3xmrd0gqz0laxbqsh3h4g12bk0v885ik648bxwaliq2zf"; 185351 + libraryHaskellDepends = [ 185352 + aeson base logstash monad-logger retry stm stm-chans text 185353 + transformers unliftio 185354 + ]; 185355 + description = "Logstash backend for monad-logger"; 185356 + license = lib.licenses.mit; 185357 + hydraPlatforms = lib.platforms.none; 185358 }) {}; 185359 185360 "monad-logger-prefix" = callPackage ··· 185772 license = lib.licenses.bsd3; 185773 }) {}; 185774 185775 + "monad-skeleton_0_2" = callPackage 185776 + ({ mkDerivation, base }: 185777 + mkDerivation { 185778 + pname = "monad-skeleton"; 185779 + version = "0.2"; 185780 + sha256 = "0hqlwimwdhxwcikmy41qlkzr09dxx7ibpzr2g4czlv07c6fwlm3q"; 185781 + libraryHaskellDepends = [ base ]; 185782 + description = "Monads of program skeleta"; 185783 + license = lib.licenses.bsd3; 185784 + hydraPlatforms = lib.platforms.none; 185785 + }) {}; 185786 + 185787 "monad-st" = callPackage 185788 ({ mkDerivation, base, transformers }: 185789 mkDerivation { ··· 187160 187161 "morley" = callPackage 187162 ({ mkDerivation, aeson, aeson-casing, aeson-pretty, base-noprelude 187163 + , base58-bytestring, binary, bytestring, constraints, containers 187164 + , cryptonite, data-default, elliptic-curve, first-class-families 187165 + , fmt, galois-field, generic-deriving, gitrev, haskeline, hex-text 187166 + , lens, megaparsec, memory, MonadRandom, morley-prelude, mtl, named 187167 + , optparse-applicative, pairing, parser-combinators, scientific 187168 + , semigroups, show-type, singletons, syb, template-haskell, text 187169 + , text-manipulate, th-lift, th-lift-instances, time, timerep 187170 , uncaught-exception, unordered-containers, vector, vinyl 187171 , with-utf8, wl-pprint-text 187172 }: 187173 mkDerivation { 187174 pname = "morley"; 187175 + version = "1.16.0"; 187176 + sha256 = "02ysr8qh0jgwz25nlwk88qxkpx3jsijd854i5dp9h19n5iibh7l8"; 187177 isLibrary = true; 187178 isExecutable = true; 187179 libraryHaskellDepends = [ 187180 aeson aeson-casing aeson-pretty base-noprelude base58-bytestring 187181 binary bytestring constraints containers cryptonite data-default 187182 elliptic-curve first-class-families fmt galois-field 187183 + generic-deriving gitrev hex-text lens megaparsec memory MonadRandom 187184 + morley-prelude mtl named optparse-applicative pairing 187185 parser-combinators scientific semigroups show-type singletons syb 187186 template-haskell text text-manipulate th-lift th-lift-instances 187187 time timerep uncaught-exception unordered-containers vector vinyl 187188 with-utf8 wl-pprint-text 187189 ]; 187190 executableHaskellDepends = [ 187191 + aeson base-noprelude base58-bytestring bytestring fmt haskeline 187192 + hex-text megaparsec MonadRandom morley-prelude named 187193 + optparse-applicative text vinyl with-utf8 187194 ]; 187195 description = "Developer tools for the Michelson Language"; 187196 license = lib.licenses.mit; 187197 hydraPlatforms = lib.platforms.none; 187198 }) {}; 187199 187200 "morley-prelude" = callPackage 187201 + ({ mkDerivation, base-noprelude, int-cast, lens, universum }: 187202 mkDerivation { 187203 pname = "morley-prelude"; 187204 + version = "0.5.0"; 187205 + sha256 = "1j78ki07jh31am9i2g43crkajynb39agdk4as7gdkhj3lfrbriz4"; 187206 + libraryHaskellDepends = [ base-noprelude int-cast lens universum ]; 187207 description = "A custom prelude used in Morley"; 187208 license = lib.licenses.mit; 187209 }) {}; ··· 188234 "mptcp-pm" = callPackage 188235 ({ mkDerivation, aeson, aeson-extra, aeson-pretty, base, bytestring 188236 , bytestring-conversion, c2hs, cereal, containers, enumset 188237 + , filepath, formatting, HUnit, ip, mtl, netlink 188238 + , optparse-applicative, polysemy, polysemy-log, polysemy-log-co 188239 + , polysemy-plugin, process, readable, temporary, text, transformers 188240 , unordered-containers 188241 }: 188242 mkDerivation { 188243 pname = "mptcp-pm"; 188244 + version = "0.0.4"; 188245 + sha256 = "1i84pkifb8mqyhv4cg0gc6adss673yp25ffmlyif3zcrc3dshjyc"; 188246 isLibrary = true; 188247 isExecutable = true; 188248 libraryHaskellDepends = [ 188249 aeson aeson-extra aeson-pretty base bytestring 188250 + bytestring-conversion cereal containers enumset formatting ip mtl 188251 + netlink polysemy polysemy-log polysemy-log-co polysemy-plugin 188252 + process readable text transformers unordered-containers 188253 ]; 188254 libraryToolDepends = [ c2hs ]; 188255 executableHaskellDepends = [ 188256 aeson aeson-extra aeson-pretty base bytestring cereal containers 188257 + filepath formatting ip mtl netlink optparse-applicative polysemy 188258 + polysemy-log polysemy-log-co polysemy-plugin process readable 188259 temporary text transformers 188260 ]; 188261 testHaskellDepends = [ base HUnit ip text ]; ··· 190513 license = lib.licenses.bsd3; 190514 }) {}; 190515 190516 + "mustache_2_3_2" = callPackage 190517 + ({ mkDerivation, aeson, base, base-unicode-symbols, bytestring 190518 + , cmdargs, containers, directory, filepath, hspec, lens, mtl 190519 + , parsec, process, scientific, tar, template-haskell, temporary 190520 + , text, th-lift, unordered-containers, vector, wreq, yaml, zlib 190521 + }: 190522 + mkDerivation { 190523 + pname = "mustache"; 190524 + version = "2.3.2"; 190525 + sha256 = "0pnvnqrm7sd1iglh298yl91mv69p3ra25s5xrlk73kb56albdbaq"; 190526 + isLibrary = true; 190527 + isExecutable = true; 190528 + libraryHaskellDepends = [ 190529 + aeson base bytestring containers directory filepath mtl parsec 190530 + scientific template-haskell text th-lift unordered-containers 190531 + vector 190532 + ]; 190533 + executableHaskellDepends = [ 190534 + aeson base bytestring cmdargs filepath text yaml 190535 + ]; 190536 + testHaskellDepends = [ 190537 + aeson base base-unicode-symbols bytestring directory filepath hspec 190538 + lens process tar temporary text unordered-containers wreq yaml zlib 190539 + ]; 190540 + description = "A mustache template parser library"; 190541 + license = lib.licenses.bsd3; 190542 + hydraPlatforms = lib.platforms.none; 190543 + }) {}; 190544 + 190545 "mustache-haskell" = callPackage 190546 ({ mkDerivation, aeson, base, bytestring, directory 190547 , optparse-applicative, parsec, pretty-show, scientific, text ··· 192155 }: 192156 mkDerivation { 192157 pname = "natural"; 192158 + version = "0.3.0.6"; 192159 + sha256 = "0bnqniczz0hzdlxn3l97k51jm8ivm06plj3khzcksf9al7269hzv"; 192160 libraryHaskellDepends = [ base lens semigroupoids ]; 192161 testHaskellDepends = [ 192162 base checkers hedgehog lens QuickCheck tasty tasty-hedgehog ··· 195133 license = lib.licenses.bsd3; 195134 }) {}; 195135 195136 + "ngx-export-distribution" = callPackage 195137 + ({ mkDerivation, base, Cabal, directory, filepath }: 195138 + mkDerivation { 195139 + pname = "ngx-export-distribution"; 195140 + version = "0.3.0.0"; 195141 + sha256 = "0vxbrr82w8sw7fbp5nwi6ksfdlbgwqsdfzlyp72fx71dradqpbsx"; 195142 + libraryHaskellDepends = [ base Cabal directory filepath ]; 195143 + description = "Build custom libraries for Nginx haskell module"; 195144 + license = lib.licenses.bsd3; 195145 + }) {}; 195146 + 195147 "ngx-export-tools" = callPackage 195148 ({ mkDerivation, aeson, base, binary, bytestring, ngx-export, safe 195149 , template-haskell ··· 196458 ({ mkDerivation, base, comonad, deepseq, doctest, Glob, safe }: 196459 mkDerivation { 196460 pname = "nonempty-zipper"; 196461 version = "1.0.0.3"; 196462 sha256 = "1cifrld76j43spf265arwp2sdpkbhrb4ca2fmj4g9mw0nxj4dbqq"; 196463 libraryHaskellDepends = [ base comonad deepseq safe ]; 196464 testHaskellDepends = [ base comonad deepseq doctest Glob safe ]; 196465 description = "A non-empty comonadic list zipper"; 196466 license = lib.licenses.mit; 196467 }) {}; 196468 196469 "nonemptymap" = callPackage ··· 196572 pname = "normalization-insensitive"; 196573 version = "2.0.2"; 196574 sha256 = "1rr12rrij64hi6jkd42h4x2m86k1ra10ykzpzc38n6rfdhyiswpn"; 196575 + revision = "2"; 196576 + editedCabalFile = "1gf3msmrgd6amqhsy18b7wygjmjcz295v7pj9pdwdig7mlak1r7s"; 196577 libraryHaskellDepends = [ 196578 base bytestring deepseq hashable text unicode-transforms 196579 ]; ··· 198825 broken = true; 198826 }) {}; 198827 198828 + "oeis2_1_0_6" = callPackage 198829 + ({ mkDerivation, aeson, base, containers, hspec, http-conduit, lens 198830 + , lens-aeson, QuickCheck, text, vector 198831 + }: 198832 + mkDerivation { 198833 + pname = "oeis2"; 198834 + version = "1.0.6"; 198835 + sha256 = "1y1i2v59nhijh50akkjk9b7cnmrx33lgmk4p13fvwimkm5g9avs2"; 198836 + libraryHaskellDepends = [ 198837 + aeson base containers http-conduit lens lens-aeson text vector 198838 + ]; 198839 + testHaskellDepends = [ 198840 + aeson base containers hspec http-conduit lens lens-aeson QuickCheck 198841 + text vector 198842 + ]; 198843 + description = "Interface for Online Encyclopedia of Integer Sequences (OEIS)"; 198844 + license = lib.licenses.bsd3; 198845 + hydraPlatforms = lib.platforms.none; 198846 + broken = true; 198847 + }) {}; 198848 + 198849 "off-simple" = callPackage 198850 ({ mkDerivation, base, parsec3, vector }: 198851 mkDerivation { ··· 199354 ({ mkDerivation, base, one-liner, random }: 199355 mkDerivation { 199356 pname = "one-liner-instances"; 199357 + version = "0.1.3.0"; 199358 + sha256 = "0qkvbrxgnr51a0hdd2ap6fndipgfplsdy4lh841h8hda5d4dhabg"; 199359 libraryHaskellDepends = [ base one-liner random ]; 199360 description = "Generics-based implementations for common typeclasses"; 199361 license = lib.licenses.bsd3; ··· 199540 license = lib.licenses.bsd3; 199541 }) {}; 199542 199543 + "opaleye_0_8_0_1" = callPackage 199544 ({ mkDerivation, aeson, base, base16-bytestring, bytestring 199545 , case-insensitive, containers, contravariant, dotenv, hspec 199546 , hspec-discover, multiset, postgresql-simple, pretty ··· 199550 }: 199551 mkDerivation { 199552 pname = "opaleye"; 199553 + version = "0.8.0.1"; 199554 + sha256 = "1py950js9k80manm3xj1sfls0xnw1kd609hw268wr9izd0syfva4"; 199555 libraryHaskellDepends = [ 199556 aeson base base16-bytestring bytestring case-insensitive 199557 contravariant postgresql-simple pretty product-profunctors ··· 202177 hydraPlatforms = lib.platforms.none; 202178 }) {}; 202179 202180 + "ormolu_0_4_0_0" = callPackage 202181 + ({ mkDerivation, ansi-terminal, array, base, bytestring, Cabal 202182 + , containers, Diff, directory, dlist, exceptions, filepath 202183 + , ghc-lib-parser, gitrev, hspec, hspec-discover, mtl 202184 + , optparse-applicative, path, path-io, syb, temporary, text 202185 + }: 202186 + mkDerivation { 202187 + pname = "ormolu"; 202188 + version = "0.4.0.0"; 202189 + sha256 = "1alibf9ya2igwwjx23pjd0fi2kdaldrkfdpyr2w211irf9agy0j9"; 202190 + isLibrary = true; 202191 + isExecutable = true; 202192 + libraryHaskellDepends = [ 202193 + ansi-terminal array base bytestring Cabal containers Diff directory 202194 + dlist exceptions filepath ghc-lib-parser mtl syb text 202195 + ]; 202196 + executableHaskellDepends = [ 202197 + base filepath ghc-lib-parser gitrev optparse-applicative text 202198 + ]; 202199 + testHaskellDepends = [ 202200 + base containers directory filepath hspec path path-io temporary 202201 + text 202202 + ]; 202203 + testToolDepends = [ hspec-discover ]; 202204 + description = "A formatter for Haskell source code"; 202205 + license = lib.licenses.bsd3; 202206 + hydraPlatforms = lib.platforms.none; 202207 + }) {}; 202208 + 202209 "orthotope" = callPackage 202210 ({ mkDerivation, base, deepseq, dlist, HUnit, pretty, QuickCheck 202211 , test-framework, test-framework-hunit, test-framework-quickcheck2 ··· 202247 }: 202248 mkDerivation { 202249 pname = "ory-hydra-client"; 202250 + version = "1.10"; 202251 + sha256 = "0ciyyd1925z2wnd6w57f993dva519cm1wgcs39kiw20n2bpb2myi"; 202252 libraryHaskellDepends = [ 202253 aeson base base64-bytestring bytestring case-insensitive containers 202254 deepseq exceptions http-api-data http-client http-client-tls ··· 202260 aeson base bytestring containers hspec iso8601-time mtl QuickCheck 202261 semigroups text time transformers unordered-containers vector 202262 ]; 202263 + description = "Auto-generated ory-hydra-client API Client"; 202264 license = lib.licenses.mit; 202265 }) {}; 202266 ··· 203369 maintainers = with lib.maintainers; [ peti ]; 203370 }) {}; 203371 203372 + "pandoc_2_16_2" = callPackage 203373 ({ mkDerivation, aeson, aeson-pretty, array, attoparsec, base 203374 , base64-bytestring, binary, blaze-html, blaze-markup, bytestring 203375 , case-insensitive, citeproc, commonmark, commonmark-extensions ··· 203379 , hslua-marshalling, hslua-module-path, hslua-module-system 203380 , hslua-module-text, hslua-module-version, http-client 203381 , http-client-tls, http-types, ipynb, jira-wiki-markup, JuicyPixels 203382 + , lpeg, mtl, network, network-uri, pandoc-types, parsec, pretty 203383 , pretty-show, process, QuickCheck, random, safe, scientific, SHA 203384 , skylighting, skylighting-core, split, syb, tagsoup, tasty 203385 , tasty-bench, tasty-golden, tasty-hunit, tasty-lua ··· 203389 }: 203390 mkDerivation { 203391 pname = "pandoc"; 203392 + version = "2.16.2"; 203393 + sha256 = "0pnw4v5i20bi9j3gg0i9wlikk2fhj34x5vhh23zhj8v4p72r3wkj"; 203394 + revision = "1"; 203395 + editedCabalFile = "013i4hsgfdq38zsxq4c3l80hqxrqccy41h1ihyakamb8m3p3pq8q"; 203396 configureFlags = [ "-fhttps" "-f-trypandoc" ]; 203397 isLibrary = true; 203398 isExecutable = true; ··· 203405 emojis exceptions file-embed filepath Glob haddock-library hslua 203406 hslua-marshalling hslua-module-path hslua-module-system 203407 hslua-module-text hslua-module-version http-client http-client-tls 203408 + http-types ipynb jira-wiki-markup JuicyPixels lpeg mtl network 203409 network-uri pandoc-types parsec pretty pretty-show process random 203410 safe scientific SHA skylighting skylighting-core split syb tagsoup 203411 temporary texmath text text-conversions time unicode-collation ··· 203419 zip-archive 203420 ]; 203421 benchmarkHaskellDepends = [ 203422 + base bytestring deepseq mtl tasty-bench text 203423 ]; 203424 postInstall = '' 203425 mkdir -p $out/share/man/man1 ··· 203732 license = lib.licenses.bsd3; 203733 }) {}; 203734 203735 + "pandoc-lua-marshal" = callPackage 203736 + ({ mkDerivation, base, bytestring, exceptions, hslua 203737 + , hslua-marshalling, lua, pandoc-types, QuickCheck, safe, tasty 203738 + , tasty-hunit, tasty-lua, tasty-quickcheck, text 203739 + }: 203740 + mkDerivation { 203741 + pname = "pandoc-lua-marshal"; 203742 + version = "0.1.0.1"; 203743 + sha256 = "091aliy9ys5sq4bp69fa6ypynqvbkkr9xx8xzxq0dd4lmdy36a7q"; 203744 + libraryHaskellDepends = [ 203745 + base bytestring exceptions hslua hslua-marshalling lua pandoc-types 203746 + safe text 203747 + ]; 203748 + testHaskellDepends = [ 203749 + base bytestring exceptions hslua hslua-marshalling lua pandoc-types 203750 + QuickCheck safe tasty tasty-hunit tasty-lua tasty-quickcheck text 203751 + ]; 203752 + description = "Use pandoc types in Lua"; 203753 + license = lib.licenses.mit; 203754 + hydraPlatforms = lib.platforms.none; 203755 + broken = true; 203756 + }) {}; 203757 + 203758 "pandoc-markdown-ghci-filter" = callPackage 203759 ({ mkDerivation, aeson, base, containers, ghcid, pandoc 203760 , pandoc-types, QuickCheck, tasty, tasty-hunit, tasty-quickcheck ··· 205257 broken = true; 205258 }) {}; 205259 205260 + "parsec_3_1_15_0" = callPackage 205261 + ({ mkDerivation, base, bytestring, mtl, tasty, tasty-hunit, text }: 205262 mkDerivation { 205263 pname = "parsec"; 205264 + version = "3.1.15.0"; 205265 + sha256 = "1v8zs8zv1rk16lag2yqaxfwanjpgnh4gxw1vd70py0n04d20z0lq"; 205266 libraryHaskellDepends = [ base bytestring mtl text ]; 205267 + testHaskellDepends = [ base mtl tasty tasty-hunit ]; 205268 description = "Monadic parser combinators"; 205269 + license = lib.licenses.bsd2; 205270 hydraPlatforms = lib.platforms.none; 205271 }) {}; 205272 ··· 205760 }: 205761 mkDerivation { 205762 pname = "parsley"; 205763 + version = "2.0.0.0"; 205764 + sha256 = "0h6msk2a11bq4bzl5gs3aq0sqd1z13smp2n8bxsr49vm51hmd1qh"; 205765 libraryHaskellDepends = [ 205766 base parsley-core template-haskell text 205767 ]; ··· 205788 }: 205789 mkDerivation { 205790 pname = "parsley-core"; 205791 + version = "2.0.0.0"; 205792 + sha256 = "1v46wpi80fdjpdgr6jcrhljxjrmf1gf7cxmi3y0sdlininr4273i"; 205793 libraryHaskellDepends = [ 205794 array base bytestring containers dependent-map dependent-sum 205795 ghc-prim hashable mtl pretty-terminal template-haskell text ··· 206402 pname = "path"; 206403 version = "0.9.0"; 206404 sha256 = "14h811rrydpiwi1rdi5wmcdlcq2qjld3iv92p4czqf08a7lxaz4g"; 206405 + libraryHaskellDepends = [ 206406 + aeson base deepseq exceptions filepath hashable template-haskell 206407 + text 206408 + ]; 206409 + testHaskellDepends = [ 206410 + aeson base bytestring filepath genvalidity genvalidity-hspec 206411 + genvalidity-property hspec mtl QuickCheck template-haskell validity 206412 + ]; 206413 + description = "Support for well-typed paths"; 206414 + license = lib.licenses.bsd3; 206415 + hydraPlatforms = lib.platforms.none; 206416 + }) {}; 206417 + 206418 + "path_0_9_1" = callPackage 206419 + ({ mkDerivation, aeson, base, bytestring, deepseq, exceptions 206420 + , filepath, genvalidity, genvalidity-hspec, genvalidity-property 206421 + , hashable, hspec, mtl, QuickCheck, template-haskell, text 206422 + , validity 206423 + }: 206424 + mkDerivation { 206425 + pname = "path"; 206426 + version = "0.9.1"; 206427 + sha256 = "0n0mp0cs2abybhpbrj1xgdcllcrxnjpw0c663aapm48irrq1fjbf"; 206428 libraryHaskellDepends = [ 206429 aeson base deepseq exceptions filepath hashable template-haskell 206430 text ··· 207922 }: 207923 mkDerivation { 207924 pname = "perceptual-hash"; 207925 + version = "0.1.4.5"; 207926 + sha256 = "1qh7crpb78pd7kn7g8sh5h8wr911ldz30p23m9lqfk0cyxd1pxvy"; 207927 isLibrary = true; 207928 isExecutable = true; 207929 enableSeparateDataOutput = true; ··· 210340 }) {}; 210341 210342 "photoname" = callPackage 210343 + ({ mkDerivation, ansi-wl-pprint, base, containers, directory 210344 + , filepath, heredoc, hsexif, hslogger, mtl, newtype-generics 210345 + , optparse-applicative, parsec, process, regex-posix, tasty 210346 + , tasty-hunit, tasty-quickcheck, time, unix 210347 }: 210348 mkDerivation { 210349 pname = "photoname"; 210350 + version = "5.0"; 210351 + sha256 = "0g17jbnrgl2crgd04sy9s8d1g8da7p8wxq7hgnlg9h4n40yjxbd8"; 210352 + isLibrary = true; 210353 isExecutable = true; 210354 + libraryHaskellDepends = [ 210355 + base containers directory filepath hsexif hslogger mtl 210356 + newtype-generics parsec process time unix 210357 + ]; 210358 executableHaskellDepends = [ 210359 + ansi-wl-pprint base directory filepath heredoc hslogger 210360 + newtype-generics optparse-applicative unix 210361 ]; 210362 testHaskellDepends = [ 210363 + base directory filepath process regex-posix tasty tasty-hunit 210364 + tasty-quickcheck time unix 210365 ]; 210366 description = "Rename photo image files based on EXIF shoot date"; 210367 license = lib.licenses.isc; 210368 }) {}; 210369 210370 "phraskell" = callPackage ··· 210681 broken = true; 210682 }) {}; 210683 210684 + "pid" = callPackage 210685 + ({ mkDerivation, base, mtl }: 210686 + mkDerivation { 210687 + pname = "pid"; 210688 + version = "0.1.0.1"; 210689 + sha256 = "0qabdl1y7k7ycsg4r4hhq8lvq8vaps5rhv4r45mwfbj90vm1n9wa"; 210690 + isLibrary = false; 210691 + isExecutable = true; 210692 + executableHaskellDepends = [ base mtl ]; 210693 + description = "a simple pid controller"; 210694 + license = "unknown"; 210695 + }) {}; 210696 + 210697 "pid1" = callPackage 210698 ({ mkDerivation, base, directory, process, unix }: 210699 mkDerivation { ··· 211473 testHaskellDepends = [ async base pipes stm ]; 211474 description = "Concurrency for the pipes ecosystem"; 211475 license = lib.licenses.bsd3; 211476 + maintainers = with lib.maintainers; [ Gabriel439 ]; 211477 + }) {}; 211478 + 211479 + "pipes-concurrency_2_0_13" = callPackage 211480 + ({ mkDerivation, async, base, contravariant, pipes, stm, void }: 211481 + mkDerivation { 211482 + pname = "pipes-concurrency"; 211483 + version = "2.0.13"; 211484 + sha256 = "085xvzpl25k5fx9lj35pznw51rfq6037shlcikdmqn4hqi5gxk5l"; 211485 + libraryHaskellDepends = [ 211486 + async base contravariant pipes stm void 211487 + ]; 211488 + testHaskellDepends = [ async base pipes stm ]; 211489 + description = "Concurrency for the pipes ecosystem"; 211490 + license = lib.licenses.bsd3; 211491 + hydraPlatforms = lib.platforms.none; 211492 maintainers = with lib.maintainers; [ Gabriel439 ]; 211493 }) {}; 211494 ··· 211604 pname = "pipes-extras"; 211605 version = "1.0.15"; 211606 sha256 = "1cyb05bv5xkarab3090ikpjiqm79lr46n3nalplliz8jr4x67a82"; 211607 + revision = "4"; 211608 + editedCabalFile = "0dis0i8l76cd94qgabvjbmn7iqwnqqdf8kgj4d5nby0xc02mqbw9"; 211609 libraryHaskellDepends = [ base foldl lens pipes transformers ]; 211610 testHaskellDepends = [ 211611 base HUnit pipes test-framework test-framework-hunit transformers ··· 214177 license = lib.licenses.bsd3; 214178 }) {}; 214179 214180 + "polysemy_1_7_1_0" = callPackage 214181 ({ mkDerivation, async, base, Cabal, cabal-doctest, containers 214182 , criterion, doctest, first-class-families, free, freer-simple 214183 , hspec, hspec-discover, inspection-testing, mtl, QuickCheck, stm ··· 214186 }: 214187 mkDerivation { 214188 pname = "polysemy"; 214189 + version = "1.7.1.0"; 214190 + sha256 = "09629gyjdp567dsqk0mgzzk5glrwnpn0cwanank5z3zkqg05d5ac"; 214191 setupHaskellDepends = [ base Cabal cabal-doctest ]; 214192 libraryHaskellDepends = [ 214193 async base containers first-class-families mtl QuickCheck stm syb ··· 214606 broken = true; 214607 }) {}; 214608 214609 + "polysemy-plugin_0_4_3_0" = callPackage 214610 ({ mkDerivation, base, Cabal, cabal-doctest, containers, doctest 214611 , ghc, ghc-tcplugins-extra, hspec, hspec-discover 214612 , inspection-testing, polysemy, should-not-typecheck, syb ··· 214614 }: 214615 mkDerivation { 214616 pname = "polysemy-plugin"; 214617 + version = "0.4.3.0"; 214618 + sha256 = "1y4najvwas9rmd7xzn4k1nkpdld86606z3qzky7zr1d3l1z1vafb"; 214619 setupHaskellDepends = [ base Cabal cabal-doctest ]; 214620 libraryHaskellDepends = [ 214621 base containers ghc ghc-tcplugins-extra polysemy syb transformers ··· 216478 pname = "postgresql-simple"; 216479 version = "0.6.4"; 216480 sha256 = "0rz2bklxp4pvbxb2w49h5p6pbwabn6d5d4j4mrya4fpa0d13k43d"; 216481 + revision = "5"; 216482 + editedCabalFile = "0vnawd7f2lwqgh1hi6s5y5wny85a12i27haz93bmjvpmdljjmsjk"; 216483 libraryHaskellDepends = [ 216484 aeson attoparsec base bytestring bytestring-builder 216485 case-insensitive containers hashable Only postgresql-libpq ··· 217233 }: 217234 mkDerivation { 217235 pname = "powerdns"; 217236 + version = "0.2.0"; 217237 + sha256 = "0ddrgvpvss342zmnyd0svj7424k8gynd7bwb2i0r10zw1l4kai26"; 217238 libraryHaskellDepends = [ 217239 aeson base base64-bytestring bytestring case-insensitive containers 217240 deepseq servant servant-client servant-client-core text time ··· 218287 license = lib.licenses.mit; 218288 }) {}; 218289 218290 + "pretty-relative-time_0_3_0_0" = callPackage 218291 + ({ mkDerivation, base, genvalidity, genvalidity-hspec 218292 + , genvalidity-time, hspec, QuickCheck, time, validity 218293 + , validity-time 218294 + }: 218295 + mkDerivation { 218296 + pname = "pretty-relative-time"; 218297 + version = "0.3.0.0"; 218298 + sha256 = "1sqdz7bh99ya0d8wb721bbs25cqjfhg81q8xxvrmlamrrgc1z7bh"; 218299 + libraryHaskellDepends = [ base time validity validity-time ]; 218300 + testHaskellDepends = [ 218301 + base genvalidity genvalidity-hspec genvalidity-time hspec 218302 + QuickCheck time validity validity-time 218303 + ]; 218304 + description = "Pretty relative time"; 218305 + license = lib.licenses.mit; 218306 + hydraPlatforms = lib.platforms.none; 218307 + }) {}; 218308 + 218309 "pretty-show" = callPackage 218310 ({ mkDerivation, array, base, filepath, ghc-prim, happy 218311 , haskell-lexer, pretty, text ··· 218885 license = lib.licenses.mit; 218886 }) {}; 218887 218888 + "primitive-extras_0_10_1_2" = callPackage 218889 ({ mkDerivation, base, bytestring, cereal, deferred-folds, focus 218890 , foldl, list-t, primitive, primitive-unlifted, profunctors 218891 , QuickCheck, quickcheck-instances, rerebase, tasty, tasty-hunit ··· 218893 }: 218894 mkDerivation { 218895 pname = "primitive-extras"; 218896 + version = "0.10.1.2"; 218897 + sha256 = "0517ln7ihsqb15m0h0nw9qjh73kdwcc2nkg9n39hnmhiw4im9d1i"; 218898 libraryHaskellDepends = [ 218899 base bytestring cereal deferred-folds focus foldl list-t primitive 218900 primitive-unlifted profunctors vector ··· 219030 ({ mkDerivation, base, bytestring, primitive, stm, text-short }: 219031 mkDerivation { 219032 pname = "primitive-unlifted"; 219033 + version = "0.1.3.1"; 219034 + sha256 = "1gilzgclpvz200sybw86nmdm7084nrklscq48cs36qqlgcd0wcwb"; 219035 libraryHaskellDepends = [ base bytestring primitive text-short ]; 219036 testHaskellDepends = [ base primitive stm ]; 219037 description = "Primitive GHC types with unlifted types inside"; ··· 219761 license = lib.licenses.bsd3; 219762 }) {}; 219763 219764 + "product-profunctors_0_11_0_3" = callPackage 219765 + ({ mkDerivation, base, bifunctors, contravariant, criterion 219766 + , deepseq, profunctors, tagged, template-haskell, th-abstraction 219767 + }: 219768 + mkDerivation { 219769 + pname = "product-profunctors"; 219770 + version = "0.11.0.3"; 219771 + sha256 = "11q9vxj7pnby51gwgm0d17gd6ps2bxwrvajpqaqcg6bsdgdzvjws"; 219772 + libraryHaskellDepends = [ 219773 + base bifunctors contravariant profunctors tagged template-haskell 219774 + th-abstraction 219775 + ]; 219776 + testHaskellDepends = [ base profunctors ]; 219777 + benchmarkHaskellDepends = [ base criterion deepseq ]; 219778 + description = "product-profunctors"; 219779 + license = lib.licenses.bsd3; 219780 + hydraPlatforms = lib.platforms.none; 219781 + }) {}; 219782 + 219783 "prof-flamegraph" = callPackage 219784 ({ mkDerivation, base, optparse-applicative }: 219785 mkDerivation { ··· 219959 tagged transformers 219960 ]; 219961 description = "Profunctors"; 219962 + license = lib.licenses.bsd3; 219963 + }) {}; 219964 + 219965 + "program" = callPackage 219966 + ({ mkDerivation, base }: 219967 + mkDerivation { 219968 + pname = "program"; 219969 + version = "0.1.0.0"; 219970 + sha256 = "00zzd0fnkjvrazmc9icn0zvzdb6imbw4ajb4fip3w4zv63qzv266"; 219971 + libraryHaskellDepends = [ base ]; 219972 + description = "Programs with Environments and Managed Resources"; 219973 license = lib.licenses.bsd3; 219974 }) {}; 219975 ··· 222646 }: 222647 mkDerivation { 222648 pname = "pusher-http-haskell"; 222649 + version = "2.1.0.7"; 222650 + sha256 = "0dk3m4gxcifarmn8l92bqlpn1n6fdmryjazspj0nm1a6r0zc1q9p"; 222651 libraryHaskellDepends = [ 222652 aeson base base16-bytestring bytestring cryptonite hashable 222653 http-client http-client-tls http-types memory text time ··· 223823 }: 223824 mkDerivation { 223825 pname = "quic"; 223826 + version = "0.0.1"; 223827 + sha256 = "0vwcfzkz56ldp8fx322vgxrh8g4f236zrv05rg9839x95l6jscsv"; 223828 isLibrary = true; 223829 isExecutable = true; 223830 libraryHaskellDepends = [ ··· 224060 license = lib.licenses.bsd3; 224061 }) {}; 224062 224063 + "quickcheck-instances_0_3_27" = callPackage 224064 ({ mkDerivation, array, base, bytestring, case-insensitive 224065 , containers, data-fix, hashable, integer-logarithms, old-time 224066 , OneTuple, QuickCheck, scientific, splitmix, strict, tagged, text ··· 224069 }: 224070 mkDerivation { 224071 pname = "quickcheck-instances"; 224072 + version = "0.3.27"; 224073 + sha256 = "10vb3rl1ma9x4qdych9vn8gj9kngkqs2b97f4s6s1a908ddxv4m5"; 224074 libraryHaskellDepends = [ 224075 array base bytestring case-insensitive containers data-fix hashable 224076 integer-logarithms old-time OneTuple QuickCheck scientific splitmix ··· 226669 broken = true; 226670 }) {}; 226671 226672 + "rattletrap_11_2_4" = callPackage 226673 ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring 226674 , containers, filepath, http-client, http-client-tls, text 226675 }: 226676 mkDerivation { 226677 pname = "rattletrap"; 226678 + version = "11.2.4"; 226679 + sha256 = "0cqk2sfh4brm94zvy3d23khxl2x7zrjc0c62ww96549qpvp8za4y"; 226680 isLibrary = true; 226681 isExecutable = true; 226682 libraryHaskellDepends = [ ··· 227929 license = lib.licenses.mit; 227930 }) {}; 227931 227932 + "rebase_1_13_2" = callPackage 227933 + ({ mkDerivation, base, bifunctors, bytestring, comonad, containers 227934 + , contravariant, deepseq, dlist, either, groups, hashable 227935 + , hashable-time, invariant, mtl, profunctors, scientific, selective 227936 + , semigroupoids, stm, text, time, transformers 227937 + , unordered-containers, uuid-types, vector, vector-instances, void 227938 + }: 227939 + mkDerivation { 227940 + pname = "rebase"; 227941 + version = "1.13.2"; 227942 + sha256 = "0lvz4cx9bgny4s5az75clza90nb573vqr8c2ls0bmrsb7sx4p3jh"; 227943 + libraryHaskellDepends = [ 227944 + base bifunctors bytestring comonad containers contravariant deepseq 227945 + dlist either groups hashable hashable-time invariant mtl 227946 + profunctors scientific selective semigroupoids stm text time 227947 + transformers unordered-containers uuid-types vector 227948 + vector-instances void 227949 + ]; 227950 + description = "A more progressive alternative to the \"base\" package"; 227951 + license = lib.licenses.mit; 227952 + hydraPlatforms = lib.platforms.none; 227953 + }) {}; 227954 + 227955 "rebindable" = callPackage 227956 ({ mkDerivation, base, data-default-class, indexed }: 227957 mkDerivation { ··· 228308 base bytestring containers filepath gtk mtl process 228309 ]; 228310 description = "Count lines in files and display them hierarchically"; 228311 + license = lib.licenses.bsd3; 228312 + }) {}; 228313 + 228314 + "recursive-zipper" = callPackage 228315 + ({ mkDerivation, base, comonad, containers, free, lens, mtl 228316 + , recursion-schemes, transformers 228317 + }: 228318 + mkDerivation { 228319 + pname = "recursive-zipper"; 228320 + version = "0.0.0.1"; 228321 + sha256 = "0qv8zwss6csbhib840d8r45bkrpnvx832vvi1kl749mh2aywi5rl"; 228322 + libraryHaskellDepends = [ 228323 + base comonad containers free lens mtl recursion-schemes 228324 + transformers 228325 + ]; 228326 + description = "Zippers over recursive data structures"; 228327 license = lib.licenses.bsd3; 228328 }) {}; 228329 ··· 228748 libraryHaskellDepends = [ base stm transformers ]; 228749 description = "A type class for monads with references using type families"; 228750 license = lib.licenses.bsd3; 228751 + }) {}; 228752 + 228753 + "ref-tf_0_5_0_1" = callPackage 228754 + ({ mkDerivation, base, stm, transformers }: 228755 + mkDerivation { 228756 + pname = "ref-tf"; 228757 + version = "0.5.0.1"; 228758 + sha256 = "0isilgcbw12zyh8s2liaj5r9r5m3yg1xskyhag6f36qi60y29hx5"; 228759 + libraryHaskellDepends = [ base stm transformers ]; 228760 + description = "A type class for monads with references using type families"; 228761 + license = lib.licenses.bsd3; 228762 + hydraPlatforms = lib.platforms.none; 228763 }) {}; 228764 228765 "refact" = callPackage ··· 229961 }) {}; 229962 229963 "regex-base" = callPackage 229964 ({ mkDerivation, array, base, bytestring, containers, text }: 229965 mkDerivation { 229966 pname = "regex-base"; ··· 229969 libraryHaskellDepends = [ array base bytestring containers text ]; 229970 description = "Common \"Text.Regex.*\" API for Regex matching"; 229971 license = lib.licenses.bsd3; 229972 }) {}; 229973 229974 "regex-compat" = callPackage ··· 230678 broken = true; 230679 }) {}; 230680 230681 + "registry_0_2_1_0" = callPackage 230682 + ({ mkDerivation, async, base, bytestring, containers, directory 230683 + , exceptions, generic-lens, hashable, hedgehog, io-memoize, mmorph 230684 + , MonadRandom, mtl, multimap, protolude, random, resourcet 230685 + , semigroupoids, semigroups, tasty, tasty-discover, tasty-hedgehog 230686 + , tasty-th, template-haskell, text, transformers-base, universum 230687 + }: 230688 + mkDerivation { 230689 + pname = "registry"; 230690 + version = "0.2.1.0"; 230691 + sha256 = "1qsw33fysnq5lxb48ckcwja7ws99fji5w2hkq7y3nly8yj6mdna3"; 230692 + libraryHaskellDepends = [ 230693 + base containers exceptions hashable mmorph mtl protolude resourcet 230694 + semigroupoids semigroups template-haskell text transformers-base 230695 + ]; 230696 + testHaskellDepends = [ 230697 + async base bytestring containers directory exceptions generic-lens 230698 + hashable hedgehog io-memoize mmorph MonadRandom mtl multimap 230699 + protolude random resourcet semigroupoids semigroups tasty 230700 + tasty-discover tasty-hedgehog tasty-th template-haskell text 230701 + transformers-base universum 230702 + ]; 230703 + testToolDepends = [ tasty-discover ]; 230704 + description = "data structure for assembling components"; 230705 + license = lib.licenses.mit; 230706 + hydraPlatforms = lib.platforms.none; 230707 + broken = true; 230708 + }) {}; 230709 + 230710 "registry-hedgehog" = callPackage 230711 + ({ mkDerivation, base, containers, hedgehog, mmorph, multimap 230712 + , protolude, registry, tasty, tasty-discover, tasty-hedgehog 230713 + , tasty-th, template-haskell, text, transformers, universum 230714 + , unordered-containers 230715 }: 230716 mkDerivation { 230717 pname = "registry-hedgehog"; 230718 + version = "0.4.1.0"; 230719 + sha256 = "1wak4bg7fkd1ywacg74snr1wvain62mg62i7wqk5zllypf3rxkxi"; 230720 libraryHaskellDepends = [ 230721 base containers hedgehog mmorph multimap protolude registry tasty 230722 tasty-discover tasty-hedgehog tasty-th template-haskell text 230723 transformers universum unordered-containers 230724 ]; 230725 testHaskellDepends = [ 230726 + base containers hedgehog mmorph multimap protolude registry tasty 230727 + tasty-discover tasty-hedgehog tasty-th template-haskell text 230728 + transformers universum unordered-containers 230729 ]; 230730 testToolDepends = [ tasty-discover ]; 230731 description = "utilities to work with Hedgehog generators and `registry`"; ··· 230939 maintainers = with lib.maintainers; [ sternenseemann ]; 230940 }) {}; 230941 230942 + "rel8_1_2_1_0" = callPackage 230943 + ({ mkDerivation, aeson, base, bifunctors, bytestring 230944 + , case-insensitive, comonad, containers, contravariant, hasql 230945 + , hasql-transaction, hedgehog, mmorph, opaleye, pretty 230946 + , product-profunctors, profunctors, scientific, semialign 230947 + , semigroupoids, tasty, tasty-hedgehog, text, these, time 230948 + , tmp-postgres, transformers, uuid 230949 + }: 230950 + mkDerivation { 230951 + pname = "rel8"; 230952 + version = "1.2.1.0"; 230953 + sha256 = "0f4rnyr90f989ww4hh8h65fhnj16ir144qsin9abc767fxnb7wis"; 230954 + libraryHaskellDepends = [ 230955 + aeson base bifunctors bytestring case-insensitive comonad 230956 + contravariant hasql opaleye pretty product-profunctors profunctors 230957 + scientific semialign semigroupoids text these time uuid 230958 + ]; 230959 + testHaskellDepends = [ 230960 + base bytestring case-insensitive containers hasql hasql-transaction 230961 + hedgehog mmorph scientific tasty tasty-hedgehog text time 230962 + tmp-postgres transformers uuid 230963 + ]; 230964 + description = "Hey! Hey! Can u rel8?"; 230965 + license = lib.licenses.bsd3; 230966 + hydraPlatforms = lib.platforms.none; 230967 + maintainers = with lib.maintainers; [ sternenseemann ]; 230968 + }) {}; 230969 + 230970 "relacion" = callPackage 230971 ({ mkDerivation, array, base, containers }: 230972 mkDerivation { ··· 232446 libraryHaskellDepends = [ rebase ]; 232447 description = "Reexports from \"base\" with a bunch of other standard libraries"; 232448 license = lib.licenses.mit; 232449 + }) {}; 232450 + 232451 + "rerebase_1_13_2" = callPackage 232452 + ({ mkDerivation, rebase }: 232453 + mkDerivation { 232454 + pname = "rerebase"; 232455 + version = "1.13.2"; 232456 + sha256 = "04bzdyz17azwx6afdys3vh8iydrq6z58j77ib4pwvmz54v2jfcaa"; 232457 + libraryHaskellDepends = [ rebase ]; 232458 + description = "Reexports from \"base\" with a bunch of other standard libraries"; 232459 + license = lib.licenses.mit; 232460 + hydraPlatforms = lib.platforms.none; 232461 }) {}; 232462 232463 "reroute" = callPackage ··· 235721 ]; 235722 description = "Directed rounding for built-in floating types"; 235723 license = lib.licenses.bsd3; 235724 }) {}; 235725 235726 "rounding" = callPackage ··· 236136 }: 236137 mkDerivation { 236138 pname = "rrule"; 236139 + version = "0.1.2"; 236140 + sha256 = "0mq2nlkw7244x2y8qh1m1mpff3ykygr7xrvadjfrx6m6sbp4wl1n"; 236141 libraryHaskellDepends = [ 236142 base megaparsec parser-combinators text time 236143 ]; ··· 237112 license = lib.licenses.mit; 237113 }) {}; 237114 237115 + "safe-json_1_1_2_0" = callPackage 237116 + ({ mkDerivation, aeson, base, bytestring, containers, dlist 237117 + , generic-arbitrary, hashable, quickcheck-instances, scientific 237118 + , tasty, tasty-hunit, tasty-quickcheck, temporary, text, time 237119 + , unordered-containers, uuid, uuid-types, vector 237120 + }: 237121 + mkDerivation { 237122 + pname = "safe-json"; 237123 + version = "1.1.2.0"; 237124 + sha256 = "1908s40l6chnxlxnqmn95p8hvr5jbjm8hm5dnjbq7czxpw22x7s2"; 237125 + libraryHaskellDepends = [ 237126 + aeson base bytestring containers dlist hashable scientific tasty 237127 + tasty-hunit tasty-quickcheck text time unordered-containers 237128 + uuid-types vector 237129 + ]; 237130 + testHaskellDepends = [ 237131 + aeson base bytestring containers dlist generic-arbitrary hashable 237132 + quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck 237133 + temporary text time unordered-containers uuid uuid-types vector 237134 + ]; 237135 + description = "Automatic JSON format versioning"; 237136 + license = lib.licenses.mit; 237137 + hydraPlatforms = lib.platforms.none; 237138 + }) {}; 237139 + 237140 "safe-lazy-io" = callPackage 237141 ({ mkDerivation, base, extensible-exceptions, parallel, strict-io 237142 }: ··· 241153 }: 241154 mkDerivation { 241155 pname = "secure-memory"; 241156 + version = "0.0.0.2"; 241157 + sha256 = "1635ygbqbr6x86y6n88j4d8hlwqskic2ri7vc6fiwsy650zr563q"; 241158 isLibrary = true; 241159 isExecutable = true; 241160 libraryHaskellDepends = [ ··· 241852 pname = "semirings"; 241853 version = "0.6"; 241854 sha256 = "16q535bvjl7395sqkx6zlw48y4fzr7irp44pcp7w9irpn4cncdcr"; 241855 + revision = "1"; 241856 + editedCabalFile = "1c06yhfa053sv3rfz0d72a33l5qb0xmj1b3hy2z7pzxrcay6g1yc"; 241857 libraryHaskellDepends = [ 241858 base base-compat-batteries containers hashable unordered-containers 241859 ]; ··· 242089 }: 242090 mkDerivation { 242091 pname = "seonbi"; 242092 + version = "0.3.1"; 242093 + sha256 = "11hbx3d0d3c08axbxa275rlsa6kgr7p4h6wdwvlpnwmp7h4sgasi"; 242094 isLibrary = true; 242095 isExecutable = true; 242096 enableSeparateDataOutput = true; ··· 243730 }) {}; 243731 243732 "servant-hmac-auth" = callPackage 243733 + ({ mkDerivation, base, base64-bytestring, binary, bytestring 243734 , case-insensitive, containers, cryptonite, http-client, http-types 243735 + , memory, mtl, servant, servant-client, servant-client-core 243736 + , servant-server, transformers, wai 243737 }: 243738 mkDerivation { 243739 pname = "servant-hmac-auth"; 243740 + version = "0.1.3"; 243741 + sha256 = "057v665rkdblqga71sm4pk7gklwpnrgkwg540ky7mmhmdm2nicj4"; 243742 libraryHaskellDepends = [ 243743 base base64-bytestring binary bytestring case-insensitive 243744 containers cryptonite http-client http-types memory mtl servant 243745 servant-client servant-client-core servant-server transformers wai 243746 ]; 243747 testHaskellDepends = [ base ]; 243748 description = "Servant authentication with HMAC"; 243749 license = lib.licenses.mit; ··· 247432 pname = "shelly"; 247433 version = "1.9.0"; 247434 sha256 = "1kma77gixhyciimh19p64h1ndbcrs9qhk8fgyv71iqh5q57zvday"; 247435 + revision = "2"; 247436 + editedCabalFile = "0d08dlfgwi2m3wvcmcrcsn2g8lpqzkmxwxw74sysh94qb1gasr0y"; 247437 isLibrary = true; 247438 isExecutable = true; 247439 libraryHaskellDepends = [ ··· 247493 }: 247494 mkDerivation { 247495 pname = "shh"; 247496 + version = "0.7.2.0"; 247497 + sha256 = "0rcjvkpxdwvhgn7i1dindhbskr8kwgm977kxgi2xcv398c71014y"; 247498 isLibrary = true; 247499 isExecutable = true; 247500 libraryHaskellDepends = [ ··· 247505 async base bytestring deepseq directory temporary unix 247506 ]; 247507 testHaskellDepends = [ 247508 + async base bytestring directory doctest filepath tasty tasty-hunit 247509 + tasty-quickcheck utf8-string 247510 ]; 247511 testToolDepends = [ markdown-unlit ]; 247512 description = "Simple shell scripting from Haskell"; ··· 254178 pname = "some"; 254179 version = "1.0.3"; 254180 sha256 = "0w3syapwz9v916zf1i4f8vxymdfg7syc2cpxgnqr018pbswzxrk2"; 254181 + revision = "2"; 254182 + editedCabalFile = "1w3snkgqhrgi2x2bdny9i7a9ybmal3asrh6g6kg8v86kq1gyr34k"; 254183 libraryHaskellDepends = [ base deepseq ]; 254184 testHaskellDepends = [ base ]; 254185 description = "Existential type: Some"; ··· 254623 pname = "spacecookie"; 254624 version = "1.0.0.0"; 254625 sha256 = "0v61n5afcrfmj7dd51h4wi7d5hzl4r86wvaymhsi3h4jday58ln0"; 254626 + revision = "1"; 254627 + editedCabalFile = "108pigixhnfgawqhsb6781dhvi4pyv7f5dyww1s4jahi7ix22d44"; 254628 isLibrary = true; 254629 isExecutable = true; 254630 libraryHaskellDepends = [ ··· 254645 maintainers = with lib.maintainers; [ sternenseemann ]; 254646 }) {}; 254647 254648 + "spacecookie_1_0_0_1" = callPackage 254649 + ({ mkDerivation, aeson, async, attoparsec, base, bytestring 254650 + , containers, directory, download-curl, fast-logger 254651 + , filepath-bytestring, hxt-unicode, mtl, process, socket, systemd 254652 + , tasty, tasty-expected-failure, tasty-hunit, text, transformers 254653 + , unix 254654 + }: 254655 + mkDerivation { 254656 + pname = "spacecookie"; 254657 + version = "1.0.0.1"; 254658 + sha256 = "1qv48gbq5h1vqinihgzjgljd7igrnypp55kvy9f7q0vyxha5gg88"; 254659 + isLibrary = true; 254660 + isExecutable = true; 254661 + libraryHaskellDepends = [ 254662 + async attoparsec base bytestring containers directory 254663 + filepath-bytestring hxt-unicode mtl socket text transformers unix 254664 + ]; 254665 + executableHaskellDepends = [ 254666 + aeson attoparsec base bytestring containers directory fast-logger 254667 + filepath-bytestring mtl socket systemd text transformers unix 254668 + ]; 254669 + testHaskellDepends = [ 254670 + attoparsec base bytestring containers directory download-curl 254671 + filepath-bytestring process tasty tasty-expected-failure 254672 + tasty-hunit 254673 + ]; 254674 + description = "Gopher server library and daemon"; 254675 + license = lib.licenses.gpl3Only; 254676 + hydraPlatforms = lib.platforms.none; 254677 + maintainers = with lib.maintainers; [ sternenseemann ]; 254678 + }) {}; 254679 + 254680 "spacefill" = callPackage 254681 ({ mkDerivation, base }: 254682 mkDerivation { ··· 257123 }: 257124 mkDerivation { 257125 pname = "stack-clean-old"; 257126 + version = "0.4.3"; 257127 + sha256 = "1978fc1v7i6g41fa755sb2lpwbkahr76w5f5bm0iqv5hid536a60"; 257128 isLibrary = false; 257129 isExecutable = true; 257130 executableHaskellDepends = [ ··· 258928 pname = "step-function"; 258929 version = "0.2"; 258930 sha256 = "1mg7zqqs32zdh1x1738kk0yydyksbhx3y3x8n31f7byk5fvzqq6j"; 258931 + revision = "7"; 258932 + editedCabalFile = "0fnzln04c8wvhag730hl3h4wwykizwwg5xzsbw5qd3zzx2fmbywz"; 258933 libraryHaskellDepends = [ 258934 base base-compat-batteries containers deepseq QuickCheck 258935 ]; ··· 259188 }: 259189 mkDerivation { 259190 pname = "stm-hamt"; 259191 + version = "1.2.0.7"; 259192 + sha256 = "1sny6ippahlxhm94888lj19ar36cnjilbw2yza5p223mv0cgnapx"; 259193 libraryHaskellDepends = [ 259194 base deferred-folds focus hashable list-t primitive 259195 primitive-extras transformers ··· 259648 , base64-bytestring, bifunctors, bytestring, cereal, cereal-vector 259649 , clock, containers, contravariant, criterion, cryptohash, deepseq 259650 , directory, filepath, free, ghc-prim, hashable, hspec 259651 , hspec-discover, hspec-smallcheck, integer-gmp, lifted-base 259652 , monad-control, mono-traversable, nats, network, primitive 259653 , resourcet, safe, smallcheck, store-core, syb, template-haskell ··· 259690 ]; 259691 description = "Fast binary serialization"; 259692 license = lib.licenses.mit; 259693 }) {}; 259694 259695 "store-core" = callPackage ··· 260543 maintainers = with lib.maintainers; [ maralorn ]; 260544 }) {}; 260545 260546 + "streamly_0_8_1" = callPackage 260547 ({ mkDerivation, atomic-primops, base, containers, deepseq 260548 + , directory, exceptions, filepath, fusion-plugin-types, ghc-prim 260549 + , heaps, lockfree-queue, monad-control, mtl, network, primitive 260550 + , transformers, transformers-base, unicode-data 260551 }: 260552 mkDerivation { 260553 pname = "streamly"; 260554 + version = "0.8.1"; 260555 + sha256 = "0ix78q3fxjdvi7094wl14242i2i7xqybnrikzlgcjhbk8rz6sgfz"; 260556 libraryHaskellDepends = [ 260557 atomic-primops base containers deepseq directory exceptions 260558 + filepath fusion-plugin-types ghc-prim heaps lockfree-queue 260559 + monad-control mtl network primitive transformers transformers-base 260560 + unicode-data 260561 ]; 260562 description = "Dataflow programming and declarative concurrency"; 260563 license = lib.licenses.bsd3; ··· 261359 pname = "string-interpolate"; 261360 version = "0.3.1.1"; 261361 sha256 = "0hhzvrs9msyqsxwsqqm55lyxf85vhg4vcsszl735zsbs7431av69"; 261362 + revision = "2"; 261363 + editedCabalFile = "1blxy1ld69i8bg2340j0dcrcbdrqqnx5q8v47jda6183jfzwrxr6"; 261364 libraryHaskellDepends = [ 261365 base bytestring haskell-src-exts haskell-src-meta split 261366 template-haskell text text-conversions utf8-string ··· 263820 }: 263821 mkDerivation { 263822 pname = "swiss-ephemeris"; 263823 + version = "1.4.1.0"; 263824 + sha256 = "1a1c8rx3jnlshf1bffpjx6al8v0a46ya3cwmvrh58hwy7ci320bm"; 263825 libraryHaskellDepends = [ base time vector ]; 263826 testHaskellDepends = [ 263827 base directory hspec QuickCheck random time vector ··· 264021 description = "A modern testing framework for Haskell with good defaults and advanced testing features"; 264022 license = "unknown"; 264023 hydraPlatforms = lib.platforms.none; 264024 + }) {}; 264025 264026 "sydtest-aeson" = callPackage 264027 ({ mkDerivation, aeson, aeson-pretty, base, bytestring, path ··· 266651 license = lib.licenses.bsd3; 266652 }) {}; 266653 266654 + "tagtree" = callPackage 266655 + ({ mkDerivation, aeson, base, bytestring, containers, data-default 266656 + , filepattern, megaparsec, parser-combinators, relude, text 266657 + }: 266658 + mkDerivation { 266659 + pname = "tagtree"; 266660 + version = "0.1.0.0"; 266661 + sha256 = "1gmfw1znz4n6a08fpi0g4jkkz1m03yl59v1yj1w6kmlvyzf6dw1z"; 266662 + libraryHaskellDepends = [ 266663 + aeson base bytestring containers data-default filepattern 266664 + megaparsec parser-combinators relude text 266665 + ]; 266666 + description = "Hierarchical Tags & Tag Trees"; 266667 + license = lib.licenses.bsd3; 266668 + }) {}; 266669 + 266670 "tai" = callPackage 266671 ({ mkDerivation, base, clock, lens, mtl, parsers, time, trifecta 266672 , wreq ··· 267256 }: 267257 mkDerivation { 267258 pname = "taskwarrior"; 267259 + version = "0.3.1.0"; 267260 + sha256 = "04cnrzl9rj9zhdbk9g6hjsvd69v3g6w8d2jkh51a2pqjrw4bljf0"; 267261 libraryHaskellDepends = [ 267262 aeson base bytestring containers process random text time 267263 unordered-containers uuid ··· 267272 maintainers = with lib.maintainers; [ maralorn ]; 267273 }) {}; 267274 267275 + "taskwarrior_0_6_0_1" = callPackage 267276 ({ mkDerivation, aeson, base, bytestring, containers, hspec 267277 , hspec-discover, process, QuickCheck, quickcheck-instances, random 267278 , text, time, uuid 267279 }: 267280 mkDerivation { 267281 pname = "taskwarrior"; 267282 + version = "0.6.0.1"; 267283 + sha256 = "0g7g03hnlij7ggrq0rlxy4gay6b8f9j1yxm71y4yb80wnrj9lgwf"; 267284 libraryHaskellDepends = [ 267285 aeson base bytestring containers process random text time uuid 267286 ]; ··· 267312 license = lib.licenses.mit; 267313 }) {}; 267314 267315 + "tasty_1_4_2_1" = callPackage 267316 + ({ mkDerivation, ansi-terminal, base, clock, containers, mtl 267317 + , optparse-applicative, stm, tagged, unbounded-delays, unix 267318 + , wcwidth 267319 + }: 267320 + mkDerivation { 267321 + pname = "tasty"; 267322 + version = "1.4.2.1"; 267323 + sha256 = "0ki3gdzfsqvk9mwzzvgj18ck1sbkwac06gcc128wpwh9g8c4bzqr"; 267324 + revision = "1"; 267325 + editedCabalFile = "1fm1yx9dqikspw3a6ygnwj61vx1zwgjxm84zpkydbhcf6hgab5sg"; 267326 + libraryHaskellDepends = [ 267327 + ansi-terminal base clock containers mtl optparse-applicative stm 267328 + tagged unbounded-delays unix wcwidth 267329 + ]; 267330 + description = "Modern and extensible testing framework"; 267331 + license = lib.licenses.mit; 267332 + hydraPlatforms = lib.platforms.none; 267333 + }) {}; 267334 + 267335 "tasty-ant-xml" = callPackage 267336 ({ mkDerivation, base, containers, directory, filepath 267337 , generic-deriving, ghc-prim, mtl, stm, tagged, tasty, transformers ··· 267990 testHaskellDepends = [ base pcre-light tasty tasty-hunit ]; 267991 description = "QuickCheck support for the Tasty test framework"; 267992 license = lib.licenses.mit; 267993 + }) {}; 267994 + 267995 + "tasty-quickcheck_0_10_2" = callPackage 267996 + ({ mkDerivation, base, optparse-applicative, pcre-light, QuickCheck 267997 + , random, tagged, tasty, tasty-hunit 267998 + }: 267999 + mkDerivation { 268000 + pname = "tasty-quickcheck"; 268001 + version = "0.10.2"; 268002 + sha256 = "1qnc6rdvjvlw08q6sln2n98rvj0s0pp689h6w4z58smjbn0lr25l"; 268003 + libraryHaskellDepends = [ 268004 + base optparse-applicative QuickCheck random tagged tasty 268005 + ]; 268006 + testHaskellDepends = [ base pcre-light tasty tasty-hunit ]; 268007 + description = "QuickCheck support for the Tasty test framework"; 268008 + license = lib.licenses.mit; 268009 + hydraPlatforms = lib.platforms.none; 268010 }) {}; 268011 268012 "tasty-quickcheck-laws" = callPackage ··· 270121 270122 "tesla" = callPackage 270123 ({ mkDerivation, aeson, base, base64-bytestring, bytestring, casing 270124 + , containers, cryptonite, exceptions, finite-typelits 270125 + , generic-deriving, http-client, HUnit, lens, lens-aeson, memory 270126 + , monad-logger, mtl, random, retry, tagsoup, tasty, tasty-hunit 270127 + , tasty-quickcheck, template-haskell, text, time, unliftio-core 270128 + , vector, wreq 270129 }: 270130 mkDerivation { 270131 pname = "tesla"; 270132 + version = "0.5.0.0"; 270133 + sha256 = "1nlzibxw9ayb2yjhpfky0sxd8q44ss8hxvgs4vi9xkw4afymr2w5"; 270134 libraryHaskellDepends = [ 270135 aeson base base64-bytestring bytestring casing containers 270136 + cryptonite exceptions finite-typelits generic-deriving http-client 270137 + lens lens-aeson memory monad-logger mtl random retry tagsoup 270138 + template-haskell text time unliftio-core vector wreq 270139 ]; 270140 testHaskellDepends = [ 270141 aeson base base64-bytestring bytestring casing containers 270142 + cryptonite exceptions finite-typelits generic-deriving http-client 270143 + HUnit lens lens-aeson memory monad-logger mtl random retry tagsoup 270144 + tasty tasty-hunit tasty-quickcheck template-haskell text time 270145 unliftio-core vector wreq 270146 ]; 270147 description = "Tesla API client"; ··· 270182 pname = "test-framework"; 270183 version = "0.8.2.0"; 270184 sha256 = "1hhacrzam6b8f10hyldmjw8pb7frdxh04rfg3farxcxwbnhwgbpm"; 270185 + revision = "8"; 270186 + editedCabalFile = "1sal1qqvc8c1rvsqz292bniy1kr5rx6ll7z9chwsz6j2ncw5sgmg"; 270187 libraryHaskellDepends = [ 270188 ansi-terminal ansi-wl-pprint base containers hostname old-locale 270189 random regex-posix time xml ··· 270903 license = lib.licenses.gpl2Only; 270904 }) {}; 270905 270906 + "texmath_0_12_3_3" = callPackage 270907 + ({ mkDerivation, base, bytestring, containers, directory, filepath 270908 + , mtl, pandoc-types, parsec, process, split, syb, temporary, text 270909 + , utf8-string, xml 270910 + }: 270911 + mkDerivation { 270912 + pname = "texmath"; 270913 + version = "0.12.3.3"; 270914 + sha256 = "0zccnb61z0l2h6yzvnqh78bhqrqjd8237rrw4llsyzz149m7j3n8"; 270915 + isLibrary = true; 270916 + isExecutable = true; 270917 + libraryHaskellDepends = [ 270918 + base containers mtl pandoc-types parsec split syb text xml 270919 + ]; 270920 + testHaskellDepends = [ 270921 + base bytestring directory filepath process temporary text 270922 + utf8-string xml 270923 + ]; 270924 + description = "Conversion between formats used to represent mathematics"; 270925 + license = lib.licenses.gpl2Only; 270926 + hydraPlatforms = lib.platforms.none; 270927 + }) {}; 270928 + 270929 "texrunner" = callPackage 270930 ({ mkDerivation, attoparsec, base, bytestring, directory, filepath 270931 , HUnit, io-streams, lens, mtl, process, semigroups, temporary ··· 271019 pname = "text-ansi"; 271020 version = "0.1.1"; 271021 sha256 = "1vcrsg7v8n6znh1pd9kbm20bc6dg3zijd3xjdjljadf15vfkd5f6"; 271022 + revision = "2"; 271023 + editedCabalFile = "03r5318sxzxykms6jjmry6mkm4zy83ajamk727jym9r9kp16dkmc"; 271024 libraryHaskellDepends = [ base text ]; 271025 description = "Text styling for ANSI terminals"; 271026 license = lib.licenses.bsd3; ··· 271142 pname = "text-display"; 271143 version = "0.0.1.0"; 271144 sha256 = "0ljh2pxwk6nl37z6az83wh50lvh5mr0gwxjc1vwnwva62yg3f0nx"; 271145 + revision = "1"; 271146 + editedCabalFile = "1094rlcqs2dl6j0gapaspvl80dv4k34r1lpqqz6xnxwb33s4padq"; 271147 libraryHaskellDepends = [ base bytestring text ]; 271148 testHaskellDepends = [ 271149 base bytestring hspec should-not-typecheck text ··· 271771 license = lib.licenses.bsd3; 271772 }) {}; 271773 271774 + "text-show-instances_3_8_6" = callPackage 271775 ({ mkDerivation, base, base-compat-batteries, bifunctors, binary 271776 , containers, directory, generic-deriving, ghc-boot-th, ghc-prim 271777 , haskeline, hpc, hspec, hspec-discover, old-locale, old-time 271778 + , pretty, QuickCheck, quickcheck-instances, random, scientific 271779 + , semigroups, tagged, template-haskell, terminfo, text, text-short 271780 + , text-show, th-orphans, time, transformers, transformers-compat 271781 + , unix, unordered-containers, vector, xhtml 271782 }: 271783 mkDerivation { 271784 pname = "text-show-instances"; 271785 + version = "3.8.6"; 271786 + sha256 = "1jg1wsjnp6q68nsynwzw26s4akr0d9a4frd9dvnddalm2c6vdwaz"; 271787 libraryHaskellDepends = [ 271788 base base-compat-batteries bifunctors binary containers directory 271789 ghc-boot-th haskeline hpc old-locale old-time pretty random 271790 + scientific semigroups tagged template-haskell terminfo text 271791 + text-short text-show time transformers transformers-compat unix 271792 unordered-containers vector xhtml 271793 ]; 271794 testHaskellDepends = [ 271795 base base-compat-batteries bifunctors binary containers directory 271796 generic-deriving ghc-boot-th ghc-prim haskeline hpc hspec 271797 old-locale old-time pretty QuickCheck quickcheck-instances random 271798 + scientific tagged template-haskell terminfo text-short text-show 271799 + th-orphans time transformers transformers-compat unix 271800 + unordered-containers vector xhtml 271801 ]; 271802 testToolDepends = [ hspec-discover ]; 271803 description = "Additional instances for text-show"; ··· 272393 }) {}; 272394 272395 "th-extras" = callPackage 272396 + ({ mkDerivation, base, containers, syb, template-haskell 272397 + , th-abstraction 272398 + }: 272399 mkDerivation { 272400 pname = "th-extras"; 272401 + version = "0.0.0.5"; 272402 + sha256 = "03pfwadxxnabkpy1i6jmmgk6p8w3r9cn3xz7d7jvzqsig70mnpim"; 272403 + libraryHaskellDepends = [ 272404 + base containers syb template-haskell th-abstraction 272405 + ]; 272406 description = "A grab bag of functions for use with Template Haskell"; 272407 license = lib.licenses.publicDomain; 272408 }) {}; ··· 273514 pname = "through-text"; 273515 version = "0.1.0.0"; 273516 sha256 = "1kdl36n98kajaa7v7js2sy8bi09p8rrxmlfcclcfc1l92bd2aclk"; 273517 + revision = "7"; 273518 + editedCabalFile = "0cgh3sxd7ms5wdrrr174jf7pf6n7c66srpsmg3yk8h8msnrvw1qr"; 273519 libraryHaskellDepends = [ base bytestring case-insensitive text ]; 273520 description = "Convert textual types through Text without needing O(n^2) instances"; 273521 license = lib.licenses.bsd3; ··· 274445 pname = "timeit"; 274446 version = "2.0"; 274447 sha256 = "1sliqpvl501rlcj6s0lhmsf5ym24j4h881wzc1f1wdyvg3jz8kd1"; 274448 + revision = "2"; 274449 + editedCabalFile = "1vgxfk2021jh6jk3dimchmf9f71844zj080342qvnn5lck7c7mrm"; 274450 libraryHaskellDepends = [ base ]; 274451 description = "Time monadic computations with an IO base"; 274452 license = lib.licenses.bsd3; ··· 274851 }: 274852 mkDerivation { 274853 pname = "timezone-olson-th"; 274854 + version = "0.1.0.10"; 274855 + sha256 = "0lks0mgshcsq36aminfbrz524mgn5q02lwln8lli1l54d8bn4x8n"; 274856 libraryHaskellDepends = [ 274857 base template-haskell time timezone-olson timezone-series 274858 ]; ··· 278571 }: 278572 mkDerivation { 278573 pname = "trifecta"; 278574 version = "2.1.2"; 278575 sha256 = "1akx8m6mgskwsbhsf90cxlqjq23jk4pwaxagvm923dpncwrlwfla"; 278576 libraryHaskellDepends = [ ··· 278583 testHaskellDepends = [ base parsers QuickCheck ]; 278584 description = "A modern parser combinator library with convenient diagnostics"; 278585 license = lib.licenses.bsd3; 278586 }) {}; 278587 278588 "trigger" = callPackage ··· 279536 279537 "turtle" = callPackage 279538 ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock 279539 + , containers, directory, doctest, exceptions, foldl, hostname 279540 + , managed, optional-args, optparse-applicative, process, stm 279541 + , streaming-commons, system-fileio, system-filepath, tasty-bench 279542 + , temporary, text, time, transformers, unix, unix-compat 279543 }: 279544 mkDerivation { 279545 pname = "turtle"; 279546 + version = "1.5.23"; 279547 + sha256 = "02g0a6az01lfikrinx2027zqrp8wyivldwi36s2yqk9a5qm3ap5c"; 279548 libraryHaskellDepends = [ 279549 ansi-wl-pprint async base bytestring clock containers directory 279550 exceptions foldl hostname managed optional-args ··· 279552 system-filepath temporary text time transformers unix unix-compat 279553 ]; 279554 testHaskellDepends = [ base doctest system-filepath temporary ]; 279555 + benchmarkHaskellDepends = [ base tasty-bench text ]; 279556 description = "Shell programming, Haskell-style"; 279557 license = lib.licenses.bsd3; 279558 maintainers = with lib.maintainers; [ Gabriel439 ]; ··· 280077 "twitter-conduit" = callPackage 280078 ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base 280079 , bytestring, Cabal, cabal-doctest, conduit, conduit-extra 280080 + , containers, data-default, deepseq, doctest, exceptions, ghc-prim 280081 + , hspec, hspec-discover, http-client, http-conduit, http-types 280082 + , lens, lens-aeson, resourcet, text, time, transformers 280083 + , twitter-types, twitter-types-lens 280084 }: 280085 mkDerivation { 280086 pname = "twitter-conduit"; 280087 + version = "0.6.1"; 280088 + sha256 = "06fbcbx4cyi1m4qvxc16qfn66fnv5lp3naawqf6xw6yj3lczzh6w"; 280089 setupHaskellDepends = [ base Cabal cabal-doctest ]; 280090 libraryHaskellDepends = [ 280091 aeson attoparsec authenticate-oauth base bytestring conduit 280092 + conduit-extra containers data-default deepseq exceptions ghc-prim 280093 http-client http-conduit http-types lens lens-aeson resourcet text 280094 time transformers twitter-types twitter-types-lens 280095 ]; ··· 281196 license = lib.licenses.mit; 281197 }) {}; 281198 281199 + "typed-process_0_2_8_0" = callPackage 281200 + ({ mkDerivation, async, base, base64-bytestring, bytestring, hspec 281201 + , process, stm, temporary, transformers, unliftio-core 281202 + }: 281203 + mkDerivation { 281204 + pname = "typed-process"; 281205 + version = "0.2.8.0"; 281206 + sha256 = "1af0g34sws7fppziv7firr9r2wrnly4y6sr9nyqa8bvbbmadly45"; 281207 + libraryHaskellDepends = [ 281208 + async base bytestring process stm transformers unliftio-core 281209 + ]; 281210 + testHaskellDepends = [ 281211 + async base base64-bytestring bytestring hspec process stm temporary 281212 + transformers unliftio-core 281213 + ]; 281214 + description = "Run external processes, with strong typing of streams"; 281215 + license = lib.licenses.mit; 281216 + hydraPlatforms = lib.platforms.none; 281217 + }) {}; 281218 + 281219 "typed-spreadsheet" = callPackage 281220 ({ mkDerivation, async, base, diagrams-cairo, diagrams-gtk 281221 , diagrams-lib, foldl, gtk, microlens, stm, text, transformers ··· 281290 license = lib.licenses.mit; 281291 }) {}; 281292 281293 + "typed-uuid_0_2_0_0" = callPackage 281294 + ({ mkDerivation, aeson, autodocodec, base, binary, bytestring 281295 + , deepseq, hashable, http-api-data, random, text, uuid, validity 281296 + , validity-uuid 281297 + }: 281298 + mkDerivation { 281299 + pname = "typed-uuid"; 281300 + version = "0.2.0.0"; 281301 + sha256 = "1f97q4vxr30sinbcilhyizhri4gkq68yzw6pnv2dh2bdy1nd2yqk"; 281302 + libraryHaskellDepends = [ 281303 + aeson autodocodec base binary bytestring deepseq hashable 281304 + http-api-data random text uuid validity validity-uuid 281305 + ]; 281306 + description = "Phantom-Typed version of UUID"; 281307 + license = lib.licenses.mit; 281308 + hydraPlatforms = lib.platforms.none; 281309 + }) {}; 281310 + 281311 "typed-wire" = callPackage 281312 ({ mkDerivation, aeson, base, bytestring, containers, directory 281313 , filepath, gitrev, HTF, http-types, mtl, optparse-applicative ··· 282381 license = lib.licenses.bsd3; 282382 }) {}; 282383 282384 + "unagi-chan_0_4_1_4" = callPackage 282385 + ({ mkDerivation, async, atomic-primops, base, containers, criterion 282386 + , ghc-prim, primitive 282387 + }: 282388 + mkDerivation { 282389 + pname = "unagi-chan"; 282390 + version = "0.4.1.4"; 282391 + sha256 = "1d98a6s7rydjlf2p3jv6j7wglq8ahf8kgcibji5fiy6y0ymz9mnr"; 282392 + libraryHaskellDepends = [ atomic-primops base ghc-prim primitive ]; 282393 + testHaskellDepends = [ 282394 + atomic-primops base containers ghc-prim primitive 282395 + ]; 282396 + benchmarkHaskellDepends = [ async base criterion ]; 282397 + description = "Fast concurrent queues with a Chan-like API, and more"; 282398 + license = lib.licenses.bsd3; 282399 + hydraPlatforms = lib.platforms.none; 282400 + }) {}; 282401 + 282402 "unagi-streams" = callPackage 282403 ({ mkDerivation, base, io-streams, unagi-chan }: 282404 mkDerivation { ··· 282940 ({ mkDerivation, base }: 282941 mkDerivation { 282942 pname = "unicode-data"; 282943 + version = "0.2.0"; 282944 + sha256 = "1vn1kzy49k314gprpi8ls91vs5xrjwwxklzgnxx0krcpjq8zy100"; 282945 isLibrary = true; 282946 isExecutable = true; 282947 libraryHaskellDepends = [ base ]; ··· 283021 ({ mkDerivation, base, hspec, QuickCheck }: 283022 mkDerivation { 283023 pname = "unicode-show"; 283024 version = "0.1.1.0"; 283025 sha256 = "1g945vkj75vrm4c3v79c61hlhx3s6q5v0lm92bjzf29r45clnzsi"; 283026 libraryHaskellDepends = [ base ]; ··· 283068 license = lib.licenses.bsd3; 283069 }) {}; 283070 283071 + "unicode-transforms_0_4_0" = callPackage 283072 + ({ mkDerivation, base, bytestring, deepseq, filepath, ghc-prim 283073 + , hspec, path, path-io, QuickCheck, split, tasty-bench, text 283074 + , unicode-data 283075 }: 283076 mkDerivation { 283077 pname = "unicode-transforms"; 283078 + version = "0.4.0"; 283079 + sha256 = "0m234yhjizl28xm8y08bdhrbni666r7q2z71a8s64lynqk4lzq5k"; 283080 isLibrary = true; 283081 isExecutable = true; 283082 libraryHaskellDepends = [ 283083 base bytestring ghc-prim text unicode-data 283084 ]; 283085 testHaskellDepends = [ 283086 + base deepseq hspec QuickCheck split text unicode-data 283087 ]; 283088 benchmarkHaskellDepends = [ 283089 base deepseq filepath path path-io tasty-bench text ··· 283357 license = lib.licenses.bsd3; 283358 hydraPlatforms = lib.platforms.none; 283359 broken = true; 283360 + }) {}; 283361 + 283362 + "unionmount" = callPackage 283363 + ({ mkDerivation, async, base, bytestring, containers, data-default 283364 + , directory, filepath, filepattern, fsnotify, lvar, monad-logger 283365 + , mtl, relude, text, time, unliftio, with-utf8 283366 + }: 283367 + mkDerivation { 283368 + pname = "unionmount"; 283369 + version = "0.1.0.0"; 283370 + sha256 = "05i7bh8dg8bcm8070hxdh8fc2y0l2v25bvsqmbvnlbrlfcijphg6"; 283371 + libraryHaskellDepends = [ 283372 + async base bytestring containers data-default directory filepath 283373 + filepattern fsnotify lvar monad-logger mtl relude text time 283374 + unliftio with-utf8 283375 + ]; 283376 + description = "Union mount filesystem paths into Haskell datastructures"; 283377 + license = lib.licenses.mit; 283378 }) {}; 283379 283380 "unipatterns" = callPackage ··· 283901 pname = "universe-base"; 283902 version = "1.1.3"; 283903 sha256 = "0lnvjpndqj7kk3f95dmpa62ax0m243h8iy7ghcsd2db4nyczx7f5"; 283904 + revision = "2"; 283905 + editedCabalFile = "1fr7w3qc46aph0xxya8jw1a4gqzvq03f6vpx75pam9ynfndz8gw0"; 283906 libraryHaskellDepends = [ 283907 base containers OneTuple tagged transformers 283908 ]; ··· 284005 pname = "universe-some"; 284006 version = "1.2.1"; 284007 sha256 = "0pdvk5qi39d0wg8ac936c1fxs7v7qld2ggpqc9v7xc4pk3xq24bp"; 284008 + revision = "2"; 284009 + editedCabalFile = "0haz8fprwxx22jg4394p7a6zll8jim2hcb1rjy366vslwlczr03z"; 284010 libraryHaskellDepends = [ 284011 base some template-haskell th-abstraction transformers 284012 "instance-map" = callPackage ··· 286672 286673 "validated-literals" = callPackage 286674 ({ mkDerivation, base, bytestring, deepseq, tasty, tasty-hunit 286675 + , tasty-travis, template-haskell, th-compat 286676 }: 286677 mkDerivation { 286678 pname = "validated-literals"; 286679 + version = "0.3.1"; 286680 + sha256 = "0s6ag8wm19qzfhxpz686nsmvrf3lhbq1g5fcck6d97lij559xlvg"; 286681 + libraryHaskellDepends = [ base template-haskell th-compat ]; 286682 testHaskellDepends = [ 286683 base bytestring deepseq tasty tasty-hunit tasty-travis 286684 + template-haskell th-compat 286685 ]; 286686 description = "Compile-time checking for partial smart-constructors"; 286687 license = lib.licenses.bsd3; ··· 286707 }: 286708 mkDerivation { 286709 pname = "validation"; 286710 version = "1.1.2"; 286711 sha256 = "15hhz2kj6h9zv568bvq79ymck3s3b89fpkasdavbwvyhfyjm5k8x"; 286712 libraryHaskellDepends = [ ··· 286715 testHaskellDepends = [ base hedgehog HUnit lens semigroups ]; 286716 description = "A data-type like Either but with an accumulating Applicative"; 286717 license = lib.licenses.bsd3; 286718 }) {}; 286719 286720 "validation-selective" = callPackage ··· 286798 license = lib.licenses.mit; 286799 }) {}; 286800 286801 + "validity_0_12_0_0" = callPackage 286802 + ({ mkDerivation, base, hspec }: 286803 + mkDerivation { 286804 + pname = "validity"; 286805 + version = "0.12.0.0"; 286806 + sha256 = "03md04q3ymilgc1pssczij392bphmg9ld6aa0fwfwjyjlqjj67fk"; 286807 + libraryHaskellDepends = [ base ]; 286808 + testHaskellDepends = [ base hspec ]; 286809 + description = "Validity typeclass"; 286810 + license = lib.licenses.mit; 286811 + hydraPlatforms = lib.platforms.none; 286812 + }) {}; 286813 + 286814 "validity-aeson" = callPackage 286815 ({ mkDerivation, aeson, base, hspec, validity, validity-scientific 286816 , validity-text, validity-unordered-containers, validity-vector ··· 286910 license = lib.licenses.mit; 286911 }) {}; 286912 286913 + "validity-text_0_3_1_2" = callPackage 286914 + ({ mkDerivation, base, bytestring, text, validity }: 286915 + mkDerivation { 286916 + pname = "validity-text"; 286917 + version = "0.3.1.2"; 286918 + sha256 = "00sfiykazz2iwwr43lxl0q6dn03jpf515k0s8hymqpychmflyqhi"; 286919 + libraryHaskellDepends = [ base bytestring text validity ]; 286920 + description = "Validity instances for text"; 286921 + license = lib.licenses.mit; 286922 + hydraPlatforms = lib.platforms.none; 286923 + }) {}; 286924 + 286925 "validity-time" = callPackage 286926 ({ mkDerivation, base, time, validity }: 286927 mkDerivation { ··· 286933 license = lib.licenses.mit; 286934 }) {}; 286935 286936 + "validity-time_0_5_0_0" = callPackage 286937 + ({ mkDerivation, base, time, validity }: 286938 + mkDerivation { 286939 + pname = "validity-time"; 286940 + version = "0.5.0.0"; 286941 + sha256 = "1ik3syh9hd7jcfydp7fj8rghxl6zjs6lcm1f0xadm0czw6gb82k1"; 286942 + libraryHaskellDepends = [ base time validity ]; 286943 + description = "Validity instances for time"; 286944 + license = lib.licenses.mit; 286945 + hydraPlatforms = lib.platforms.none; 286946 + }) {}; 286947 + 286948 "validity-unordered-containers" = callPackage 286949 ({ mkDerivation, base, hashable, unordered-containers, validity }: 286950 mkDerivation { ··· 287830 }: 287831 mkDerivation { 287832 pname = "vector-extras"; 287833 + version = "0.2.2.2"; 287834 + sha256 = "1xlwfdyqmf0z2g3fmisz4gfz1f7y8db5446vkbp5qwlq3r1m6acd"; 287835 libraryHaskellDepends = [ 287836 base containers deferred-folds foldl hashable unordered-containers 287837 vector ··· 288614 pname = "vgrep"; 288615 version = "0.2.3.0"; 288616 sha256 = "1zzzmvhqcvgvni96b1zzqjwpmlncsjd08sqllrbp4d4a7j43b9g5"; 288617 + revision = "1"; 288618 + editedCabalFile = "1avwygy2xrh9z1dj5k4gb0r1pwrrljd9l1hgpc8y4h4w97hxwbi3"; 288619 isLibrary = true; 288620 isExecutable = true; 288621 libraryHaskellDepends = [ ··· 289130 pname = "visualize-cbn"; 289131 version = "0.1.0.2"; 289132 sha256 = "1vlidljhy0ykflgf7k8gawlqazcrkvcs7r8wbv7h9x6wfnx0w334"; 289133 + revision = "1"; 289134 + editedCabalFile = "04cb9j0m83g6qix3lwh62l56kk8qvpzsv3ia8yw43aw9zi4jnrc3"; 289135 isLibrary = false; 289136 isExecutable = true; 289137 executableHaskellDepends = [ ··· 289644 }: 289645 mkDerivation { 289646 pname = "vulkan"; 289647 + version = "3.14.1"; 289648 + sha256 = "1ai8iw41z43l4x3x7hpdb0c0fxl4c4mc86g0r00m617056756732"; 289649 libraryHaskellDepends = [ base bytestring transformers vector ]; 289650 libraryPkgconfigDepends = [ vulkan ]; 289651 testHaskellDepends = [ ··· 289677 }: 289678 mkDerivation { 289679 pname = "vulkan-utils"; 289680 + version = "0.5.4"; 289681 + sha256 = "1mkx2h7yjmq8djgg1pi3vlx2pq4armasa1hvam955p3x09vwbisk"; 289682 setupHaskellDepends = [ base Cabal cabal-doctest ]; 289683 libraryHaskellDepends = [ 289684 base bytestring containers dependent-map dependent-sum extra ··· 291875 }: 291876 mkDerivation { 291877 pname = "warp"; 291878 + version = "3.3.18"; 291879 + sha256 = "1m93s3p2zz00fdgkisl6sbnqnc6vvq0vz997i5y4mk9a3ssjflqw"; 291880 libraryHaskellDepends = [ 291881 array auto-update base bsb-http-chunked bytestring case-insensitive 291882 containers ghc-prim hashable http-date http-types http2 iproute ··· 294117 license = lib.licenses.bsd3; 294118 }) {}; 294119 294120 + "wild-bind_0_1_2_8" = callPackage 294121 + ({ mkDerivation, base, containers, hspec, hspec-discover, microlens 294122 + , QuickCheck, semigroups, stm, text, transformers 294123 + }: 294124 + mkDerivation { 294125 + pname = "wild-bind"; 294126 + version = "0.1.2.8"; 294127 + sha256 = "1ag0lwh5pii8z356sii2zm2i7qyk9q9j7ivc3x0fkvz6p5gk1aj1"; 294128 + libraryHaskellDepends = [ 294129 + base containers semigroups text transformers 294130 + ]; 294131 + testHaskellDepends = [ 294132 + base hspec microlens QuickCheck stm transformers 294133 + ]; 294134 + testToolDepends = [ hspec-discover ]; 294135 + description = "Dynamic key binding framework"; 294136 + license = lib.licenses.bsd3; 294137 + hydraPlatforms = lib.platforms.none; 294138 + }) {}; 294139 + 294140 "wild-bind-indicator" = callPackage 294141 ({ mkDerivation, async, base, containers, gi-gdk, gi-glib, gi-gtk 294142 , text, transformers, wild-bind ··· 294189 testToolDepends = [ hspec-discover ]; 294190 description = "X11-specific implementation for WildBind"; 294191 license = lib.licenses.bsd3; 294192 + }) {}; 294193 + 294194 + "wild-bind-x11_0_2_0_14" = callPackage 294195 + ({ mkDerivation, async, base, containers, fold-debounce, hspec 294196 + , hspec-discover, mtl, semigroups, stm, text, time, transformers 294197 + , wild-bind, X11 294198 + }: 294199 + mkDerivation { 294200 + pname = "wild-bind-x11"; 294201 + version = "0.2.0.14"; 294202 + sha256 = "0qxzv4xvqqm7xcz17a3h1pgc3g84dp3676vb40yi9dfxdwag3xxs"; 294203 + libraryHaskellDepends = [ 294204 + base containers fold-debounce mtl semigroups stm text transformers 294205 + wild-bind X11 294206 + ]; 294207 + testHaskellDepends = [ 294208 + async base hspec text time transformers wild-bind X11 294209 + ]; 294210 + testToolDepends = [ hspec-discover ]; 294211 + description = "X11-specific implementation for WildBind"; 294212 + license = lib.licenses.bsd3; 294213 + hydraPlatforms = lib.platforms.none; 294214 }) {}; 294215 294216 "willow" = callPackage ··· 294459 maintainers = with lib.maintainers; [ maralorn ]; 294460 }) {}; 294461 294462 + "witch_0_3_4_1" = callPackage 294463 + ({ mkDerivation, base, bytestring, containers, HUnit 294464 + , template-haskell, text, time 294465 + }: 294466 + mkDerivation { 294467 + pname = "witch"; 294468 + version = "0.3.4.1"; 294469 + sha256 = "12nrikciqg85lnkncdibs65z0psn93n68ljy1gvdiaxcbxzydswp"; 294470 + libraryHaskellDepends = [ 294471 + base bytestring containers template-haskell text time 294472 + ]; 294473 + testHaskellDepends = [ 294474 + base bytestring containers HUnit text time 294475 + ]; 294476 + description = "Convert values from one type into another"; 294477 + license = lib.licenses.isc; 294478 + hydraPlatforms = lib.platforms.none; 294479 + maintainers = with lib.maintainers; [ maralorn ]; 294480 + }) {}; 294481 + 294482 "with-index" = callPackage 294483 ({ mkDerivation, base }: 294484 mkDerivation { ··· 294552 pname = "witherable"; 294553 version = "0.4.2"; 294554 sha256 = "0121ic4xkv3k568j23zp22a5lrv0k11h94fq7cbijd18fjr2n3br"; 294555 + revision = "2"; 294556 + editedCabalFile = "1ljnv5xf6w7x58akj0a0yw16j63jkka0dvfvmjqwbn76aqg3pzc1"; 294557 libraryHaskellDepends = [ 294558 base base-orphans containers hashable indexed-traversable 294559 indexed-traversable-instances transformers unordered-containers ··· 296243 license = lib.licenses.mit; 296244 }) {}; 296245 296246 + "wuss_1_1_19" = callPackage 296247 + ({ mkDerivation, base, bytestring, connection, network, websockets 296248 + }: 296249 + mkDerivation { 296250 + pname = "wuss"; 296251 + version = "1.1.19"; 296252 + sha256 = "1i7y6kqynbc5qbl091ihdfn9ak8ny8rdp83svl06m6ijvphjqskq"; 296253 + libraryHaskellDepends = [ 296254 + base bytestring connection network websockets 296255 + ]; 296256 + description = "Secure WebSocket (WSS) clients"; 296257 + license = lib.licenses.mit; 296258 + hydraPlatforms = lib.platforms.none; 296259 + }) {}; 296260 + 296261 "wx" = callPackage 296262 ({ mkDerivation, base, stm, time, wxcore }: 296263 mkDerivation { ··· 297617 }: 297618 mkDerivation { 297619 pname = "xml-optics"; 297620 + version = "0.2.0"; 297621 + sha256 = "1faxprzgql8kbji7ip53dn3xcxwhbqzgjjyabf5dmcfq98kv87mk"; 297622 libraryHaskellDepends = [ 297623 base containers optics-core text xml-conduit 297624 ]; ··· 298409 pname = "xmonad-extras"; 298410 version = "0.17.0"; 298411 sha256 = "0kkwng84hp19vc9nw97y77n3hsg9scn0c9fa1ivf4r9s5x3p6flx"; 298412 + revision = "1"; 298413 + editedCabalFile = "1ivm1nncg8qa5ww1kgk1d8zdawniz83ab5s2dj0hbcxffymgxp0k"; 298414 configureFlags = [ 298415 "-f-with_hlist" "-fwith_parsec" "-fwith_split" 298416 ]; ··· 299584 299585 "yaml-streamly" = callPackage 299586 ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring 299587 + , containers, criterion, deepseq, directory, filepath, hspec 299588 + , hspec-discover, HUnit, libyaml-streamly, megaparsec, mockery, mtl 299589 + , raw-strings-qq, safe-exceptions, scientific, streamly, strict 299590 + , template-haskell, temporary, text, transformers 299591 + , unordered-containers, vector, versions 299592 }: 299593 mkDerivation { 299594 pname = "yaml-streamly"; 299595 + version = "0.12.1"; 299596 + sha256 = "1rcv4y9f2p1biiaxh4j1wdq79ba1mi33yn5v6kds20am574ia1hq"; 299597 + revision = "1"; 299598 + editedCabalFile = "18gv1h6h9n8bmysdfb0h9kgifhi3rj9zf055l2dibaw0jixqqs2c"; 299599 isLibrary = true; 299600 isExecutable = true; 299601 libraryHaskellDepends = [ 299602 + aeson attoparsec base bytestring containers deepseq directory 299603 + filepath libyaml-streamly mtl safe-exceptions scientific streamly 299604 template-haskell text transformers unordered-containers vector 299605 ]; 299606 testHaskellDepends = [ ··· 299609 temporary text unordered-containers vector 299610 ]; 299611 testToolDepends = [ hspec-discover ]; 299612 + benchmarkHaskellDepends = [ 299613 + aeson base bytestring containers criterion deepseq directory 299614 + filepath megaparsec strict temporary text versions 299615 + ]; 299616 description = "Support for parsing and rendering YAML documents"; 299617 license = lib.licenses.bsd3; 299618 hydraPlatforms = lib.platforms.none; ··· 299655 }: 299656 mkDerivation { 299657 pname = "yaml-unscrambler"; 299658 + version = "0.1.0.4"; 299659 + sha256 = "01x3l618qj0a78xcwn7i76nij812150b2ncz9x6pqr0s839vi7fa"; 299660 libraryHaskellDepends = [ 299661 acc attoparsec attoparsec-data attoparsec-time base base64 299662 bytestring conduit containers foldl hashable libyaml mtl scientific ··· 300453 }: 300454 mkDerivation { 300455 pname = "yesod-auth"; 300456 version = "1.6.10.5"; 300457 sha256 = "11nywgjnivbfrbn8mg3lfr8r8lfpygn30vhnn0bzy9pa07nvgxnz"; 300458 libraryHaskellDepends = [ ··· 300466 ]; 300467 description = "Authentication for Yesod"; 300468 license = lib.licenses.mit; 300469 }) {}; 300470 300471 "yesod-auth-account" = callPackage ··· 300806 license = lib.licenses.mit; 300807 }) {}; 300808 300809 + "yesod-auth-oidc" = callPackage 300810 + ({ mkDerivation, aeson, base, base64-bytestring, blaze-html, broch 300811 + , bytestring, classy-prelude, classy-prelude-yesod, containers 300812 + , cryptonite, directory, email-validate, fast-logger, hspec 300813 + , hspec-discover, http-client, http-conduit, http-types, jose-jwt 300814 + , lens, lens-regex-pcre, memory, monad-logger, oidc-client 300815 + , persistent, persistent-sqlite, postgresql-simple, reroute 300816 + , resource-pool, shakespeare, sqlite-simple, text, time 300817 + , unordered-containers, wai-app-static, wai-extra, warp, yesod 300818 + , yesod-auth, yesod-core, yesod-form, yesod-persistent, yesod-test 300819 + }: 300820 + mkDerivation { 300821 + pname = "yesod-auth-oidc"; 300822 + version = "0.1.0"; 300823 + sha256 = "1kxki50zwyqblpglm8rgmhvf8rm0fr38vzygigxpky4qaraqxpk6"; 300824 + isLibrary = true; 300825 + isExecutable = true; 300826 + libraryHaskellDepends = [ 300827 + aeson base base64-bytestring classy-prelude-yesod cryptonite 300828 + http-client jose-jwt oidc-client shakespeare text time 300829 + unordered-containers yesod-auth yesod-core yesod-form 300830 + ]; 300831 + executableHaskellDepends = [ 300832 + aeson base base64-bytestring blaze-html broch bytestring 300833 + classy-prelude classy-prelude-yesod containers cryptonite directory 300834 + email-validate fast-logger hspec http-client http-conduit 300835 + http-types jose-jwt lens lens-regex-pcre memory monad-logger 300836 + oidc-client persistent persistent-sqlite postgresql-simple reroute 300837 + resource-pool shakespeare sqlite-simple text time 300838 + unordered-containers wai-app-static wai-extra warp yesod yesod-auth 300839 + yesod-core yesod-form yesod-persistent yesod-test 300840 + ]; 300841 + testHaskellDepends = [ 300842 + aeson base base64-bytestring blaze-html broch bytestring 300843 + classy-prelude classy-prelude-yesod containers cryptonite directory 300844 + email-validate fast-logger hspec http-client http-conduit 300845 + http-types jose-jwt lens lens-regex-pcre memory monad-logger 300846 + oidc-client persistent persistent-sqlite postgresql-simple reroute 300847 + resource-pool shakespeare sqlite-simple text time 300848 + unordered-containers wai-app-static wai-extra warp yesod yesod-auth 300849 + yesod-core yesod-form yesod-persistent yesod-test 300850 + ]; 300851 + testToolDepends = [ hspec-discover ]; 300852 + description = "A yesod-auth plugin for multi-tenant SSO via OpenID Connect"; 300853 + license = lib.licenses.bsd3; 300854 + hydraPlatforms = lib.platforms.none; 300855 + broken = true; 300856 + }) {broch = null;}; 300857 + 300858 "yesod-auth-pam" = callPackage 300859 ({ mkDerivation, base, hamlet, pam, text, yesod-auth, yesod-core 300860 , yesod-form ··· 303121 pname = "yoctoparsec"; 303122 version = "0.1.0.0"; 303123 sha256 = "0p9kw60glcgrjfx04x3innn3rqnh12yrv4wh0a0fivcx8b9kj1yp"; 303124 + revision = "5"; 303125 + editedCabalFile = "1xf2haxw974zsnwx5dqflqq736i7cfz1mqfpfkkggsnfx86d5gg0"; 303126 libraryHaskellDepends = [ base free mtl ]; 303127 description = "A truly tiny monadic parsing library"; 303128 license = lib.licenses.mit; ··· 303706 }: 303707 mkDerivation { 303708 pname = "zeolite-lang"; 303709 + version = "0.21.0.0"; 303710 + sha256 = "1vavvyn2p7q02gflxhnppxqqwhlzj36plcpybnm8yf9wgrpxrlqg"; 303711 isLibrary = false; 303712 isExecutable = true; 303713 enableSeparateDataOutput = true; ··· 304381 }: 304382 mkDerivation { 304383 pname = "zippers"; 304384 version = "0.3.2"; 304385 sha256 = "0n85mnp3mv8qwk3wmmm2wpc3j2l4q2fb0gbzb5il3nrd0p42xjld"; 304386 libraryHaskellDepends = [ ··· 304390 benchmarkHaskellDepends = [ base criterion lens ]; 304391 description = "Traversal based zippers"; 304392 license = lib.licenses.bsd3; 304393 }) {}; 304394 304395 "zippo" = callPackage ··· 304746 }: 304747 mkDerivation { 304748 pname = "zoovisitor"; 304749 + version = "0.1.7.0"; 304750 + sha256 = "0g9881llwb7arv4m3klc69lhzlwbdb7wrgv7418qcl2a8nmvp4cb"; 304751 libraryHaskellDepends = [ base Z-Data Z-IO ]; 304752 librarySystemDepends = [ zookeeper_mt ]; 304753 testHaskellDepends = [ async base hspec uuid Z-Data ];
+23 -4
pkgs/development/interpreters/python/update-python-libraries/update-python-libraries.py
··· 309 with open(path, 'r') as f: 310 text = f.read() 311 312 - # Determine pname. 313 - pname = _get_unique_value('pname', text) 314 315 # Determine version. 316 version = _get_unique_value('version', text) ··· 320 321 extension = _determine_extension(text, fetcher) 322 323 - new_version, new_sha256, prefix = FETCHERS[fetcher](pname, extension, version, target) 324 325 if new_version == version: 326 logging.info("Path {}: no update available for {}.".format(path, pname)) ··· 331 raise ValueError("no file available for {}.".format(pname)) 332 333 text = _replace_value('version', new_version, text) 334 - text = _replace_value('sha256', new_sha256, text) 335 if fetcher == 'fetchFromGitHub': 336 text = _replace_value('rev', f"{prefix}${{version}}", text) 337 # incase there's no prefix, just rewrite without interpolation
··· 309 with open(path, 'r') as f: 310 text = f.read() 311 312 + # Determine pname. Many files have more than one pname 313 + pnames = _get_values('pname', text) 314 315 # Determine version. 316 version = _get_unique_value('version', text) ··· 320 321 extension = _determine_extension(text, fetcher) 322 323 + # Attempt a fetch using each pname, e.g. backports-zoneinfo vs backports.zoneinfo 324 + successful_fetch = False 325 + for pname in pnames: 326 + try: 327 + new_version, new_sha256, prefix = FETCHERS[fetcher](pname, extension, version, target) 328 + successful_fetch = True 329 + break 330 + except ValueError: 331 + continue 332 + 333 + if not successful_fetch: 334 + raise ValueError(f"Unable to find correct package using these pnames: {pnames}") 335 336 if new_version == version: 337 logging.info("Path {}: no update available for {}.".format(path, pname)) ··· 342 raise ValueError("no file available for {}.".format(pname)) 343 344 text = _replace_value('version', new_version, text) 345 + 346 + # fetchers can specify a sha256, or a sri hash 347 + try: 348 + text = _replace_value('sha256', new_sha256, text) 349 + except ValueError: 350 + # hashes from pypi are 16-bit encoded sha256's, need translate to an sri hash if used with "hash" 351 + sri_hash = subprocess.check_output(["nix", "hash", "to-sri", "--type", "sha256", new_sha256]).decode('utf-8').strip() 352 + text = _replace_value('hash', sri_hash, text) 353 + 354 if fetcher == 'fetchFromGitHub': 355 text = _replace_value('rev', f"{prefix}${{version}}", text) 356 # incase there's no prefix, just rewrite without interpolation
+2 -2
pkgs/development/libraries/physics/apfel/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, gfortran, lhapdf, python2, zlib }: 2 3 stdenv.mkDerivation rec { 4 pname = "apfel"; ··· 11 sha256 = "sha256-szEtSC/NouYlHSjVoX9Hoh7yQ0W82rVccYEF1L2tXoU="; 12 }; 13 14 - buildInputs = [ gfortran lhapdf python2 zlib ]; 15 16 enableParallelBuilding = true; 17
··· 1 + { lib, stdenv, fetchFromGitHub, gfortran, lhapdf, python3, zlib }: 2 3 stdenv.mkDerivation rec { 4 pname = "apfel"; ··· 11 sha256 = "sha256-szEtSC/NouYlHSjVoX9Hoh7yQ0W82rVccYEF1L2tXoU="; 12 }; 13 14 + buildInputs = [ gfortran lhapdf python3 zlib ]; 15 16 enableParallelBuilding = true; 17
+2 -2
pkgs/development/python-modules/aprslib/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "aprslib"; 10 - version = "0.6.47"; 11 12 src = fetchFromGitHub { 13 owner = "rossengeorgiev"; 14 repo = "aprs-python"; 15 rev = "v${version}"; 16 - sha256 = "1569v74ym2r8vxx3dnjcs5fr7rdrfb0i9sycny5frw2zgms4ag6b"; 17 }; 18 19 checkInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "aprslib"; 10 + version = "0.7.0"; 11 12 src = fetchFromGitHub { 13 owner = "rossengeorgiev"; 14 repo = "aprs-python"; 15 rev = "v${version}"; 16 + sha256 = "sha256-QasyF0Ch4zdPoAgcqRavEENVGA/02/AgeWAgXYcSUjk="; 17 }; 18 19 checkInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-subscription/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "azure-mgmt-subscription"; 14 - version = "1.0.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 extension = "zip"; 19 - sha256 = "22f606f298419f466a8149811fc762686c93da00a7dc15d3b7cdbf22b96cf5db"; 20 }; 21 22 propagatedBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "azure-mgmt-subscription"; 14 + version = "2.0.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 extension = "zip"; 19 + sha256 = "70ec6e3395549c434bfd981f8f76cb8b6863339bad9b31924c1510af661dbf45"; 20 }; 21 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/filebrowser_safe/default.nix
··· 5 }: 6 7 buildPythonPackage rec { 8 - version = "0.5.0"; 9 pname = "filebrowser_safe"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "5dcd31dd79684025139b43841f6515af1da5a4bb0de15bc4d88003db1970648e"; 14 }; 15 16 buildInputs = [ django ];
··· 5 }: 6 7 buildPythonPackage rec { 8 + version = "1.0.0"; 9 pname = "filebrowser_safe"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "1209a26abd5a085a6453e020513fd94e920bde3908a2bcf3fe0ad5e4292b943b"; 14 }; 15 16 buildInputs = [ django ];
+2 -2
pkgs/development/python-modules/flake8-length/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "flake8-length"; 11 - version = "0.2.0"; 12 disabled = pythonOlder "3.6"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - sha256 = "15frvccm1qx783jlx8fw811ks9jszln3agbb58lg4dhbmjaf2cxw"; 17 }; 18 19 propagatedBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "flake8-length"; 11 + version = "0.2.2"; 12 disabled = pythonOlder "3.6"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + sha256 = "3536fee1d2a19c01f56ebb909c4d81f686f8181091a9bc3ddf3a5621c464760a"; 17 }; 18 19 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/gplaycli/default.nix
··· 1 { buildPythonPackage, lib, libffi, isPy3k, pyasn1, clint, ndg-httpsclient 2 - , protobuf, requests, args, gpapi, pyaxmlparser, fetchFromGitHub 3 }: 4 5 buildPythonPackage rec { ··· 15 16 disabled = !isPy3k; 17 18 - propagatedBuildInputs = [ libffi pyasn1 clint ndg-httpsclient protobuf requests args gpapi pyaxmlparser ]; 19 20 meta = with lib; { 21 homepage = "https://github.com/matlink/gplaycli";
··· 1 { buildPythonPackage, lib, libffi, isPy3k, pyasn1, clint, ndg-httpsclient 2 + , protobuf, requests, args, gpapi, pyaxmlparser, setuptools, fetchFromGitHub 3 }: 4 5 buildPythonPackage rec { ··· 15 16 disabled = !isPy3k; 17 18 + propagatedBuildInputs = [ libffi pyasn1 clint ndg-httpsclient protobuf requests args gpapi pyaxmlparser setuptools ]; 19 20 meta = with lib; { 21 homepage = "https://github.com/matlink/gplaycli";
+2 -2
pkgs/development/python-modules/lc7001/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "lc7001"; 11 - version = "1.0.3"; 12 format = "pyproject"; 13 14 disabled = pythonOlder "3.8"; 15 16 src = fetchPypi { 17 inherit pname version; 18 - sha256 = "NgnszlgmeUnfWs9onnboFRz3c4OibsNaZHjDINvoMPc="; 19 }; 20 21 nativeBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "lc7001"; 11 + version = "1.0.4"; 12 format = "pyproject"; 13 14 disabled = pythonOlder "3.8"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + sha256 = "sha256-1qObmGpu6mU3gdxS8stH+4Zc2NA7W1+pS7fOXALC0Ug="; 19 }; 20 21 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/numexpr/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "numexpr"; 10 - version = "2.7.3"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "43616529f9b7d1afc83386f943dc66c4da5e052f00217ba7e3ad8dd1b5f3a825"; 15 }; 16 17 # Remove existing site.cfg, use the one we built for numpy.
··· 7 8 buildPythonPackage rec { 9 pname = "numexpr"; 10 + version = "2.8.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "9fec076b76c90a5f3929373f548834bb203c6d23a81a895e60d0fe9cca075e99"; 15 }; 16 17 # Remove existing site.cfg, use the one we built for numpy.
+2 -2
pkgs/development/python-modules/papis-python-rofi/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "papis-python-rofi"; 5 - version = "1.0.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "13k6mw2nq923zazs77hpmh2s96v6zv13g7p89510qqkvp6fiml1v"; 10 }; 11 12 # No tests existing
··· 2 3 buildPythonPackage rec { 4 pname = "papis-python-rofi"; 5 + version = "1.0.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "358e24f5fb0a86de6f15d5168753ad4cbb97e52b36b1bd7abbad4053aeb6f621"; 10 }; 11 12 # No tests existing
+2 -2
pkgs/development/python-modules/pyopencl/default.nix
··· 21 if stdenv.isDarwin then [ mesa_drivers.dev ] else [ ocl-icd ]; 22 in buildPythonPackage rec { 23 pname = "pyopencl"; 24 - version = "2021.2.9"; 25 26 checkInputs = [ pytest ]; 27 buildInputs = [ opencl-headers pybind11 ] ++ os-specific-buildInputs; ··· 30 31 src = fetchPypi { 32 inherit pname version; 33 - sha256 = "51425e65ec49c738eefe21b1eeb1f39245b01cc0ddfd495fbe1f8df33dbc6c9e"; 34 }; 35 36 # py.test is not needed during runtime, so remove it from `install_requires`
··· 21 if stdenv.isDarwin then [ mesa_drivers.dev ] else [ ocl-icd ]; 22 in buildPythonPackage rec { 23 pname = "pyopencl"; 24 + version = "2021.2.10"; 25 26 checkInputs = [ pytest ]; 27 buildInputs = [ opencl-headers pybind11 ] ++ os-specific-buildInputs; ··· 30 31 src = fetchPypi { 32 inherit pname version; 33 + sha256 = "75a1f202741bace9606a8680bbbfac69bf8a73d4e7511fb1a6ce3e48185996ae"; 34 }; 35 36 # py.test is not needed during runtime, so remove it from `install_requires`
+2 -2
pkgs/development/python-modules/pywbem/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "pywbem"; 9 - version = "1.2.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "8ef48185e0adbaeb9bd5181c4c5de951f6d58d54e2e1d7e87a9834e10eabe957"; 14 }; 15 16 propagatedBuildInputs = [
··· 6 7 buildPythonPackage rec { 8 pname = "pywbem"; 9 + version = "1.2.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "5e4b4cf4813da57a02ce999d5e2e97e7a9f1ec8014e6561a896ee8b14ae5fa4d"; 14 }; 15 16 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/teslajsonpy/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "teslajsonpy"; 18 - version = "1.2.1"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.6"; ··· 24 owner = "zabuldon"; 25 repo = pname; 26 rev = "v${version}"; 27 - sha256 = "sha256-49dQgzYsEn5jmHWTJ3e3QOTqNeoTRMjUWxp+MaOYod4="; 28 }; 29 30 nativeBuildInputs = [
··· 15 16 buildPythonPackage rec { 17 pname = "teslajsonpy"; 18 + version = "1.4.0"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.6"; ··· 24 owner = "zabuldon"; 25 repo = pname; 26 rev = "v${version}"; 27 + sha256 = "17ld1ciylfc8kmf5iazzrlqqdf434wi5dfjzm68nm5d539gccfss"; 28 }; 29 30 nativeBuildInputs = [
+7 -8
pkgs/development/tools/misc/pahole/default.nix
··· 1 - { lib, stdenv, fetchgit, cmake, elfutils, zlib }: 2 3 stdenv.mkDerivation rec { 4 pname = "pahole"; 5 - version = "1.20"; 6 src = fetchgit { 7 url = "https://git.kernel.org/pub/scm/devel/pahole/pahole.git"; 8 rev = "v${version}"; 9 - sha256 = "11q9dpfi4qj2v8z0nlf8c0079mlv10ljhh0d1yr0j4ds3saacd15"; 10 - fetchSubmodules = true; 11 }; 12 13 - nativeBuildInputs = [ cmake ]; 14 - buildInputs = [ elfutils zlib ]; 15 16 # Put libraries in "lib" subdirectory, not top level of $out 17 - cmakeFlags = [ "-D__LIB=lib" ]; 18 19 meta = with lib; { 20 homepage = "https://git.kernel.org/cgit/devel/pahole/pahole.git/"; ··· 22 license = licenses.gpl2Only; 23 24 platforms = platforms.linux; 25 - maintainers = [ maintainers.bosu ]; 26 }; 27 }
··· 1 + { lib, stdenv, fetchgit, pkg-config, libbpf, cmake, elfutils, zlib }: 2 3 stdenv.mkDerivation rec { 4 pname = "pahole"; 5 + version = "1.22"; 6 src = fetchgit { 7 url = "https://git.kernel.org/pub/scm/devel/pahole/pahole.git"; 8 rev = "v${version}"; 9 + sha256 = "sha256-U1/i9WNlLphPIcNysC476sqil/q9tMYmu+Y6psga8I0="; 10 }; 11 12 + nativeBuildInputs = [ cmake pkg-config ]; 13 + buildInputs = [ elfutils zlib libbpf ]; 14 15 # Put libraries in "lib" subdirectory, not top level of $out 16 + cmakeFlags = [ "-D__LIB=lib" "-DLIBBPF_EMBEDDED=OFF" ]; 17 18 meta = with lib; { 19 homepage = "https://git.kernel.org/cgit/devel/pahole/pahole.git/"; ··· 21 license = licenses.gpl2Only; 22 23 platforms = platforms.linux; 24 + maintainers = with maintainers; [ bosu martinetd ]; 25 }; 26 }
+3 -3
pkgs/development/tools/typos/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "typos"; 5 - version = "1.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "crate-ci"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "Y+sIyueLdREoq/NR6LwppyhWxB8s0iBjdFaDUSKnlRw="; 12 }; 13 14 - cargoSha256 = "3oqmiHH9QU8uHs9q2CgE0uTvfyaRxV3rFBxkXxC5/Tw="; 15 16 meta = with lib; { 17 description = "Source code spell checker";
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "typos"; 5 + version = "1.3.1"; 6 7 src = fetchFromGitHub { 8 owner = "crate-ci"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-b81xopCkAUo9m9FBgL4v7OT+eZu4PNcF5QO1jXHVMT0="; 12 }; 13 14 + cargoSha256 = "sha256-3LFhUSg5cNtWPe8g43MsbGkmZR9BQdAT5m8k0eCBqIs="; 15 16 meta = with lib; { 17 description = "Source code spell checker";
+3 -3
pkgs/development/tools/yq-go/default.nix
··· 2 3 buildGoModule rec { 4 pname = "yq-go"; 5 - version = "4.13.5"; 6 7 src = fetchFromGitHub { 8 owner = "mikefarah"; 9 repo = "yq"; 10 rev = "v${version}"; 11 - sha256 = "sha256-ckcuA9jf8aFgcuts3VOE629WGkvBkdZP86PKXqzBvks="; 12 }; 13 14 - vendorSha256 = "sha256-jlQ4TH5PiO/68ZFOzOVUTYKkVe9lQleVjZoP4adRrUI="; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "yq-go"; 5 + version = "4.16.1"; 6 7 src = fetchFromGitHub { 8 owner = "mikefarah"; 9 repo = "yq"; 10 rev = "v${version}"; 11 + sha256 = "sha256-4o38f5ltTH6ea0na919GnJMao8w5rgkDWMp2mkoKwcY="; 12 }; 13 14 + vendorSha256 = "sha256-PCDM1VbqUcAVXzCPWDZtCRLpRIu43sF1lGazAG2HZJ0="; 15 16 doCheck = false; 17
+2 -2
pkgs/games/0ad/game.nix
··· 1 - { stdenv, lib, perl, fetchurl, python2, fmt, libidn 2 , pkg-config, spidermonkey_78, boost, icu, libxml2, libpng, libsodium 3 , libjpeg, zlib, curl, libogg, libvorbis, enet, miniupnpc 4 , openal, libGLU, libGL, xorgproto, libX11, libXcursor, nspr, SDL2 ··· 33 sha256 = "1p9fa8f7sjb9c5wl3mawzyfqvgr614kdkhrj2k4db9vkyisws3fp"; 34 }; 35 36 - nativeBuildInputs = [ python2 perl pkg-config ]; 37 38 buildInputs = [ 39 spidermonkey_78_6 boost icu libxml2 libpng libjpeg
··· 1 + { stdenv, lib, perl, fetchurl, python3, fmt, libidn 2 , pkg-config, spidermonkey_78, boost, icu, libxml2, libpng, libsodium 3 , libjpeg, zlib, curl, libogg, libvorbis, enet, miniupnpc 4 , openal, libGLU, libGL, xorgproto, libX11, libXcursor, nspr, SDL2 ··· 33 sha256 = "1p9fa8f7sjb9c5wl3mawzyfqvgr614kdkhrj2k4db9vkyisws3fp"; 34 }; 35 36 + nativeBuildInputs = [ python3 perl pkg-config ]; 37 38 buildInputs = [ 39 spidermonkey_78_6 boost icu libxml2 libpng libjpeg
+13 -11
pkgs/os-specific/linux/bcc/default.nix
··· 1 { lib, stdenv, fetchFromGitHub 2 - , makeWrapper, cmake, llvmPackages, kernel 3 , flex, bison, elfutils, python, luajit, netperf, iperf, libelf 4 - , systemtap, bash 5 }: 6 7 python.pkgs.buildPythonApplication rec { ··· 14 owner = "iovisor"; 15 repo = "bcc"; 16 rev = "v${version}"; 17 - sha256 = "sha256-4zfjr3VLg26uZ4xNKA1wayti7f2tqGvYSbwoZnr+Ygk="; 18 - fetchSubmodules = true; 19 }; 20 format = "other"; 21 22 buildInputs = with llvmPackages; [ 23 - llvm llvm.dev libclang kernel 24 elfutils luajit netperf iperf 25 - systemtap.stapBuild flex bash 26 ]; 27 28 patches = [ ··· 32 ]; 33 34 propagatedBuildInputs = [ python.pkgs.netaddr ]; 35 - nativeBuildInputs = [ makeWrapper cmake flex bison llvmPackages.llvm.dev ] 36 - # libelf is incompatible with elfutils-libelf 37 - ++ lib.filter (x: x != libelf) kernel.moduleBuildDependencies; 38 39 cmakeFlags = [ 40 - "-DBCC_KERNEL_MODULES_DIR=${kernel.dev}/lib/modules" 41 "-DREVISION=${version}" 42 "-DENABLE_USDT=ON" 43 "-DENABLE_CPP_API=ON" 44 ]; 45 46 postPatch = '' ··· 71 wrapPythonProgramsIn "$out/share/bcc/tools" "$out $pythonPath" 72 ''; 73 74 meta = with lib; { 75 description = "Dynamic Tracing Tools for Linux"; 76 homepage = "https://iovisor.github.io/bcc/"; 77 license = licenses.asl20; 78 - maintainers = with maintainers; [ ragge mic92 thoughtpolice ]; 79 }; 80 }
··· 1 { lib, stdenv, fetchFromGitHub 2 + , makeWrapper, cmake, llvmPackages 3 , flex, bison, elfutils, python, luajit, netperf, iperf, libelf 4 + , bash, libbpf, nixosTests 5 }: 6 7 python.pkgs.buildPythonApplication rec { ··· 14 owner = "iovisor"; 15 repo = "bcc"; 16 rev = "v${version}"; 17 + sha256 = "sha256-iLVUwJTDQ8Bn38sgHOcIR8TYxIB+gIlfTgr9+gPU0gE="; 18 }; 19 format = "other"; 20 21 buildInputs = with llvmPackages; [ 22 + llvm llvm.dev libclang 23 elfutils luajit netperf iperf 24 + flex bash libbpf 25 ]; 26 27 patches = [ ··· 31 ]; 32 33 propagatedBuildInputs = [ python.pkgs.netaddr ]; 34 + nativeBuildInputs = [ makeWrapper cmake flex bison llvmPackages.llvm.dev ]; 35 36 cmakeFlags = [ 37 + "-DBCC_KERNEL_MODULES_DIR=/run/booted-system/kernel-modules/lib/modules" 38 "-DREVISION=${version}" 39 "-DENABLE_USDT=ON" 40 "-DENABLE_CPP_API=ON" 41 + "-DCMAKE_USE_LIBBPF_PACKAGE=ON" 42 ]; 43 44 postPatch = '' ··· 69 wrapPythonProgramsIn "$out/share/bcc/tools" "$out $pythonPath" 70 ''; 71 72 + passthru.tests = { 73 + bpf = nixosTests.bpf; 74 + }; 75 + 76 meta = with lib; { 77 description = "Dynamic Tracing Tools for Linux"; 78 homepage = "https://iovisor.github.io/bcc/"; 79 license = licenses.asl20; 80 + maintainers = with maintainers; [ ragge mic92 thoughtpolice martinetd ]; 81 }; 82 }
+39
pkgs/os-specific/linux/bpftrace/btf-dump-new-0.6.0.patch
···
··· 1 + diff -ur source/src/btf.cpp new/src/btf.cpp 2 + --- source/src/btf.cpp 1970-01-01 09:00:01.000000000 +0900 3 + +++ new/src/btf.cpp 2021-12-04 21:46:59.337023489 +0900 4 + @@ -225,7 +225,7 @@ 5 + char err_buf[256]; 6 + int err; 7 + 8 + - dump = btf_dump__new(btf, nullptr, &opts, dump_printf); 9 + + dump = btf_dump__new_deprecated(btf, nullptr, &opts, dump_printf); 10 + err = libbpf_get_error(dump); 11 + if (err) 12 + { 13 + @@ -496,7 +496,7 @@ 14 + char err_buf[256]; 15 + int err; 16 + 17 + - dump = btf_dump__new(btf, nullptr, &opts, dump_printf); 18 + + dump = btf_dump__new_deprecated(btf, nullptr, &opts, dump_printf); 19 + err = libbpf_get_error(dump); 20 + if (err) 21 + { 22 + @@ -554,7 +554,7 @@ 23 + char err_buf[256]; 24 + int err; 25 + 26 + - dump = btf_dump__new(btf, nullptr, &opts, dump_printf); 27 + + dump = btf_dump__new_deprecated(btf, nullptr, &opts, dump_printf); 28 + err = libbpf_get_error(dump); 29 + if (err) 30 + { 31 + @@ -648,7 +648,7 @@ 32 + char err_buf[256]; 33 + int err; 34 + 35 + - dump = btf_dump__new(btf, nullptr, &opts, dump_printf); 36 + + dump = btf_dump__new_deprecated(btf, nullptr, &opts, dump_printf); 37 + err = libbpf_get_error(dump); 38 + if (err) 39 + {
+18 -17
pkgs/os-specific/linux/bpftrace/default.nix
··· 1 { lib, stdenv, fetchFromGitHub 2 , cmake, pkg-config, flex, bison 3 - , llvmPackages, kernel, elfutils 4 , libelf, libbfd, libbpf, libopcodes, bcc 5 }: 6 7 stdenv.mkDerivation rec { 8 pname = "bpftrace"; 9 - version = "0.13.0"; 10 11 src = fetchFromGitHub { 12 owner = "iovisor"; 13 repo = "bpftrace"; 14 rev = "v${version}"; 15 - sha256 = "sha256-BKWBdFzj0j7rAfG30A0fwyYCpOG/5NFRPODW46EP1u0="; 16 }; 17 18 buildInputs = with llvmPackages; 19 [ llvm libclang 20 - kernel elfutils libelf bcc 21 libbpf libbfd libopcodes 22 ]; 23 24 - nativeBuildInputs = [ cmake pkg-config flex bison llvmPackages.llvm.dev ] 25 - # libelf is incompatible with elfutils-libelf 26 - ++ lib.filter (x: x != libelf) kernel.moduleBuildDependencies; 27 - 28 - # patch the source, *then* substitute on @NIX_KERNEL_SRC@ in the result. we could 29 - # also in theory make this an environment variable around bpftrace, but this works 30 - # nicely without wrappers. 31 - patchPhase = '' 32 - patch -p1 < ${./fix-kernel-include-dir.patch} 33 - substituteInPlace ./src/utils.cpp \ 34 - --subst-var-by NIX_KERNEL_SRC '${kernel.dev}/lib/modules/${kernel.modDirVersion}' 35 - ''; 36 37 # tests aren't built, due to gtest shenanigans. see: 38 # ··· 52 53 outputs = [ "out" "man" ]; 54 55 meta = with lib; { 56 description = "High-level tracing language for Linux eBPF"; 57 homepage = "https://github.com/iovisor/bpftrace"; 58 license = licenses.asl20; 59 - maintainers = with maintainers; [ rvl thoughtpolice ]; 60 }; 61 }
··· 1 { lib, stdenv, fetchFromGitHub 2 , cmake, pkg-config, flex, bison 3 + , llvmPackages, elfutils 4 , libelf, libbfd, libbpf, libopcodes, bcc 5 + , cereal, asciidoctor 6 + , nixosTests 7 }: 8 9 stdenv.mkDerivation rec { 10 pname = "bpftrace"; 11 + version = "0.14.0"; 12 13 src = fetchFromGitHub { 14 owner = "iovisor"; 15 repo = "bpftrace"; 16 rev = "v${version}"; 17 + sha256 = "sha256-rlaajNfpoiMtU/4aNAnbQ0VixPz9/302TZMarGzsb58="; 18 }; 19 20 + # libbpf 0.6.0 relies on typeof in bpf/btf.h to pick the right version of 21 + # btf_dump__new() but that's not valid c++. 22 + # see https://github.com/iovisor/bpftrace/issues/2068 23 + patches = [ ./btf-dump-new-0.6.0.patch ]; 24 + 25 buildInputs = with llvmPackages; 26 [ llvm libclang 27 + elfutils libelf bcc 28 libbpf libbfd libopcodes 29 + cereal asciidoctor 30 ]; 31 32 + nativeBuildInputs = [ cmake pkg-config flex bison llvmPackages.llvm.dev ]; 33 34 # tests aren't built, due to gtest shenanigans. see: 35 # ··· 49 50 outputs = [ "out" "man" ]; 51 52 + passthru.tests = { 53 + bpf = nixosTests.bpf; 54 + }; 55 + 56 meta = with lib; { 57 description = "High-level tracing language for Linux eBPF"; 58 homepage = "https://github.com/iovisor/bpftrace"; 59 license = licenses.asl20; 60 + maintainers = with maintainers; [ rvl thoughtpolice martinetd ]; 61 }; 62 }
-22
pkgs/os-specific/linux/bpftrace/fix-kernel-include-dir.patch
··· 1 - commit b6172952c0150d84912fa6f09bab782dd0549f1e 2 - Author: Austin Seipp <aseipp@pobox.com> 3 - Date: Fri May 3 00:47:12 2019 -0500 4 - 5 - src: special case nix build directories for clang 6 - 7 - Signed-off-by: Austin Seipp <aseipp@pobox.com> 8 - 9 - diff --git a/src/clang_parser.cpp b/src/clang_parser.cpp 10 - index b1db8ff..0cfb01f 100644 11 - --- a/src/utils.cpp 12 - +++ b/src/utils.cpp 13 - @@ -140,6 +140,9 @@ static bool is_dir(const std::string& path) 14 - // Both ksrc and kobj are guaranteed to be != "", if at least some trace of kernel sources was found. 15 - std::tuple<std::string, std::string> get_kernel_dirs(const struct utsname& utsname) 16 - { 17 - + // NB (aseipp): special case the kernel directory for nix 18 - + return { "@NIX_KERNEL_SRC@/source", "@NIX_KERNEL_SRC@/build" }; 19 - + 20 - #ifdef KERNEL_HEADERS_DIR 21 - return {KERNEL_HEADERS_DIR, KERNEL_HEADERS_DIR}; 22 - #endif
···
+6 -1
pkgs/os-specific/linux/libbpf/default.nix
··· 23 enableParallelBuilding = true; 24 makeFlags = [ "PREFIX=$(out)" ]; 25 26 # FIXME: Multi-output requires some fixes to the way the pkg-config file is 27 # constructed (it gets put in $out instead of $dev for some reason, with 28 # improper paths embedded). Don't enable it for now. ··· 33 description = "Upstream mirror of libbpf"; 34 homepage = "https://github.com/libbpf/libbpf"; 35 license = with licenses; [ lgpl21 /* or */ bsd2 ]; 36 - maintainers = with maintainers; [ thoughtpolice vcunat saschagrunert ]; 37 platforms = platforms.linux; 38 }; 39 }
··· 23 enableParallelBuilding = true; 24 makeFlags = [ "PREFIX=$(out)" ]; 25 26 + postInstall = '' 27 + # install linux's libbpf-compatible linux/btf.h 28 + install -Dm444 ../include/uapi/linux/btf.h -t $out/include/linux 29 + ''; 30 + 31 # FIXME: Multi-output requires some fixes to the way the pkg-config file is 32 # constructed (it gets put in $out instead of $dev for some reason, with 33 # improper paths embedded). Don't enable it for now. ··· 38 description = "Upstream mirror of libbpf"; 39 homepage = "https://github.com/libbpf/libbpf"; 40 license = with licenses; [ lgpl21 /* or */ bsd2 ]; 41 + maintainers = with maintainers; [ thoughtpolice vcunat saschagrunert martinetd ]; 42 platforms = platforms.linux; 43 }; 44 }
+2 -2
pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix
··· 2 3 buildPythonPackage rec { 4 pname = "matrix-synapse-mjolnir-antispam"; 5 - version = "1.1.20"; 6 7 src = fetchFromGitHub { 8 owner = "matrix-org"; 9 repo = "mjolnir"; 10 rev = "v${version}"; 11 - sha256 = "06779z08qni1kgr292gpkxd2xvyg4apfnbhynli9qjp2vaf03wy9"; 12 }; 13 14 sourceRoot = "./source/synapse_antispam";
··· 2 3 buildPythonPackage rec { 4 pname = "matrix-synapse-mjolnir-antispam"; 5 + version = "1.2.1"; 6 7 src = fetchFromGitHub { 8 owner = "matrix-org"; 9 repo = "mjolnir"; 10 rev = "v${version}"; 11 + sha256 = "0fvdzn5l1a6bhr1qzgs30a3kh6nj0byqichnl149sjgr0v4lpkz1"; 12 }; 13 14 sourceRoot = "./source/synapse_antispam";
+3 -3
pkgs/tools/admin/trivy/default.nix
··· 5 6 buildGoModule rec { 7 pname = "trivy"; 8 - version = "0.21.0"; 9 10 src = fetchFromGitHub { 11 owner = "aquasecurity"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-weLzW1pyv9q9VKvFxno+f/L29wlpvxlVUZJUwx6Gn2A="; 15 }; 16 17 - vendorSha256 = "sha256-1kQ2m8gFBHKznbjNPtYN0BVrRbxyCs2H1f7+XZqgVvc="; 18 19 excludedPackages = "misc"; 20
··· 5 6 buildGoModule rec { 7 pname = "trivy"; 8 + version = "0.21.1"; 9 10 src = fetchFromGitHub { 11 owner = "aquasecurity"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-KxGG59H5EzIcYigvbQlrwpZLP4zMqErO3vDKhBOPc3w="; 15 }; 16 17 + vendorSha256 = "sha256-lITzqPMsZk/G2nG4LcUdyTb3gE3rtlXET/c2UaYODvU="; 18 19 excludedPackages = "misc"; 20
+2 -2
pkgs/tools/misc/recoverjpeg/default.nix
··· 1 - { lib, stdenv, fetchurl, makeWrapper, python2, exif, imagemagick }: 2 3 stdenv.mkDerivation rec { 4 pname = "recoverjpeg"; ··· 11 12 nativeBuildInputs = [ makeWrapper ]; 13 14 - buildInputs = [ python2 ]; 15 16 postFixup = '' 17 wrapProgram $out/bin/sort-pictures \
··· 1 + { lib, stdenv, fetchurl, makeWrapper, python3, exif, imagemagick }: 2 3 stdenv.mkDerivation rec { 4 pname = "recoverjpeg"; ··· 11 12 nativeBuildInputs = [ makeWrapper ]; 13 14 + buildInputs = [ python3 ]; 15 16 postFixup = '' 17 wrapProgram $out/bin/sort-pictures \
+3 -3
pkgs/tools/package-management/cargo-outdated/default.nix
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "cargo-outdated"; 14 - version = "0.10.1"; 15 16 src = fetchCrate { 17 inherit pname version; 18 - sha256 = "sha256-jg8KuIu1SaIRlEI9yvpLCESZfAyNgSThJ6pe7+IM6j0="; 19 }; 20 21 - cargoSha256 = "sha256-jfZUtUVHEC8zK+FJHSOQxELWTG/Of2WSDoqdg/Sckws="; 22 23 nativeBuildInputs = [ pkg-config ]; 24
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "cargo-outdated"; 14 + version = "0.10.2"; 15 16 src = fetchCrate { 17 inherit pname version; 18 + sha256 = "sha256-U6qElZkray4kjScv9X4I5m2z1ZWQzqcPYAuPzpyRpW0="; 19 }; 20 21 + cargoSha256 = "sha256-0J02Uz184zx5xZYhqUmyaAFCQ0aogwy0fQTXbteBdV8="; 22 23 nativeBuildInputs = [ pkg-config ]; 24
+3 -3
pkgs/tools/package-management/cargo-release/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-release"; 5 - version = "0.18.4"; 6 7 src = fetchFromGitHub { 8 owner = "crate-ci"; 9 repo = "cargo-release"; 10 rev = "v${version}"; 11 - sha256 = "sha256-m+mLnlTBBS3DdxOmOi+NvoSSWgBZ9lI9tqIgq3GHnJI="; 12 }; 13 14 - cargoSha256 = "sha256-L6Izc8OrZ+RnGPpWKWBMpyyOthWzB0DjmQxf20R6dE4="; 15 16 nativeBuildInputs = [ pkg-config ]; 17
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-release"; 5 + version = "0.18.5"; 6 7 src = fetchFromGitHub { 8 owner = "crate-ci"; 9 repo = "cargo-release"; 10 rev = "v${version}"; 11 + sha256 = "sha256-bbxOavpEVVRv5czl2UiV6brulvjod7X7n+j8/9bO+SE="; 12 }; 13 14 + cargoSha256 = "sha256-E0Mo+hgI0uRaV2GAX52YtdNyZdd9wHVOBB3tJz36/8I="; 15 16 nativeBuildInputs = [ pkg-config ]; 17
+8 -8
pkgs/tools/text/grin/default.nix
··· 1 - { lib, fetchFromGitHub, python2Packages }: 2 3 - python2Packages.buildPythonApplication rec { 4 pname = "grin"; 5 - version = "1.2.1"; 6 namePrefix = ""; 7 8 src = fetchFromGitHub { 9 - owner = "rkern"; 10 repo = pname; 11 - rev = "8dd4b5309b3bc04fe9d3e71836420f7d8d4a293f"; 12 - sha256 = "0vz2aahwdcy1296g4w3i79dkvmzk9jc2n2zmlcvlg5m3s6h7b6jd"; 13 }; 14 15 - buildInputs = with python2Packages; [ nose ]; 16 17 meta = { 18 - homepage = "https://github.com/rkern/grin"; 19 description = "A grep program configured the way I like it"; 20 platforms = lib.platforms.all; 21 maintainers = [ lib.maintainers.sjagoe ];
··· 1 + { lib, fetchFromGitHub, python3Packages }: 2 3 + python3Packages.buildPythonApplication rec { 4 pname = "grin"; 5 + version = "1.3.0"; 6 namePrefix = ""; 7 8 src = fetchFromGitHub { 9 + owner = "matthew-brett"; 10 repo = pname; 11 + rev = "1.3.0"; 12 + sha256 = "057d05vzx4sf415vnh3qj2g351xhb3illjxjs9mdl3nsnb5r84kv"; 13 }; 14 15 + buildInputs = with python3Packages; [ nose ]; 16 17 meta = { 18 + homepage = "https://github.com/matthew-brett/grin"; 19 description = "A grep program configured the way I like it"; 20 platforms = lib.platforms.all; 21 maintainers = [ lib.maintainers.sjagoe ];
+25 -66
pkgs/tools/virtualization/google-compute-engine/default.nix
··· 3 , buildPythonPackage 4 , bash 5 , bashInteractive 6 , util-linux 7 , boto 8 , setuptools 9 , distro 10 - , stdenv 11 - , pythonOlder 12 - , pytestCheckHook 13 }: 14 15 - let 16 - guest-configs = stdenv.mkDerivation rec { 17 - pname = "guest-configs"; 18 - version = "20210702.00"; 19 - 20 - src = fetchFromGitHub { 21 - owner = "GoogleCloudPlatform"; 22 - repo = "guest-configs"; 23 - rev = version; 24 - sha256 = "1965kdrb1ig3z4qwzvyzx1fb4282ak5vgxcvvg5k9c759pzbc5nn"; 25 - }; 26 - 27 - buildInputs = [ bash ]; 28 - 29 - dontConfigure = true; 30 - dontBuild = true; 31 - 32 - installPhase = '' 33 - runHook preInstall 34 - 35 - # allows to install the package in `services.udev.packages` in NixOS 36 - mkdir -p $out/lib/udev $out/bin 37 - 38 - cp -r "src/lib/udev/rules.d" $out/lib/udev 39 - cp "src/lib/udev/google_nvme_id" $out/bin 40 - 41 - for rules in $out/lib/udev/*.rules; do 42 - substituteInPlace "$rules" \ 43 - --replace /bin/sh "${bash}/bin/sh" \ 44 - --replace /bin/umount "${util-linux}/bin/umount" \ 45 - --replace /usr/bin/logger "${util-linux}/bin/logger" 46 - done 47 - 48 - # sysctl snippets will be used by google-compute-config.nix 49 - cp -r "src/etc/sysctl.d" $out 50 - 51 - patchShebangs $out/bin/* 52 - 53 - runHook postInstall 54 - ''; 55 - }; 56 - in 57 buildPythonPackage rec { 58 pname = "google-compute-engine"; 59 - version = "20200113.0"; 60 61 src = fetchFromGitHub { 62 owner = "GoogleCloudPlatform"; 63 repo = "compute-image-packages"; 64 - rev = "506b9a0dbffec5620887660cd42c57b3cbbadba6"; 65 - sha256 = "0lmc426mvrajghpavhs6hwl19mgnnh08ziqx5yi15fzpnvwmb8vz"; 66 }; 67 68 - buildInputs = [ bash guest-configs ]; 69 - propagatedBuildInputs = [ (if pythonOlder "3.7" then boto else distro) setuptools ]; 70 - 71 - preBuild = '' 72 - cd packages/python-google-compute-engine 73 - ''; 74 - 75 - disabledTests = [ 76 - "testExtractInterfaceMetadata" 77 - "testCallDhclientIpv6" 78 - "testWriteConfig" 79 - "testCreateInterfaceMapNetifaces" 80 - "testCreateInterfaceMapSysfs" 81 - "testGetNetworkInterface" 82 - ]; 83 - 84 - checkInputs = [ pytestCheckHook ]; 85 86 postPatch = '' 87 for file in $(find google_compute_engine -type f); do ··· 91 --replace /sbin/hwclock "${util-linux}/bin/hwclock" 92 # SELinux tool ??? /sbin/restorecon 93 done 94 ''; 95 96 pythonImportsCheck = [ "google_compute_engine" ]; 97 98 meta = with lib; { 99 description = "Google Compute Engine tools and services"; 100 homepage = "https://github.com/GoogleCloudPlatform/compute-image-packages"; 101 license = licenses.asl20; 102 - maintainers = with maintainers; [ cpcloud zimbatm ]; 103 platforms = platforms.linux; 104 }; 105 }
··· 3 , buildPythonPackage 4 , bash 5 , bashInteractive 6 + , systemd 7 , util-linux 8 , boto 9 , setuptools 10 , distro 11 }: 12 13 buildPythonPackage rec { 14 pname = "google-compute-engine"; 15 + version = "20190124"; 16 17 src = fetchFromGitHub { 18 owner = "GoogleCloudPlatform"; 19 repo = "compute-image-packages"; 20 + rev = version; 21 + sha256 = "08cy0jd463kng6hwbd3nfldsp4dpd2lknlvdm88cq795wy0kh4wp"; 22 }; 23 24 + buildInputs = [ bash ]; 25 + propagatedBuildInputs = [ boto setuptools distro ]; 26 27 postPatch = '' 28 for file in $(find google_compute_engine -type f); do ··· 32 --replace /sbin/hwclock "${util-linux}/bin/hwclock" 33 # SELinux tool ??? /sbin/restorecon 34 done 35 + 36 + substituteInPlace google_config/udev/64-gce-disk-removal.rules \ 37 + --replace /bin/sh "${bash}/bin/sh" \ 38 + --replace /bin/umount "${util-linux}/bin/umount" \ 39 + --replace /usr/bin/logger "${util-linux}/bin/logger" 40 ''; 41 42 + postInstall = '' 43 + # allows to install the package in `services.udev.packages` in NixOS 44 + mkdir -p $out/lib/udev/rules.d 45 + cp -r google_config/udev/*.rules $out/lib/udev/rules.d 46 + 47 + # sysctl snippets will be used by google-compute-config.nix 48 + mkdir -p $out/sysctl.d 49 + cp google_config/sysctl/*.conf $out/sysctl.d 50 + 51 + patchShebangs $out/bin/* 52 + ''; 53 + 54 + doCheck = false; 55 pythonImportsCheck = [ "google_compute_engine" ]; 56 57 meta = with lib; { 58 description = "Google Compute Engine tools and services"; 59 homepage = "https://github.com/GoogleCloudPlatform/compute-image-packages"; 60 license = licenses.asl20; 61 + maintainers = with maintainers; [ zimbatm ]; 62 platforms = platforms.linux; 63 }; 64 }
+1
pkgs/top-level/aliases.nix
··· 132 clangAnalyzer = clang-analyzer; # added 2015-02-20 133 claws-mail-gtk3 = claws-mail; # added 2021-07-10 134 clawsMail = claws-mail; # added 2016-04-29 135 clutter_gtk = clutter-gtk; # added 2018-02-25 136 cmakeWithQt4Gui = throw "cmakeWithQt4Gui has been removed in favor of cmakeWithGui (Qt 5)"; # added 2021-05 137 codimd = hedgedoc; # added 2020-11-29
··· 132 clangAnalyzer = clang-analyzer; # added 2015-02-20 133 claws-mail-gtk3 = claws-mail; # added 2021-07-10 134 clawsMail = claws-mail; # added 2016-04-29 135 + claws-mail-gtk2 = throw "claws-mail-gtk2 was removed to get rid of Python 2, please use claws-mail"; # added 2021-12-05 136 clutter_gtk = clutter-gtk; # added 2018-02-25 137 cmakeWithQt4Gui = throw "cmakeWithQt4Gui has been removed in favor of cmakeWithGui (Qt 5)"; # added 2021-05 138 codimd = hedgedoc; # added 2020-11-29
+7 -6
pkgs/top-level/all-packages.nix
··· 5945 5946 google-clasp = callPackage ../development/misc/google-clasp { }; 5947 5948 - google-compute-engine = with python3.pkgs; toPythonApplication google-compute-engine; 5949 5950 google-compute-engine-oslogin = callPackage ../tools/virtualization/google-compute-engine-oslogin { }; 5951 ··· 14170 libbpf = callPackage ../os-specific/linux/libbpf { }; 14171 14172 bpftools = callPackage ../os-specific/linux/bpftools { }; 14173 14174 bpm-tools = callPackage ../tools/audio/bpm-tools { }; 14175 ··· 24401 24402 ciscoPacketTracer8 = callPackage ../applications/networking/cisco-packet-tracer/8.nix { }; 24403 24404 - claws-mail-gtk2 = callPackage ../applications/networking/mailreaders/claws-mail { 24405 - inherit (xorg) libSM; 24406 - useGtk3 = false; 24407 - }; 24408 claws-mail = callPackage ../applications/networking/mailreaders/claws-mail { 24409 inherit (xorg) libSM; 24410 - useGtk3 = true; 24411 }; 24412 24413 clfswm = callPackage ../applications/window-managers/clfswm { };
··· 5945 5946 google-clasp = callPackage ../development/misc/google-clasp { }; 5947 5948 + google-compute-engine = with python38.pkgs; toPythonApplication google-compute-engine; 5949 5950 google-compute-engine-oslogin = callPackage ../tools/virtualization/google-compute-engine-oslogin { }; 5951 ··· 14170 libbpf = callPackage ../os-specific/linux/libbpf { }; 14171 14172 bpftools = callPackage ../os-specific/linux/bpftools { }; 14173 + 14174 + bcc = callPackage ../os-specific/linux/bcc { 14175 + python = pkgs.python3; 14176 + }; 14177 + 14178 + bpftrace = callPackage ../os-specific/linux/bpftrace { }; 14179 14180 bpm-tools = callPackage ../tools/audio/bpm-tools { }; 14181 ··· 24407 24408 ciscoPacketTracer8 = callPackage ../applications/networking/cisco-packet-tracer/8.nix { }; 24409 24410 claws-mail = callPackage ../applications/networking/mailreaders/claws-mail { 24411 inherit (xorg) libSM; 24412 }; 24413 24414 clfswm = callPackage ../applications/window-managers/clfswm { };
+1 -6
pkgs/top-level/linux-kernels.nix
··· 250 inherit (kernel) kernelOlder kernelAtLeast; 251 # Obsolete aliases (these packages do not depend on the kernel). 252 inherit (pkgs) odp-dpdk pktgen; # added 2018-05 253 254 acpi_call = callPackage ../os-specific/linux/acpi-call {}; 255 ··· 262 apfs = callPackage ../os-specific/linux/apfs { }; 263 264 batman_adv = callPackage ../os-specific/linux/batman-adv {}; 265 - 266 - bcc = callPackage ../os-specific/linux/bcc { 267 - python = pkgs.python3; 268 - }; 269 - 270 - bpftrace = callPackage ../os-specific/linux/bpftrace { }; 271 272 bbswitch = callPackage ../os-specific/linux/bbswitch {}; 273
··· 250 inherit (kernel) kernelOlder kernelAtLeast; 251 # Obsolete aliases (these packages do not depend on the kernel). 252 inherit (pkgs) odp-dpdk pktgen; # added 2018-05 253 + inherit (pkgs) bcc bpftrace; # added 2021-12 254 255 acpi_call = callPackage ../os-specific/linux/acpi-call {}; 256 ··· 263 apfs = callPackage ../os-specific/linux/apfs { }; 264 265 batman_adv = callPackage ../os-specific/linux/batman-adv {}; 266 267 bbswitch = callPackage ../os-specific/linux/bbswitch {}; 268