Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub ec684216 f3d6aa00

+1899 -1584
+1 -1
lib/options.nix
··· 120 Example: 121 mkPackageOption pkgs "GHC" { 122 default = [ "ghc" ]; 123 - example = "pkgs.haskell.package.ghc922.ghc.withPackages (hkgs: [ hkgs.primes ])"; 124 } 125 => { _type = "option"; default = «derivation /nix/store/jxx55cxsjrf8kyh3fp2ya17q99w7541r-ghc-8.10.7.drv»; defaultText = { ... }; description = "The GHC package to use."; example = { ... }; type = { ... }; } 126 */
··· 120 Example: 121 mkPackageOption pkgs "GHC" { 122 default = [ "ghc" ]; 123 + example = "pkgs.haskell.package.ghc923.ghc.withPackages (hkgs: [ hkgs.primes ])"; 124 } 125 => { _type = "option"; default = «derivation /nix/store/jxx55cxsjrf8kyh3fp2ya17q99w7541r-ghc-8.10.7.drv»; defaultText = { ... }; description = "The GHC package to use."; example = { ... }; type = { ... }; } 126 */
+2 -2
nixos/doc/manual/development/option-declarations.section.md
··· 120 ```nix 121 lib.mkPackageOption pkgs "GHC" { 122 default = [ "ghc" ]; 123 - example = "pkgs.haskell.package.ghc922.ghc.withPackages (hkgs: [ hkgs.primes ])"; 124 } 125 # is like 126 lib.mkOption { 127 type = lib.types.package; 128 default = pkgs.ghc; 129 defaultText = lib.literalExpression "pkgs.ghc"; 130 - example = lib.literalExpression "pkgs.haskell.package.ghc922.ghc.withPackages (hkgs: [ hkgs.primes ])"; 131 description = "The GHC package to use."; 132 } 133 ```
··· 120 ```nix 121 lib.mkPackageOption pkgs "GHC" { 122 default = [ "ghc" ]; 123 + example = "pkgs.haskell.package.ghc923.ghc.withPackages (hkgs: [ hkgs.primes ])"; 124 } 125 # is like 126 lib.mkOption { 127 type = lib.types.package; 128 default = pkgs.ghc; 129 defaultText = lib.literalExpression "pkgs.ghc"; 130 + example = lib.literalExpression "pkgs.haskell.package.ghc923.ghc.withPackages (hkgs: [ hkgs.primes ])"; 131 description = "The GHC package to use."; 132 } 133 ```
+2 -2
nixos/doc/manual/from_md/development/option-declarations.section.xml
··· 183 <programlisting language="bash"> 184 lib.mkPackageOption pkgs &quot;GHC&quot; { 185 default = [ &quot;ghc&quot; ]; 186 - example = &quot;pkgs.haskell.package.ghc922.ghc.withPackages (hkgs: [ hkgs.primes ])&quot;; 187 } 188 # is like 189 lib.mkOption { 190 type = lib.types.package; 191 default = pkgs.ghc; 192 defaultText = lib.literalExpression &quot;pkgs.ghc&quot;; 193 - example = lib.literalExpression &quot;pkgs.haskell.package.ghc922.ghc.withPackages (hkgs: [ hkgs.primes ])&quot;; 194 description = &quot;The GHC package to use.&quot;; 195 } 196 </programlisting>
··· 183 <programlisting language="bash"> 184 lib.mkPackageOption pkgs &quot;GHC&quot; { 185 default = [ &quot;ghc&quot; ]; 186 + example = &quot;pkgs.haskell.package.ghc923.ghc.withPackages (hkgs: [ hkgs.primes ])&quot;; 187 } 188 # is like 189 lib.mkOption { 190 type = lib.types.package; 191 default = pkgs.ghc; 192 defaultText = lib.literalExpression &quot;pkgs.ghc&quot;; 193 + example = lib.literalExpression &quot;pkgs.haskell.package.ghc923.ghc.withPackages (hkgs: [ hkgs.primes ])&quot;; 194 description = &quot;The GHC package to use.&quot;; 195 } 196 </programlisting>
+1 -1
nixos/lib/test-driver/test_driver/machine.py
··· 682 with self.nested("waiting for {} to appear on tty {}".format(regexp, tty)): 683 retry(tty_matches) 684 685 - def send_chars(self, chars: List[str]) -> None: 686 with self.nested("sending keys ‘{}‘".format(chars)): 687 for char in chars: 688 self.send_key(char)
··· 682 with self.nested("waiting for {} to appear on tty {}".format(regexp, tty)): 683 retry(tty_matches) 684 685 + def send_chars(self, chars: str) -> None: 686 with self.nested("sending keys ‘{}‘".format(chars)): 687 for char in chars: 688 self.send_key(char)
+5 -5
nixos/tests/ecryptfs.nix
··· 11 12 testScript = '' 13 def login_as_alice(): 14 - machine.wait_until_tty_matches(1, "login: ") 15 machine.send_chars("alice\n") 16 - machine.wait_until_tty_matches(1, "Password: ") 17 machine.send_chars("foobar\n") 18 - machine.wait_until_tty_matches(1, "alice\@machine") 19 20 21 def logout(): 22 machine.send_chars("logout\n") 23 - machine.wait_until_tty_matches(1, "login: ") 24 25 26 machine.wait_for_unit("default.target") ··· 36 with subtest("Log alice in (ecryptfs passwhrase is wrapped during first login)"): 37 login_as_alice() 38 machine.send_chars("logout\n") 39 - machine.wait_until_tty_matches(1, "login: ") 40 41 # Why do I need to do this?? 42 machine.succeed("su alice -c ecryptfs-umount-private || true")
··· 11 12 testScript = '' 13 def login_as_alice(): 14 + machine.wait_until_tty_matches("1", "login: ") 15 machine.send_chars("alice\n") 16 + machine.wait_until_tty_matches("1", "Password: ") 17 machine.send_chars("foobar\n") 18 + machine.wait_until_tty_matches("1", "alice\@machine") 19 20 21 def logout(): 22 machine.send_chars("logout\n") 23 + machine.wait_until_tty_matches("1", "login: ") 24 25 26 machine.wait_for_unit("default.target") ··· 36 with subtest("Log alice in (ecryptfs passwhrase is wrapped during first login)"): 37 login_as_alice() 38 machine.send_chars("logout\n") 39 + machine.wait_until_tty_matches("1", "login: ") 40 41 # Why do I need to do this?? 42 machine.succeed("su alice -c ecryptfs-umount-private || true")
+3 -3
nixos/tests/login.nix
··· 29 machine.wait_until_succeeds("pgrep -f 'agetty.*tty2'") 30 31 with subtest("Log in as alice on a virtual console"): 32 - machine.wait_until_tty_matches(2, "login: ") 33 machine.send_chars("alice\n") 34 - machine.wait_until_tty_matches(2, "login: alice") 35 machine.wait_until_succeeds("pgrep login") 36 - machine.wait_until_tty_matches(2, "Password: ") 37 machine.send_chars("foobar\n") 38 machine.wait_until_succeeds("pgrep -u alice bash") 39 machine.send_chars("touch done\n")
··· 29 machine.wait_until_succeeds("pgrep -f 'agetty.*tty2'") 30 31 with subtest("Log in as alice on a virtual console"): 32 + machine.wait_until_tty_matches("2", "login: ") 33 machine.send_chars("alice\n") 34 + machine.wait_until_tty_matches("2", "login: alice") 35 machine.wait_until_succeeds("pgrep login") 36 + machine.wait_until_tty_matches("2", "Password: ") 37 machine.send_chars("foobar\n") 38 machine.wait_until_succeeds("pgrep -u alice bash") 39 machine.send_chars("touch done\n")
+11 -11
nixos/tests/pam/pam-oath-login.nix
··· 77 machine.screenshot("postboot") 78 79 with subtest("Invalid password"): 80 - switch_to_tty(2) 81 - enter_user_alice(2) 82 83 machine.send_chars("${oathSnakeOilPassword1}\n") 84 - machine.wait_until_tty_matches(2, "Password: ") 85 machine.send_chars("blorg\n") 86 - machine.wait_until_tty_matches(2, "Login incorrect") 87 88 with subtest("Invalid oath token"): 89 - switch_to_tty(3) 90 - enter_user_alice(3) 91 92 machine.send_chars("000000\n") 93 - machine.wait_until_tty_matches(3, "Login incorrect") 94 - machine.wait_until_tty_matches(3, "login:") 95 96 with subtest("Happy path: Both passwords are mandatory to get us in"): 97 - switch_to_tty(4) 98 - enter_user_alice(4) 99 100 machine.send_chars("${oathSnakeOilPassword2}\n") 101 - machine.wait_until_tty_matches(4, "Password: ") 102 machine.send_chars("${alicePassword}\n") 103 104 machine.wait_until_succeeds("pgrep -u alice bash")
··· 77 machine.screenshot("postboot") 78 79 with subtest("Invalid password"): 80 + switch_to_tty("2") 81 + enter_user_alice("2") 82 83 machine.send_chars("${oathSnakeOilPassword1}\n") 84 + machine.wait_until_tty_matches("2", "Password: ") 85 machine.send_chars("blorg\n") 86 + machine.wait_until_tty_matches("2", "Login incorrect") 87 88 with subtest("Invalid oath token"): 89 + switch_to_tty("3") 90 + enter_user_alice("3") 91 92 machine.send_chars("000000\n") 93 + machine.wait_until_tty_matches("3", "Login incorrect") 94 + machine.wait_until_tty_matches("3", "login:") 95 96 with subtest("Happy path: Both passwords are mandatory to get us in"): 97 + switch_to_tty("4") 98 + enter_user_alice("4") 99 100 machine.send_chars("${oathSnakeOilPassword2}\n") 101 + machine.wait_until_tty_matches("4", "Password: ") 102 machine.send_chars("${alicePassword}\n") 103 104 machine.wait_until_succeeds("pgrep -u alice bash")
+12 -12
nixos/tests/shadow.nix
··· 39 shadow.wait_until_succeeds("[ $(fgconsole) = 2 ]") 40 shadow.wait_for_unit("getty@tty2.service") 41 shadow.wait_until_succeeds("pgrep -f 'agetty.*tty2'") 42 - shadow.wait_until_tty_matches(2, "login: ") 43 shadow.send_chars("emma\n") 44 - shadow.wait_until_tty_matches(2, "login: emma") 45 shadow.wait_until_succeeds("pgrep login") 46 shadow.sleep(2) 47 shadow.send_chars("${password1}\n") ··· 63 shadow.wait_until_succeeds("[ $(fgconsole) = 3 ]") 64 shadow.wait_for_unit("getty@tty3.service") 65 shadow.wait_until_succeeds("pgrep -f 'agetty.*tty3'") 66 - shadow.wait_until_tty_matches(3, "login: ") 67 shadow.send_chars("emma\n") 68 - shadow.wait_until_tty_matches(3, "login: emma") 69 shadow.wait_until_succeeds("pgrep login") 70 shadow.sleep(2) 71 shadow.send_chars("${password1}\n") ··· 81 shadow.wait_until_succeeds("[ $(fgconsole) = 4 ]") 82 shadow.wait_for_unit("getty@tty4.service") 83 shadow.wait_until_succeeds("pgrep -f 'agetty.*tty4'") 84 - shadow.wait_until_tty_matches(4, "login: ") 85 shadow.send_chars("emma\n") 86 - shadow.wait_until_tty_matches(4, "login: emma") 87 shadow.wait_until_succeeds("pgrep login") 88 shadow.sleep(2) 89 shadow.send_chars("${password1}\n") 90 - shadow.wait_until_tty_matches(4, "Login incorrect") 91 - shadow.wait_until_tty_matches(4, "login:") 92 shadow.send_chars("emma\n") 93 - shadow.wait_until_tty_matches(4, "login: emma") 94 shadow.wait_until_succeeds("pgrep login") 95 shadow.sleep(2) 96 shadow.send_chars("${password3}\n") ··· 109 shadow.wait_until_succeeds("[ $(fgconsole) = 5 ]") 110 shadow.wait_for_unit("getty@tty5.service") 111 shadow.wait_until_succeeds("pgrep -f 'agetty.*tty5'") 112 - shadow.wait_until_tty_matches(5, "login: ") 113 shadow.send_chars("layla\n") 114 - shadow.wait_until_tty_matches(5, "login: layla") 115 shadow.wait_until_succeeds("pgrep login") 116 shadow.send_chars("${password2}\n") 117 - shadow.wait_until_tty_matches(5, "login:") 118 ''; 119 })
··· 39 shadow.wait_until_succeeds("[ $(fgconsole) = 2 ]") 40 shadow.wait_for_unit("getty@tty2.service") 41 shadow.wait_until_succeeds("pgrep -f 'agetty.*tty2'") 42 + shadow.wait_until_tty_matches("2", "login: ") 43 shadow.send_chars("emma\n") 44 + shadow.wait_until_tty_matches("2", "login: emma") 45 shadow.wait_until_succeeds("pgrep login") 46 shadow.sleep(2) 47 shadow.send_chars("${password1}\n") ··· 63 shadow.wait_until_succeeds("[ $(fgconsole) = 3 ]") 64 shadow.wait_for_unit("getty@tty3.service") 65 shadow.wait_until_succeeds("pgrep -f 'agetty.*tty3'") 66 + shadow.wait_until_tty_matches("3", "login: ") 67 shadow.send_chars("emma\n") 68 + shadow.wait_until_tty_matches("3", "login: emma") 69 shadow.wait_until_succeeds("pgrep login") 70 shadow.sleep(2) 71 shadow.send_chars("${password1}\n") ··· 81 shadow.wait_until_succeeds("[ $(fgconsole) = 4 ]") 82 shadow.wait_for_unit("getty@tty4.service") 83 shadow.wait_until_succeeds("pgrep -f 'agetty.*tty4'") 84 + shadow.wait_until_tty_matches("4", "login: ") 85 shadow.send_chars("emma\n") 86 + shadow.wait_until_tty_matches("4", "login: emma") 87 shadow.wait_until_succeeds("pgrep login") 88 shadow.sleep(2) 89 shadow.send_chars("${password1}\n") 90 + shadow.wait_until_tty_matches("4", "Login incorrect") 91 + shadow.wait_until_tty_matches("4", "login:") 92 shadow.send_chars("emma\n") 93 + shadow.wait_until_tty_matches("4", "login: emma") 94 shadow.wait_until_succeeds("pgrep login") 95 shadow.sleep(2) 96 shadow.send_chars("${password3}\n") ··· 109 shadow.wait_until_succeeds("[ $(fgconsole) = 5 ]") 110 shadow.wait_for_unit("getty@tty5.service") 111 shadow.wait_until_succeeds("pgrep -f 'agetty.*tty5'") 112 + shadow.wait_until_tty_matches("5", "login: ") 113 shadow.send_chars("layla\n") 114 + shadow.wait_until_tty_matches("5", "login: layla") 115 shadow.wait_until_succeeds("pgrep login") 116 shadow.send_chars("${password2}\n") 117 + shadow.wait_until_tty_matches("5", "login:") 118 ''; 119 })
+6
nixos/tests/sway.nix
··· 4 maintainers = with lib.maintainers; [ primeos synthetica ]; 5 }; 6 7 nodes.machine = { config, ... }: { 8 # Automatically login on tty1 as a normal user: 9 imports = [ ./common/user-account.nix ];
··· 4 maintainers = with lib.maintainers; [ primeos synthetica ]; 5 }; 6 7 + # testScriptWithTypes:49: error: Cannot call function of unknown type 8 + # (machine.succeed if succeed else machine.execute)( 9 + # ^ 10 + # Found 1 error in 1 file (checked 1 source file) 11 + skipTypeCheck = true; 12 + 13 nodes.machine = { config, ... }: { 14 # Automatically login on tty1 as a normal user: 15 imports = [ ./common/user-account.nix ];
+1 -1
nixos/tests/uptermd.nix
··· 42 43 client1.wait_for_unit("multi-user.target") 44 client1.wait_until_succeeds("pgrep -f 'agetty.*tty1'") 45 - client1.wait_until_tty_matches(1, "login: ") 46 client1.send_chars("root\n") 47 client1.wait_until_succeeds("pgrep -u root bash") 48
··· 42 43 client1.wait_for_unit("multi-user.target") 44 client1.wait_until_succeeds("pgrep -f 'agetty.*tty1'") 45 + client1.wait_until_tty_matches("1", "login: ") 46 client1.send_chars("root\n") 47 client1.wait_until_succeeds("pgrep -u root bash") 48
+2 -2
nixos/tests/user-activation-scripts.nix
··· 19 20 machine.wait_for_unit("multi-user.target") 21 machine.wait_for_unit("getty@tty1.service") 22 - machine.wait_until_tty_matches(1, "login: ") 23 machine.send_chars("alice\n") 24 - machine.wait_until_tty_matches(1, "Password: ") 25 machine.send_chars("pass1\n") 26 machine.send_chars("touch login-ok\n") 27 machine.wait_for_file("/home/alice/login-ok")
··· 19 20 machine.wait_for_unit("multi-user.target") 21 machine.wait_for_unit("getty@tty1.service") 22 + machine.wait_until_tty_matches("1", "login: ") 23 machine.send_chars("alice\n") 24 + machine.wait_until_tty_matches("1", "Password: ") 25 machine.send_chars("pass1\n") 26 machine.send_chars("touch login-ok\n") 27 machine.wait_for_file("/home/alice/login-ok")
+2 -2
nixos/tests/user-home-mode.nix
··· 17 testScript = '' 18 machine.wait_for_unit("multi-user.target") 19 machine.wait_for_unit("getty@tty1.service") 20 - machine.wait_until_tty_matches(1, "login: ") 21 machine.send_chars("alice\n") 22 - machine.wait_until_tty_matches(1, "Password: ") 23 machine.send_chars("pass1\n") 24 machine.succeed('[ "$(stat -c %a /home/alice)" == "700" ]') 25 machine.succeed('[ "$(stat -c %a /home/bob)" == "750" ]')
··· 17 testScript = '' 18 machine.wait_for_unit("multi-user.target") 19 machine.wait_for_unit("getty@tty1.service") 20 + machine.wait_until_tty_matches("1", "login: ") 21 machine.send_chars("alice\n") 22 + machine.wait_until_tty_matches("1", "Password: ") 23 machine.send_chars("pass1\n") 24 machine.succeed('[ "$(stat -c %a /home/alice)" == "700" ]') 25 machine.succeed('[ "$(stat -c %a /home/bob)" == "750" ]')
+3 -3
nixos/tests/zsh-history.nix
··· 21 default.wait_until_succeeds("pgrep -f 'agetty.*tty1'") 22 23 # Login 24 - default.wait_until_tty_matches(1, "login: ") 25 default.send_chars("root\n") 26 - default.wait_until_tty_matches(1, r"\nroot@default\b") 27 28 # Generate some history 29 default.send_chars("echo foobar\n") 30 - default.wait_until_tty_matches(1, "foobar") 31 32 # Ensure that command was recorded in history 33 default.succeed("/run/current-system/sw/bin/history list | grep -q foobar")
··· 21 default.wait_until_succeeds("pgrep -f 'agetty.*tty1'") 22 23 # Login 24 + default.wait_until_tty_matches("1", "login: ") 25 default.send_chars("root\n") 26 + default.wait_until_tty_matches("1", r"\nroot@default\b") 27 28 # Generate some history 29 default.send_chars("echo foobar\n") 30 + default.wait_until_tty_matches("1", "foobar") 31 32 # Ensure that command was recorded in history 33 default.succeed("/run/current-system/sw/bin/history list | grep -q foobar")
+2 -2
pkgs/applications/networking/flexget/default.nix
··· 5 6 python3Packages.buildPythonApplication rec { 7 pname = "flexget"; 8 - version = "3.3.14"; 9 10 # Fetch from GitHub in order to use `requirements.in` 11 src = fetchFromGitHub { 12 owner = "flexget"; 13 repo = "flexget"; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-v52QVyd2Rl1nixKD1TY1YQaSPKRsbw4BCtfRly9aMrM="; 16 }; 17 18 postPatch = ''
··· 5 6 python3Packages.buildPythonApplication rec { 7 pname = "flexget"; 8 + version = "3.3.15"; 9 10 # Fetch from GitHub in order to use `requirements.in` 11 src = fetchFromGitHub { 12 owner = "flexget"; 13 repo = "flexget"; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-SNAhuiUO8f92LAdnV9q04xK4yT+AVAS+YAHPPtHdMYI="; 16 }; 17 18 postPatch = ''
+2 -2
pkgs/applications/networking/mailreaders/evolution/evolution/default.nix
··· 46 47 stdenv.mkDerivation rec { 48 pname = "evolution"; 49 - version = "3.44.1"; 50 51 src = fetchurl { 52 url = "mirror://gnome/sources/evolution/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 53 - sha256 = "dEx+CK0R4bYQPO60u/2Jo7Yo4SbOOGe7AI80F8wEnqk="; 54 }; 55 56 nativeBuildInputs = [
··· 46 47 stdenv.mkDerivation rec { 48 pname = "evolution"; 49 + version = "3.44.2"; 50 51 src = fetchurl { 52 url = "mirror://gnome/sources/evolution/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 53 + sha256 = "+scGznpXP42WdzfxWtDr66Q6h/48p1f4VBID2ZG+BjM="; 54 }; 55 56 nativeBuildInputs = [
+11 -1
pkgs/applications/science/astronomy/gravit/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, SDL, SDL_ttf, SDL_image, libSM, libICE, libGLU, libGL, libpng, lua5, autoconf, automake }: 2 3 stdenv.mkDerivation rec { 4 pname = "gravit"; ··· 10 rev = version; 11 hash = "sha256-JuqnLLD5+Ec8kQI0SK98V1O6TTbGM6+yKn5KCHe85eM="; 12 }; 13 14 buildInputs = [ libGLU libGL SDL SDL_ttf SDL_image lua5 libpng libSM libICE ]; 15
··· 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, SDL, SDL_ttf, SDL_image, libSM, libICE, libGLU, libGL, libpng, lua5, autoconf, automake }: 2 3 stdenv.mkDerivation rec { 4 pname = "gravit"; ··· 10 rev = version; 11 hash = "sha256-JuqnLLD5+Ec8kQI0SK98V1O6TTbGM6+yKn5KCHe85eM="; 12 }; 13 + 14 + patches = [ 15 + # Pull fix pending upstream inclusion for -fno-common toolchains: 16 + # https://github.com/gak/gravit/pull/100 17 + (fetchpatch { 18 + name = "fno-common.patch"; 19 + url = "https://github.com/gak/gravit/commit/0f848834889212f16201fd404d2d5b9bb5b47d23.patch"; 20 + hash = "sha256-k1aMIg7idMt53o6dFgIKJflOMp0Jp5NwgWEijcIwXrQ="; 21 + }) 22 + ]; 23 24 buildInputs = [ libGLU libGL SDL SDL_ttf SDL_image lua5 libpng libSM libICE ]; 25
+12 -12
pkgs/applications/version-management/git-and-tools/git-absorb/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, libiconv, Security }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "git-absorb"; 5 - version = "0.6.6"; 6 7 src = fetchFromGitHub { 8 - owner = "tummychow"; 9 - repo = pname; 10 - rev = "refs/tags/${version}"; 11 - sha256 = "04v10bn24acify34vh5ayymsr1flcyb05f3az9k1s2m6nlxy5gb9"; 12 }; 13 14 nativeBuildInputs = [ installShellFiles ]; 15 16 - buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; 17 18 - cargoSha256 = "0dax6wkbyk5p8p0mm406vfgmqfmfxzyzqps6yk8fachi61x12ja6"; 19 20 postInstall = '' 21 installManPage Documentation/git-absorb.1 22 - for shell in bash zsh fish; do 23 - $out/bin/git-absorb --gen-completions $shell > git-absorb.$shell 24 - installShellCompletion git-absorb.$shell 25 - done 26 ''; 27 28 meta = with lib; {
··· 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, Security }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "git-absorb"; 5 + version = "0.6.7"; 6 7 src = fetchFromGitHub { 8 + owner = "tummychow"; 9 + repo = pname; 10 + rev = "refs/tags/${version}"; 11 + sha256 = "sha256-qhUw1wjXn1tyiH175+BadcoKoZ0wHxpMTKDIKOcJjQ0="; 12 }; 13 14 nativeBuildInputs = [ installShellFiles ]; 15 16 + buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 17 18 + cargoSha256 = "sha256-Wh2kA12CggbgdofWJwPAy+587qfMUPSy9nQmO11+keY="; 19 20 postInstall = '' 21 installManPage Documentation/git-absorb.1 22 + installShellCompletion --cmd git-absorb \ 23 + --bash <($out/bin/git-absorb --gen-completions bash) \ 24 + --fish <($out/bin/git-absorb --gen-completions fish) \ 25 + --zsh <($out/bin/git-absorb --gen-completions zsh) 26 ''; 27 28 meta = with lib; {
+5 -5
pkgs/applications/version-management/gitlab/data.json
··· 1 { 2 - "version": "15.0.0", 3 - "repo_hash": "sha256-+ZLHo35BhgWlopuwrVGiMvcWl8qUvHUV2kAEIXWazyY=", 4 "yarn_hash": "1a8k3x3b9sirzicqkwmr10m27n593iljfh8awdc9700akbj155lr", 5 "owner": "gitlab-org", 6 "repo": "gitlab", 7 - "rev": "v15.0.0-ee", 8 "passthru": { 9 - "GITALY_SERVER_VERSION": "15.0.0", 10 "GITLAB_PAGES_VERSION": "1.58.0", 11 "GITLAB_SHELL_VERSION": "14.3.0", 12 - "GITLAB_WORKHORSE_VERSION": "15.0.0" 13 } 14 }
··· 1 { 2 + "version": "15.0.1", 3 + "repo_hash": "sha256-GMdR8drmnLR5KH/N0iyLmPi2sggeQX7PT2KP3QO5+/Y=", 4 "yarn_hash": "1a8k3x3b9sirzicqkwmr10m27n593iljfh8awdc9700akbj155lr", 5 "owner": "gitlab-org", 6 "repo": "gitlab", 7 + "rev": "v15.0.1-ee", 8 "passthru": { 9 + "GITALY_SERVER_VERSION": "15.0.1", 10 "GITLAB_PAGES_VERSION": "1.58.0", 11 "GITLAB_SHELL_VERSION": "14.3.0", 12 + "GITLAB_WORKHORSE_VERSION": "15.0.1" 13 } 14 }
+2 -2
pkgs/applications/version-management/gitlab/gitaly/default.nix
··· 11 gemdir = ./.; 12 }; 13 14 - version = "15.0.0"; 15 package_version = "v14"; 16 gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}"; 17 in ··· 24 owner = "gitlab-org"; 25 repo = "gitaly"; 26 rev = "v${version}"; 27 - sha256 = "sha256-ib/gGkXo6W6LZ6j92oUMhJWdDYZRnA1p+tsOK6ewemk="; 28 }; 29 30 vendorSha256 = "sha256-/tHKWo09ZV31TSIqlOk36V3y7gNikziUJHf+nS1gHEw=";
··· 11 gemdir = ./.; 12 }; 13 14 + version = "15.0.1"; 15 package_version = "v14"; 16 gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}"; 17 in ··· 24 owner = "gitlab-org"; 25 repo = "gitaly"; 26 rev = "v${version}"; 27 + sha256 = "sha256-pNVeXB2A8jYUVir6t8jz6ifBksWucZjUn6RIszXdwJY="; 28 }; 29 30 vendorSha256 = "sha256-/tHKWo09ZV31TSIqlOk36V3y7gNikziUJHf+nS1gHEw=";
+1 -1
pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
··· 5 buildGoModule rec { 6 pname = "gitlab-workhorse"; 7 8 - version = "15.0.0"; 9 10 src = fetchFromGitLab { 11 owner = data.owner;
··· 5 buildGoModule rec { 6 pname = "gitlab-workhorse"; 7 8 + version = "15.0.1"; 9 10 src = fetchFromGitLab { 11 owner = data.owner;
+6 -4
pkgs/data/fonts/font-awesome/default.nix
··· 9 inherit rev; 10 11 postFetch = '' 12 - tar xf $downloadedFile --strip=1 13 - install -m444 -Dt $out/share/fonts/opentype {fonts,otfs}/*.otf 14 ''; 15 16 inherit sha256; ··· 38 v4 = font-awesome { 39 version = "4.7.0"; 40 rev = "v4.7.0"; 41 - sha256 = "1j8i32dq6rrlv3kf2hnq81iqks06kczaxjks7nw3zyq1231winm9"; 42 }; 43 v5 = font-awesome { 44 version = "5.15.3"; ··· 46 }; 47 v6 = font-awesome { 48 version = "6.1.1"; 49 - sha256 = "sha256-BjK1PJQFWtKDvfQ2Vh7BoOPqYucyvOG+2Pu/Kh+JpAA"; 50 }; 51 }
··· 9 inherit rev; 10 11 postFetch = '' 12 + install -m444 -Dt $out/share/fonts/opentype $out/{fonts,otfs}/*.otf 13 + shopt -s extglob dotglob 14 + rm -rf $out/!(share) 15 + shopt -u extglob dotglob 16 ''; 17 18 inherit sha256; ··· 40 v4 = font-awesome { 41 version = "4.7.0"; 42 rev = "v4.7.0"; 43 + sha256 = "sha256-qdrIwxAB+z+4PXrKrj6bBuiJY0DYQuHm2DRng5sYEck="; 44 }; 45 v5 = font-awesome { 46 version = "5.15.3"; ··· 48 }; 49 v6 = font-awesome { 50 version = "6.1.1"; 51 + sha256 = "sha256-BjK1PJQFWtKDvfQ2Vh7BoOPqYucyvOG+2Pu/Kh+JpAA="; 52 }; 53 }
+11 -8
pkgs/data/fonts/mplus-outline-fonts/default.nix
··· 5 osdnRelease = fetchzip { 6 name = "${pname}-osdn"; 7 url = "mirror://osdn/mplus-fonts/62344/mplus-TESTFLIGHT-063a.tar.xz"; 8 - sha256 = "16jirhkjs46ac8cdk2w4xkpv989gmz7i8gnrq9bck13rbil7wlzr"; 9 postFetch = '' 10 - mkdir -p $out/share/fonts/truetype/${pname} 11 - tar xvJf $downloadedFile 12 - mv */*.ttf $out/share/fonts/truetype/${pname} 13 ''; 14 15 meta = with lib; { ··· 26 owner = "coz-m"; 27 repo = "MPLUS_FONTS"; 28 rev = "336fec4e9e7c1e61bd22b82e6364686121cf3932"; 29 - sha256 = "1ha92hyzcfbbq682c50k8clbhigc09rcb9mxjzjwqfj9rfp348id"; 30 postFetch = '' 31 mkdir -p $out/share/fonts/{truetype,opentype}/${pname} 32 - tar xvzf $downloadedFile 33 - mv */fonts/ttf/* $out/share/fonts/truetype/${pname} 34 - mv */fonts/otf/* $out/share/fonts/opentype/${pname} 35 ''; 36 37 meta = with lib; {
··· 5 osdnRelease = fetchzip { 6 name = "${pname}-osdn"; 7 url = "mirror://osdn/mplus-fonts/62344/mplus-TESTFLIGHT-063a.tar.xz"; 8 + sha256 = "sha256-+VN+aFx5hMlWwtk+FM+vL6G07+yEi9kYYsoQLSfMUZo="; 9 postFetch = '' 10 + install -m444 -Dt $out/share/fonts/truetype/${pname} $out/*.ttf 11 + shopt -s extglob dotglob 12 + rm -rf $out/!(share) 13 + shopt -u extglob dotglob 14 ''; 15 16 meta = with lib; { ··· 27 owner = "coz-m"; 28 repo = "MPLUS_FONTS"; 29 rev = "336fec4e9e7c1e61bd22b82e6364686121cf3932"; 30 + sha256 = "sha256-LSIyrstJOszll72mxXIC7EW4KEMTFCaQwWs59j0UScE="; 31 postFetch = '' 32 mkdir -p $out/share/fonts/{truetype,opentype}/${pname} 33 + mv $out/fonts/ttf/* $out/share/fonts/truetype/${pname} 34 + mv $out/fonts/otf/* $out/share/fonts/opentype/${pname} 35 + shopt -s extglob dotglob 36 + rm -rf $out/!(share) 37 + shopt -u extglob dotglob 38 ''; 39 40 meta = with lib; {
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 { 2 - "commit": "d69efcbdc39d5a7ae25039f9737ad04e34f38f68", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/d69efcbdc39d5a7ae25039f9737ad04e34f38f68.tar.gz", 4 - "sha256": "1xlnp36h5r8q3nf1fbq472rkqp0wmgz51rylnd23kl0pba2fypkp", 5 - "msg": "Update from Hackage at 2022-05-20T19:45:02Z" 6 }
··· 1 { 2 + "commit": "1da63d5bfb88cd1e920fefd1b55650c78edc5539", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/1da63d5bfb88cd1e920fefd1b55650c78edc5539.tar.gz", 4 + "sha256": "1n8qv8ajfwrj73f81m2zj81jyjx1jxxhjljwp8gch2aq8piz74g6", 5 + "msg": "Update from Hackage at 2022-05-29T17:05:02Z" 6 }
+2 -2
pkgs/desktops/gnome/core/rygel/default.nix
··· 28 29 stdenv.mkDerivation rec { 30 pname = "rygel"; 31 - version = "0.40.3"; 32 33 # TODO: split out lib 34 outputs = [ "out" "dev" ]; 35 36 src = fetchurl { 37 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 38 - sha256 = "zwvjUQnLVw5c8K/lltha7Lmw6TWYYVNTArt7YE2vUdc="; 39 }; 40 41 patches = [
··· 28 29 stdenv.mkDerivation rec { 30 pname = "rygel"; 31 + version = "0.40.4"; 32 33 # TODO: split out lib 34 outputs = [ "out" "dev" ]; 35 36 src = fetchurl { 37 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 38 + sha256 = "c22K2+hhX2y8j8//mEXcmF/RDhZinaI2tLUtvt8KNIs="; 39 }; 40 41 patches = [
+3
pkgs/development/compilers/eli/default.nix
··· 54 # skip interactive browser check 55 buildFlags = [ "nobrowsers" ]; 56 57 58 preConfigure='' 59 configureFlagsArray=(
··· 54 # skip interactive browser check 55 buildFlags = [ "nobrowsers" ]; 56 57 + # Workaround build failure on -fno-common toolchains: 58 + # ld: cexp.o:(.bss+0x40): multiple definition of `obstck'; cccp.o:(.bss+0x0): first defined here 59 + NIX_CFLAGS_COMPILE = "-fcommon"; 60 61 preConfigure='' 62 configureFlagsArray=(
+1 -1
pkgs/development/compilers/ghc/8.10.7.nix
··· 234 # GHC is a bit confused on its cross terminology, as these would normally be 235 # the *host* tools. 236 export CC="${targetCC}/bin/${targetCC.targetPrefix}cc" 237 - export CXX="${targetCC}/bin/${targetCC.targetPrefix}cxx" 238 # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177 239 export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${lib.optionalString useLdGold ".gold"}" 240 export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as"
··· 234 # GHC is a bit confused on its cross terminology, as these would normally be 235 # the *host* tools. 236 export CC="${targetCC}/bin/${targetCC.targetPrefix}cc" 237 + export CXX="${targetCC}/bin/${targetCC.targetPrefix}c++" 238 # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177 239 export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${lib.optionalString useLdGold ".gold"}" 240 export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as"
+1 -1
pkgs/development/compilers/ghc/8.8.4.nix
··· 215 # GHC is a bit confused on its cross terminology, as these would normally be 216 # the *host* tools. 217 export CC="${targetCC}/bin/${targetCC.targetPrefix}cc" 218 - export CXX="${targetCC}/bin/${targetCC.targetPrefix}cxx" 219 # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177 220 export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${lib.optionalString useLdGold ".gold"}" 221 export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as"
··· 215 # GHC is a bit confused on its cross terminology, as these would normally be 216 # the *host* tools. 217 export CC="${targetCC}/bin/${targetCC.targetPrefix}cc" 218 + export CXX="${targetCC}/bin/${targetCC.targetPrefix}c++" 219 # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177 220 export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${lib.optionalString useLdGold ".gold"}" 221 export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as"
+1 -1
pkgs/development/compilers/ghc/9.0.2.nix
··· 217 # GHC is a bit confused on its cross terminology, as these would normally be 218 # the *host* tools. 219 export CC="${targetCC}/bin/${targetCC.targetPrefix}cc" 220 - export CXX="${targetCC}/bin/${targetCC.targetPrefix}cxx" 221 # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177 222 export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${lib.optionalString useLdGold ".gold"}" 223 export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as"
··· 217 # GHC is a bit confused on its cross terminology, as these would normally be 218 # the *host* tools. 219 export CC="${targetCC}/bin/${targetCC.targetPrefix}cc" 220 + export CXX="${targetCC}/bin/${targetCC.targetPrefix}c++" 221 # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177 222 export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${lib.optionalString useLdGold ".gold"}" 223 export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as"
+9 -3
pkgs/development/compilers/ghc/9.2.2.nix pkgs/development/compilers/ghc/9.2.3.nix
··· 6 , xattr, autoSignDarwinBinariesHook 7 , bash 8 9 , libiconv ? null, ncurses 10 , glibcLocales ? null 11 ··· 171 assert stdenv.targetPlatform.isDarwin -> buildTargetLlvmPackages.clang == llvmPackages.clang; 172 173 stdenv.mkDerivation (rec { 174 - version = "9.2.2"; 175 pname = "${targetPrefix}ghc${variantSuffix}"; 176 177 src = fetchurl { 178 url = "https://downloads.haskell.org/ghc/${version}/ghc-${version}-src.tar.xz"; 179 - sha256 = "902463a4cc6ee479af9358b9f8b2ee3237b03e934a1ea65b6d1fcf3e0d749ea6"; 180 }; 181 182 enableParallelBuilding = true; ··· 197 # GHC is a bit confused on its cross terminology, as these would normally be 198 # the *host* tools. 199 export CC="${targetCC}/bin/${targetCC.targetPrefix}cc" 200 - export CXX="${targetCC}/bin/${targetCC.targetPrefix}cxx" 201 # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177 202 export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${lib.optionalString useLdGold ".gold"}" 203 export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as" ··· 218 '' + '' 219 220 echo -n "${buildMK}" > mk/build.mk 221 sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure 222 '' + lib.optionalString (stdenv.isLinux && hostPlatform.libc == "glibc") '' 223 export LOCALE_ARCHIVE="${glibcLocales}/lib/locale/locale-archive" ··· 283 dontAddExtraLibs = true; 284 285 nativeBuildInputs = [ 286 perl autoconf automake m4 python3 287 ghc bootPkgs.alex bootPkgs.happy bootPkgs.hscolour 288 ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
··· 6 , xattr, autoSignDarwinBinariesHook 7 , bash 8 9 + , autoreconfHook # GHC 9.2.3 tarballs don't have autoconf run on them 10 + 11 , libiconv ? null, ncurses 12 , glibcLocales ? null 13 ··· 173 assert stdenv.targetPlatform.isDarwin -> buildTargetLlvmPackages.clang == llvmPackages.clang; 174 175 stdenv.mkDerivation (rec { 176 + version = "9.2.3"; 177 pname = "${targetPrefix}ghc${variantSuffix}"; 178 179 src = fetchurl { 180 url = "https://downloads.haskell.org/ghc/${version}/ghc-${version}-src.tar.xz"; 181 + sha256 = "50ecdc2bef013e518f9a62a15245d7db0e4409d737c43b1cea7306fd82e1669e"; 182 }; 183 184 enableParallelBuilding = true; ··· 199 # GHC is a bit confused on its cross terminology, as these would normally be 200 # the *host* tools. 201 export CC="${targetCC}/bin/${targetCC.targetPrefix}cc" 202 + export CXX="${targetCC}/bin/${targetCC.targetPrefix}c++" 203 # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177 204 export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${lib.optionalString useLdGold ".gold"}" 205 export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as" ··· 220 '' + '' 221 222 echo -n "${buildMK}" > mk/build.mk 223 + # GHC 9.2.3 tarball is not properly prepared 224 + ./boot 225 + 226 sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure 227 '' + lib.optionalString (stdenv.isLinux && hostPlatform.libc == "glibc") '' 228 export LOCALE_ARCHIVE="${glibcLocales}/lib/locale/locale-archive" ··· 288 dontAddExtraLibs = true; 289 290 nativeBuildInputs = [ 291 + autoreconfHook # GHC 9.2.3 tarball hasn't autoconf run on it 292 perl autoconf automake m4 python3 293 ghc bootPkgs.alex bootPkgs.happy bootPkgs.hscolour 294 ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
+1 -1
pkgs/development/compilers/ghc/head.nix
··· 205 # GHC is a bit confused on its cross terminology, as these would normally be 206 # the *host* tools. 207 export CC="${targetCC}/bin/${targetCC.targetPrefix}cc" 208 - export CXX="${targetCC}/bin/${targetCC.targetPrefix}cxx" 209 # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177 210 # and more generally have a faster linker. 211 export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${lib.optionalString useLdGold ".gold"}"
··· 205 # GHC is a bit confused on its cross terminology, as these would normally be 206 # the *host* tools. 207 export CC="${targetCC}/bin/${targetCC.targetPrefix}cc" 208 + export CXX="${targetCC}/bin/${targetCC.targetPrefix}c++" 209 # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177 210 # and more generally have a faster linker. 211 export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${lib.optionalString useLdGold ".gold"}"
+100 -108
pkgs/development/haskell-modules/configuration-common.nix
··· 99 name = "git-annex-${super.git-annex.version}-src"; 100 url = "git://git-annex.branchable.com/"; 101 rev = "refs/tags/" + super.git-annex.version; 102 - sha256 = "sha256-NYe34bsq2v0rlmcSMgYvU9ec94meXFFJoWo0sIjX/bY="; 103 # delete android and Android directories which cause issues on 104 # darwin (case insensitive directory). Since we don't need them 105 # during the build process, we can delete it to prevent a hash ··· 515 # else dontCheck super.doctest-discover); 516 doctest-discover = dontCheck super.doctest-discover; 517 518 - # Depends on itself for testing 519 tasty-discover = overrideCabal (drv: { 520 - # Compatibility with tasty-hspec >= 1.1.7 requires a patch and a dependency on hspec 521 - patches = drv.patches or [] ++ [ 522 - # Intermediate patch so fix applies 523 - (fetchpatch { 524 - url = "https://github.com/haskell-works/tasty-discover/commit/67b022f5945abdfb71ca31fca7910abc7effe043.patch"; 525 - sha256 = "1x539qa2871fiahw9zjxyyqz86v4ib7k7fv9hdvvxcrrfw3zwl66"; 526 - }) 527 - # Actual fix 528 - (fetchpatch { 529 - name = "tasty-hspec-1.1.7-compat.patch"; 530 - url = "https://github.com/haskell-works/tasty-discover/commit/98d3c464f33129e38fa9c0fcdfb1847dfb0490b9.patch"; 531 - sha256 = "01a8ni3lyh1wql7aghl41nd2c9m6gcn1i77bh3pygh6r403x771p"; 532 - }) 533 - ]; 534 - testHaskellDepends = drv.testHaskellDepends or [] ++ [ 535 - self.hspec 536 - ]; 537 - # https://github.com/haskell-works/tasty-discover/issues/17 538 - jailbreak = true; # allow tasty-hspec >= 1.2 539 - 540 preBuild = '' 541 export PATH="$PWD/dist/build/tasty-discover:$PATH" 542 '' + (drv.preBuild or ""); ··· 785 # https://github.com/diagrams/diagrams-braille/issues/1 786 diagrams-braille = doJailbreak super.diagrams-braille; 787 788 - # https://github.com/timbod7/haskell-chart/pull/231#issuecomment-953745932 789 - Chart-diagrams = doJailbreak (super.Chart-diagrams.override { 790 - SVGFonts = super.SVGFonts_1_7_0_1; 791 - }); 792 - 793 # https://github.com/xu-hao/namespace/issues/1 794 namespace = doJailbreak super.namespace; 795 ··· 845 sensei = overrideCabal (drv: { 846 testHaskellDepends = drv.testHaskellDepends or [] ++ [ self.hspec-meta_2_9_3 ]; 847 testToolDepends = drv.testToolDepends or [] ++ [ pkgs.git ]; 848 - }) (super.sensei.overrideScope (self: super: { 849 - hspec-meta = self.hspec-meta_2_9_3; 850 hspec = self.hspec_2_10_0; 851 - hspec-core = dontCheck self.hspec-core_2_10_0; 852 - hspec-discover = self.hspec-discover_2_10_0; 853 - shelly = dontCheck super.shelly; # disable checks, because the newer hspec in this overrideScope doesn‘t work with newest hspec-contrib 854 - })); 855 856 # Depends on broken fluid. 857 fluid-idl-http-client = markBroken super.fluid-idl-http-client; ··· 1094 # https://github.com/haskell/hoopl/issues/50 1095 hoopl = dontCheck super.hoopl; 1096 1097 - # The most recent version of purescript-cst (0.4.0.0) has version 1098 - # bounds for LTS-17, so we need to jailbreak it for LTS-18. 1099 - # doJailbreak can likely be removed when the next version of 1100 - # purescript-cst is released, since the version bounds have 1101 - # been updated for LTS-18. 1102 - purescript-cst = doJailbreak super.purescript-cst; 1103 - 1104 - purescript = 1105 - lib.pipe 1106 - (super.purescript.override { 1107 - # The latest version of language-javascript is 0.7.1.0, 1108 - # but it seems to have a bug with async support: 1109 - # https://github.com/erikd/language-javascript/issues/131 1110 - language-javascript = self.language-javascript_0_7_0_0; 1111 - }) 1112 - [ # This PR upgrades purescript from building with LTS-17 to building 1113 - # with LTS-18. Aside from bumping dependency bounds, there is one 1114 - # minor change that needs to be made in app/Main.hs. 1115 - # 1116 - # This patch can likely be removed when purescript-0.14.6 is released. 1117 - (appendPatch 1118 - (fetchpatch { 1119 - url = "https://patch-diff.githubusercontent.com/raw/purescript/purescript/pull/4199.patch"; 1120 - sha256 = "sha256-OeG30EfCHs7gttLME909WfKxkEZr7Ch3leYiw4lElGg="; 1121 - includes = [ 1122 - "app/Main.hs" 1123 - ]; 1124 - }) 1125 - ) 1126 - # PureScript uses nodejs to run tests, so the tests have been disabled 1127 - # for now. If someone is interested in figuring out how to get this 1128 - # working, it seems like it might be possible. 1129 - dontCheck 1130 - # The current version of purescript (0.14.5) has version bounds for LTS-17, 1131 - # but it compiles cleanly using deps in LTS-18 as well. This jailbreak can 1132 - # likely be removed when purescript-0.14.6 is released. 1133 - doJailbreak 1134 - # Generate shell completions 1135 - (generateOptparseApplicativeCompletion "purs") 1136 - ]; 1137 - 1138 - # purenix-1.0 has a strict version bound requiring purescript-0.14.4, but it 1139 - # works with later versions of purescript as well. 1140 - purenix = doJailbreak super.purenix; 1141 - 1142 # Generate shell completion for spago 1143 spago = generateOptparseApplicativeCompletion "spago" super.spago; 1144 ··· 1585 liquidhaskell = super.liquidhaskell.override { Diff = self.Diff_0_3_4; }; 1586 Diff_0_3_4 = dontCheck super.Diff_0_3_4; 1587 1588 - # jailbreaking pandoc-citeproc because it has not bumped upper bound on pandoc 1589 - pandoc-citeproc = doJailbreak super.pandoc-citeproc; 1590 1591 # The test suite attempts to read `/etc/resolv.conf`, which doesn't work in the sandbox. 1592 domain-auth = dontCheck super.domain-auth; ··· 1705 reflex-dom-pandoc = super.reflex-dom-pandoc.override { clay = dontCheck self.clay_0_13_3; }; 1706 1707 # 2022-03-16: Pull request for ghc 9 compat: https://github.com/reflex-frp/reflex/pull/467 1708 - reflex = appendPatch (fetchpatch { 1709 - url = "https://github.com/reflex-frp/reflex/compare/823afd9424234cbe0134051f09a6710e54509cec...469b4ab4a755cad76b8d4d6c9ad482d02686b4ae.patch"; 1710 - sha256 = "sha256-EwW7QBXHGlcJkKiLDmsXCZPwQz24+mg2Vuiu0Vb/T6w="; 1711 - }) (dontCheck super.reflex); 1712 1713 # 2020-11-19: jailbreaking because of pretty-simple bound out of date 1714 # https://github.com/kowainik/stan/issues/408 ··· 1736 # 2020-11-27: Tests broken 1737 # Upstream issue: https://github.com/haskell-servant/servant-swagger/issues/129 1738 servant-swagger = dontCheck super.servant-swagger; 1739 1740 # waiting for aeson bump 1741 servant-swagger-ui-core = doJailbreak super.servant-swagger-ui-core; ··· 2209 # https://github.com/muesli4/table-layout/issues/16 2210 table-layout = doJailbreak super.table-layout; 2211 2212 - # Bounds on profunctors are too strict 2213 - # https://github.com/ConferOpenSource/composite/issues/50 2214 - # Remove overrides when assert fails. 2215 - composite-base = assert super.composite-base.version == "0.7.5.0"; 2216 - overrideCabal (drv: { 2217 - patches = drv.patches or [] ++ [ 2218 - (fetchpatch { 2219 - name = "composite-base-template-haskell-2.17.patch"; 2220 - url = "https://github.com/ConferOpenSource/composite/commit/4ca7562d46a0cdfae3afacf194134db768450a02.patch"; 2221 - sha256 = "sha256-FG2t1BYfV09VENJDlh1PD88sXAGqaujhpss5DWFcbeE="; 2222 - relative = "composite-base"; 2223 - }) 2224 - ]; 2225 - jailbreak = true; 2226 - }) super.composite-base; 2227 - composite-aeson = assert super.composite-aeson.version == "0.7.5.0"; 2228 - doJailbreak super.composite-aeson; 2229 - 2230 # 2021-06-20: Outdated upper bounds 2231 # https://github.com/Porges/email-validate-hs/issues/58 2232 email-validate = doJailbreak super.email-validate; ··· 2241 2242 # 2022-03-21: Newest stylish-haskell needs ghc-lib-parser-9_2 2243 stylish-haskell = (super.stylish-haskell.override { 2244 - ghc-lib-parser = super.ghc-lib-parser_9_2_2_20220307; 2245 - ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_3; 2246 }); 2247 2248 - ghc-lib-parser-ex_9_2_0_3 = super.ghc-lib-parser-ex_9_2_0_3.override { 2249 - ghc-lib-parser = super.ghc-lib-parser_9_2_2_20220307; 2250 }; 2251 2252 # To strict bound on hspec ··· 2551 # attoparsec bump is on v2 branch, but not released yet 2552 irc-core = assert super.irc-core.version == "2.10"; doJailbreak super.irc-core; 2553 glirc = assert super.irc-core.version == "2.10"; doJailbreak super.glirc; 2554 - hookup = assert super.irc-core.version == "2.10"; doJailbreak super.hookup; 2555 2556 # 2022-02-25: Unmaintained and to strict upper bounds 2557 paths = doJailbreak super.paths; ··· 2660 }) 2661 ] super.fast-tags; 2662 2663 - } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
··· 99 name = "git-annex-${super.git-annex.version}-src"; 100 url = "git://git-annex.branchable.com/"; 101 rev = "refs/tags/" + super.git-annex.version; 102 + sha256 = "0a0jnahljd46vzjgcwlzjhrrjgn40s0zfjklh63aa9w9x0zkvbin"; 103 # delete android and Android directories which cause issues on 104 # darwin (case insensitive directory). Since we don't need them 105 # during the build process, we can delete it to prevent a hash ··· 515 # else dontCheck super.doctest-discover); 516 doctest-discover = dontCheck super.doctest-discover; 517 518 tasty-discover = overrideCabal (drv: { 519 + # Depends on itself for testing 520 preBuild = '' 521 export PATH="$PWD/dist/build/tasty-discover:$PATH" 522 '' + (drv.preBuild or ""); ··· 765 # https://github.com/diagrams/diagrams-braille/issues/1 766 diagrams-braille = doJailbreak super.diagrams-braille; 767 768 # https://github.com/xu-hao/namespace/issues/1 769 namespace = doJailbreak super.namespace; 770 ··· 820 sensei = overrideCabal (drv: { 821 testHaskellDepends = drv.testHaskellDepends or [] ++ [ self.hspec-meta_2_9_3 ]; 822 testToolDepends = drv.testToolDepends or [] ++ [ pkgs.git ]; 823 + }) (super.sensei.override { 824 hspec = self.hspec_2_10_0; 825 + hspec-wai = super.hspec-wai.override { 826 + hspec = self.hspec_2_10_0; 827 + }; 828 + }); 829 830 # Depends on broken fluid. 831 fluid-idl-http-client = markBroken super.fluid-idl-http-client; ··· 1068 # https://github.com/haskell/hoopl/issues/50 1069 hoopl = dontCheck super.hoopl; 1070 1071 # Generate shell completion for spago 1072 spago = generateOptparseApplicativeCompletion "spago" super.spago; 1073 ··· 1514 liquidhaskell = super.liquidhaskell.override { Diff = self.Diff_0_3_4; }; 1515 Diff_0_3_4 = dontCheck super.Diff_0_3_4; 1516 1517 + # jailbreaking pandoc-crossref because it has not bumped its upper bound on pandoc 1518 + # https://github.com/lierdakil/pandoc-crossref/issues/350 1519 + pandoc-crossref = doJailbreak super.pandoc-crossref; 1520 1521 # The test suite attempts to read `/etc/resolv.conf`, which doesn't work in the sandbox. 1522 domain-auth = dontCheck super.domain-auth; ··· 1635 reflex-dom-pandoc = super.reflex-dom-pandoc.override { clay = dontCheck self.clay_0_13_3; }; 1636 1637 # 2022-03-16: Pull request for ghc 9 compat: https://github.com/reflex-frp/reflex/pull/467 1638 + reflex = overrideCabal (drv: { 1639 + patches = drv.patches or [] ++ [ 1640 + (fetchpatch { 1641 + url = "https://github.com/reflex-frp/reflex/compare/469b4ab4a755cad76b8d4d6c9ad482d02686b4ae.patch"; 1642 + sha256 = "04sxzxpx7xhr6p4n76rg1ci8zjfzs19lr21ziwsfig8zmdg22i7q"; 1643 + }) 1644 + ]; 1645 + doCheck = false; 1646 + # hackage revision seems to have DOS newlines 1647 + prePatch = drv.prePatch or "" + '' 1648 + ${pkgs.buildPackages.dos2unix}/bin/dos2unix reflex.cabal 1649 + ''; 1650 + }) super.reflex; 1651 1652 # 2020-11-19: jailbreaking because of pretty-simple bound out of date 1653 # https://github.com/kowainik/stan/issues/408 ··· 1675 # 2020-11-27: Tests broken 1676 # Upstream issue: https://github.com/haskell-servant/servant-swagger/issues/129 1677 servant-swagger = dontCheck super.servant-swagger; 1678 + 1679 + # Strange doctest problems 1680 + # https://github.com/biocad/servant-openapi3/issues/30 1681 + servant-openapi3 = dontCheck super.servant-openapi3; 1682 + 1683 + # Give hspec 2.10.* correct dependency versions without overrideScope 1684 + hspec_2_10_0 = doDistribute (super.hspec_2_10_0.override { 1685 + hspec-discover = self.hspec-discover_2_10_0; 1686 + hspec-core = self.hspec-core_2_10_0; 1687 + }); 1688 + hspec-discover_2_10_0 = super.hspec-discover_2_10_0.override { 1689 + hspec-meta = self.hspec-meta_2_9_3; 1690 + }; 1691 + hspec-core_2_10_0 = super.hspec-core_2_10_0.override { 1692 + hspec-meta = self.hspec-meta_2_9_3; 1693 + }; 1694 1695 # waiting for aeson bump 1696 servant-swagger-ui-core = doJailbreak super.servant-swagger-ui-core; ··· 2164 # https://github.com/muesli4/table-layout/issues/16 2165 table-layout = doJailbreak super.table-layout; 2166 2167 # 2021-06-20: Outdated upper bounds 2168 # https://github.com/Porges/email-validate-hs/issues/58 2169 email-validate = doJailbreak super.email-validate; ··· 2178 2179 # 2022-03-21: Newest stylish-haskell needs ghc-lib-parser-9_2 2180 stylish-haskell = (super.stylish-haskell.override { 2181 + ghc-lib-parser = super.ghc-lib-parser_9_2_3_20220527; 2182 + ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_4; 2183 }); 2184 2185 + ghc-lib-parser-ex_9_2_0_4 = super.ghc-lib-parser-ex_9_2_0_4.override { 2186 + ghc-lib-parser = super.ghc-lib-parser_9_2_3_20220527; 2187 }; 2188 2189 # To strict bound on hspec ··· 2488 # attoparsec bump is on v2 branch, but not released yet 2489 irc-core = assert super.irc-core.version == "2.10"; doJailbreak super.irc-core; 2490 glirc = assert super.irc-core.version == "2.10"; doJailbreak super.glirc; 2491 2492 # 2022-02-25: Unmaintained and to strict upper bounds 2493 paths = doJailbreak super.paths; ··· 2596 }) 2597 ] super.fast-tags; 2598 2599 + # lucid-htmx has restrictive upper bounds on lucid and servant: 2600 + # 2601 + # Setup: Encountered missing or private dependencies: 2602 + # lucid >=2.9.12.1 && <=2.11, servant >=0.18.3 && <0.19 2603 + # 2604 + # Can be removed once 2605 + # 2606 + # > https://github.com/MonadicSystems/lucid-htmx/issues/6 2607 + # 2608 + # has been resolved. 2609 + lucid-htmx = doJailbreak super.lucid-htmx; 2610 + 2611 + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super // (let 2612 + # We need to build purescript with these dependencies and thus also its reverse 2613 + # dependencies to avoid version mismatches in their dependency closure. 2614 + # TODO(@cdepillabout): maybe unify with the spago overlay in configuration-nix.nix? 2615 + purescriptOverlay = self: super: { 2616 + # Purescript targets Stackage LTS 18, so we need to downgrade a few things 2617 + aeson = self.aeson_1_5_6_0; 2618 + bower-json = self.bower-json_1_0_0_1; 2619 + # As of 2021-11-08, the latest release of `language-javascript` is 0.7.1.0, 2620 + # but it has a problem with parsing the `async` keyword. It doesn't allow 2621 + # `async` to be used as an object key: 2622 + # https://github.com/erikd/language-javascript/issues/131 2623 + language-javascript = self.language-javascript_0_7_0_0; 2624 + }; 2625 + 2626 + # Doesn't support GHC >= 9.0 (something related to instance resolution and TH) 2627 + purescriptBrokenFlag = drv: 2628 + if lib.versionAtLeast self.ghc.version "9.0" 2629 + then dontDistribute (markBroken drv) 2630 + else drv; 2631 + in { 2632 + purescript = 2633 + lib.pipe 2634 + (super.purescript.overrideScope purescriptOverlay) 2635 + [ 2636 + # PureScript uses nodejs to run tests, so the tests have been disabled 2637 + # for now. If someone is interested in figuring out how to get this 2638 + # working, it seems like it might be possible. 2639 + dontCheck 2640 + # The current version of purescript (0.14.5) has version bounds for LTS-17, 2641 + # but it compiles cleanly using deps in LTS-18 as well. This jailbreak can 2642 + # likely be removed when purescript-0.14.6 is released. 2643 + doJailbreak 2644 + # Generate shell completions 2645 + (generateOptparseApplicativeCompletion "purs") 2646 + 2647 + purescriptBrokenFlag 2648 + ]; 2649 + 2650 + purescript-cst = purescriptBrokenFlag (super.purescript-cst.overrideScope purescriptOverlay); 2651 + 2652 + purescript-ast = purescriptBrokenFlag (super.purescript-ast.overrideScope purescriptOverlay); 2653 + 2654 + purenix = super.purenix.overrideScope purescriptOverlay; 2655 + })
+3
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 130 inline-c-cpp = 131 (if isDarwin then appendConfigureFlags ["--ghc-option=-fcompact-unwind"] else x: x) 132 super.inline-c-cpp; 133 }
··· 130 inline-c-cpp = 131 (if isDarwin then appendConfigureFlags ["--ghc-option=-fcompact-unwind"] else x: x) 132 super.inline-c-cpp; 133 + 134 + # 2022-05-31: weeder 2.3.0 requires GHC 9.2 135 + weeder = doDistribute self.weeder_2_3_1; 136 }
+4 -4
pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
··· 100 self.data-default 101 ] ++ drv.libraryHaskellDepends or []; 102 }) super.ghc-exactprint; 103 - ghc-lib = self.ghc-lib_9_2_2_20220307; 104 - ghc-lib-parser = self.ghc-lib-parser_9_2_2_20220307; 105 - ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_3; 106 hackage-security = doJailbreak super.hackage-security; 107 hashable = super.hashable_1_4_0_2; 108 hashable-time = doJailbreak super.hashable-time; ··· 146 shelly = doJailbreak super.shelly; 147 splitmix = doJailbreak super.splitmix; 148 tasty-hspec = doJailbreak super.tasty-hspec; 149 - th-desugar = self.th-desugar_1_13; 150 time-compat = doJailbreak super.time-compat; 151 tomland = doJailbreak super.tomland; 152 type-equality = doJailbreak super.type-equality;
··· 100 self.data-default 101 ] ++ drv.libraryHaskellDepends or []; 102 }) super.ghc-exactprint; 103 + ghc-lib = self.ghc-lib_9_2_3_20220527; 104 + ghc-lib-parser = self.ghc-lib-parser_9_2_3_20220527; 105 + ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_4; 106 hackage-security = doJailbreak super.hackage-security; 107 hashable = super.hashable_1_4_0_2; 108 hashable-time = doJailbreak super.hashable-time; ··· 146 shelly = doJailbreak super.shelly; 147 splitmix = doJailbreak super.splitmix; 148 tasty-hspec = doJailbreak super.tasty-hspec; 149 + th-desugar = self.th-desugar_1_13_1; 150 time-compat = doJailbreak super.time-compat; 151 tomland = doJailbreak super.tomland; 152 type-equality = doJailbreak super.type-equality;
+11 -5
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 766 - compaREST 767 - comparse 768 - compdata 769 - compendium-client 770 - competition 771 - compilation 772 - complex-generic 773 - composable-associations-aeson 774 - compose-trans 775 - - composite-aeson 776 - composite-opaleye 777 - composition-tree 778 - comprehensions-ghc ··· 1737 - gitson 1738 - gitter 1739 - git-vogue 1740 - glapp 1741 - glaze 1742 - Gleam ··· 1745 - gli 1746 - glicko 1747 - glider-nlp 1748 - - glirc 1749 - GLMatrix 1750 - global-variables 1751 - glob-posix ··· 3082 - lua-bc 3083 - luautils 3084 - lucid2 3085 - - lucid-htmx 3086 - lucid-hyperscript 3087 - luis-client 3088 - luka ··· 4097 - Pup-Events-Server 4098 - purebred-email 4099 - pure-io 4100 - pure-priority-queue 4101 - - purescript-ast 4102 - - purescript-cst 4103 - pure-zlib 4104 - pushbullet 4105 - pushbullet-types ··· 4599 - signable-haskell-protoc 4600 - signed-multiset 4601 - simd 4602 - simple-actors 4603 - simpleargs 4604 - simple-atom ··· 5079 - text1 5080 - text-and-plots 5081 - text-ascii 5082 - text-containers 5083 - text-format 5084 - text-format-heavy ··· 5559 - webdriver 5560 - webdriver-snoy 5561 - web-encodings 5562 - WeberLogic 5563 - webex-teams-pipes 5564 - webfinger-client
··· 766 - compaREST 767 - comparse 768 - compdata 769 + - compdoc 770 - compendium-client 771 - competition 772 - compilation 773 - complex-generic 774 - composable-associations-aeson 775 - compose-trans 776 + - composite-aeson-path 777 + - composite-cassava 778 + - composite-dhall 779 + - composite-ekg 780 + - composite-lens-extra 781 - composite-opaleye 782 - composition-tree 783 - comprehensions-ghc ··· 1742 - gitson 1743 - gitter 1744 - git-vogue 1745 + - glade 1746 - glapp 1747 - glaze 1748 - Gleam ··· 1751 - gli 1752 - glicko 1753 - glider-nlp 1754 - GLMatrix 1755 - global-variables 1756 - glob-posix ··· 3087 - lua-bc 3088 - luautils 3089 - lucid2 3090 - lucid-hyperscript 3091 - luis-client 3092 - luka ··· 4101 - Pup-Events-Server 4102 - purebred-email 4103 - pure-io 4104 + - purenix 4105 - pure-priority-queue 4106 - pure-zlib 4107 - pushbullet 4108 - pushbullet-types ··· 4602 - signable-haskell-protoc 4603 - signed-multiset 4604 - simd 4605 + - simfin 4606 - simple-actors 4607 - simpleargs 4608 - simple-atom ··· 5083 - text1 5084 - text-and-plots 5085 - text-ascii 5086 + - text-builder-linear 5087 - text-containers 5088 - text-format 5089 - text-format-heavy ··· 5564 - webdriver 5565 - webdriver-snoy 5566 - web-encodings 5567 + - webkitgtk3 5568 - WeberLogic 5569 - webex-teams-pipes 5570 - webfinger-client
+5 -5
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 87 - dhall-nix < 1.1.24 88 # Temporarily forbid distribution-nixpkgs updates until cabal2nix supports the new version 89 - distribution-nixpkgs < 1.7.0 90 91 extra-packages: 92 - aeson < 2 # required by pantry-0.5.2 ··· 124 - ormolu == 0.2.* # 2022-02-21: For ghc 8.8 and 8.10 125 - ShellCheck == 0.7.2 # 2022-02-20: haskell-ci 0.14 needs this 126 - weeder == 2.2.* # 2022-02-21: preserve for GHC 8.10.7 127 - attoparsec == 0.13.* # 2022-02-23: Needed to compile elm for now 128 - relude == 0.7.0.0 # 2022-02-25: Needed for ema 0.6 129 - - SVGFonts < 1.8 # 2022-03-19: Needed for Chart-diagrams 1.9.3 130 - clay < 0.14 # 2022-03-20: Needed for neuron 1.0.0.0 131 - hspec-golden == 0.1.* # 2022-04-07: Needed for elm-format 132 - tasty-hspec == 1.1.6 # 2022-04-07: Needed for elm-format ··· 608 - spike 609 - web-browser-in-haskell 610 - webkit 611 - - webkitgtk3 612 - webkitgtk3-javascriptcore 613 - websnap 614 - 615 - # glade relies on system libglade which is deprecated 616 - - glade 617 618 # mesos was removed from nixpkgs 619 - hs-mesos
··· 87 - dhall-nix < 1.1.24 88 # Temporarily forbid distribution-nixpkgs updates until cabal2nix supports the new version 89 - distribution-nixpkgs < 1.7.0 90 + # glirc 2.39 is broken: https://github.com/glguy/irc-core/issues/99 91 + - glirc == 2.38 92 + # glirc 2.38 requires hookup 0.6 93 + - hookup == 0.6 94 95 extra-packages: 96 - aeson < 2 # required by pantry-0.5.2 ··· 128 - ormolu == 0.2.* # 2022-02-21: For ghc 8.8 and 8.10 129 - ShellCheck == 0.7.2 # 2022-02-20: haskell-ci 0.14 needs this 130 - weeder == 2.2.* # 2022-02-21: preserve for GHC 8.10.7 131 + - weeder == 2.3.* # 2022-05-31: preserve for GHC 9.0.2 132 - attoparsec == 0.13.* # 2022-02-23: Needed to compile elm for now 133 - relude == 0.7.0.0 # 2022-02-25: Needed for ema 0.6 134 - clay < 0.14 # 2022-03-20: Needed for neuron 1.0.0.0 135 - hspec-golden == 0.1.* # 2022-04-07: Needed for elm-format 136 - tasty-hspec == 1.1.6 # 2022-04-07: Needed for elm-format ··· 612 - spike 613 - web-browser-in-haskell 614 - webkit 615 - webkitgtk3-javascriptcore 616 - websnap 617 618 # mesos was removed from nixpkgs 619 - hs-mesos
+57 -59
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 19.7 2 # This file is auto-generated by 3 # maintainers/scripts/haskell/update-stackage.sh 4 default-package-overrides: ··· 11 - acid-state ==0.16.1 12 - action-permutations ==0.0.0.1 13 - active ==0.2.0.15 14 - - ad ==4.5 15 - ad-delcont ==0.3.0.0 16 - adjunctions ==4.4.1 17 - adler32 ==0.1.2.0 ··· 231 - brick ==0.68.1 232 - brittany ==0.14.0.2 233 - broadcast-chan ==0.2.1.2 234 - bsb-http-chunked ==0.0.0.4 235 - bson ==0.4.0.1 236 - bson-lens ==0.1.1 ··· 251 - bytes ==0.17.2 252 - byteset ==0.1.1.0 253 - bytestring-builder ==0.10.8.2.0 254 - - bytestring-conversion ==0.3.1 255 - bytestring-lexing ==0.5.0.8 256 - bytestring-mmap ==0.2.2 257 - bytestring-strict-builder ==0.4.5.5 ··· 312 - character-cases ==0.1.0.6 313 - charset ==0.3.9 314 - charsetdetect-ae ==1.1.0.4 315 - - Chart ==1.9.3 316 - ChasingBottoms ==1.3.1.11 317 - cheapskate ==0.1.1.2 318 - cheapskate-highlight ==0.1.0.0 ··· 340 - classy-prelude-conduit ==1.5.0 341 - classy-prelude-yesod ==1.5.0 342 - clay ==0.14.0 343 - - cleff ==0.3.2.0 344 - cleff-plugin ==0.1.0.0 345 - clientsession ==0.9.1.2 346 - climb ==0.3.3 ··· 388 - concise ==0.1.0.1 389 - concurrency ==1.11.0.2 390 - concurrent-extra ==0.7.0.12 391 - - concurrent-output ==1.10.15 392 - concurrent-split ==0.0.1.1 393 - concurrent-supply ==0.1.8 394 - cond ==0.4.1.1 ··· 413 - connection ==0.3.1 414 - connection-pool ==0.2.2 415 - console-style ==0.0.2.1 416 - - constraints ==0.13.3 417 - constraints-extras ==0.3.2.1 418 - constraint-tuples ==0.1.2 419 - construct ==0.3.1 ··· 470 - ctrie ==0.2 471 - cubicbezier ==0.6.0.6 472 - cubicspline ==0.1.2 473 - - cublas ==0.6.0.0 474 - - cuda ==0.11.0.0 475 - - cue-sheet ==2.0.1 476 - - cufft ==0.10.0.0 477 - curl ==1.3.8 478 - curl-runnings ==0.17.0 479 - currencies ==0.2.0.0 ··· 482 - cursor-brick ==0.1.0.1 483 - cursor-fuzzy-time ==0.0.0.0 484 - cursor-gen ==0.4.0.0 485 - - cusolver ==0.3.0.0 486 - - cusparse ==0.3.0.0 487 - cutter ==0.0 488 - cyclotomic ==1.1.1 489 - czipwith ==1.0.1.4 ··· 592 - distributed-static ==0.3.9 593 - distribution-opensuse ==1.1.3 594 - distributive ==0.6.2.1 595 - - djinn-lib ==0.0.1.3 596 - dlist ==1.0 597 - dlist-instances ==0.1.1.1 598 - dlist-nonempty ==0.1.1 ··· 684 - error-or-utils ==0.2.0 685 - errors ==2.3.0 686 - errors-ext ==0.4.2 687 - - ersatz ==0.4.10 688 - esqueleto ==3.5.4.1 689 - essence-of-live-coding ==0.2.6 690 - essence-of-live-coding-gloss ==0.2.6 ··· 784 - fold-debounce ==0.2.0.9 785 - fold-debounce-conduit ==0.2.0.6 786 - foldl ==1.4.12 787 - - folds ==0.7.7 788 - follow-file ==0.0.3 789 - FontyFruity ==0.5.3.5 790 - force-layout ==0.4.0.6 ··· 821 - fuzzcheck ==0.1.1 822 - fuzzy ==0.1.0.1 823 - fuzzy-dates ==0.1.1.2 824 - - fuzzyset ==0.2.2 825 - fuzzy-time ==0.2.0.0 826 - gauge ==0.2.5 827 - gd ==3000.7.3 ··· 884 - ghc-lib-parser-ex ==9.0.0.6 885 - ghc-parser ==0.2.3.0 886 - ghc-paths ==0.1.0.12 887 - - ghc-prof ==1.4.1.9 888 - ghc-source-gen ==0.4.3.0 889 - ghc-syntax-highlighter ==0.0.7.0 890 - ghc-tcplugins-extra ==0.4.2 ··· 965 - gtk-sni-tray ==0.1.8.0 966 - gtk-strut ==0.1.3.0 967 - guarded-allocation ==0.0.1 968 - hackage-db ==2.1.2 969 - hackage-security ==0.6.2.1 970 - haddock-library ==1.10.0 ··· 1000 - haskell-src ==1.0.4 1001 - haskell-src-exts ==1.23.1 1002 - haskell-src-exts-util ==0.2.5 1003 - - haskell-src-meta ==0.8.9 1004 - haskey-btree ==0.3.0.1 1005 - haskintex ==0.8.0.0 1006 - haskoin-core ==0.21.2 ··· 1097 - hpc-codecov ==0.3.0.0 1098 - HPDF ==1.6.0 1099 - hpp ==0.6.5 1100 - - hpqtypes ==1.9.3.1 1101 - hprotoc ==2.4.17 1102 - hreader ==1.1.0 1103 - hreader-lens ==0.1.3.0 ··· 1109 - hsdns ==1.8 1110 - hsemail ==2.2.1 1111 - hset ==2.2.0 1112 - - hsexif ==0.6.1.8 1113 - hs-GeoIP ==0.3 1114 - hsignal ==0.2.7.5 1115 - hsini ==0.5.1.2 ··· 1186 - http-directory ==0.1.9 1187 - http-download ==0.2.0.0 1188 - httpd-shed ==0.4.1.1 1189 - http-link-header ==1.2.1 1190 - http-media ==0.8.0.0 1191 - http-query ==0.1.3 ··· 1270 - influxdb ==1.9.2.2 1271 - ini ==0.4.1 1272 - inj ==1.0 1273 - - inline-c ==0.9.1.5 1274 - inline-c-cpp ==0.5.0.0 1275 - inliterate ==0.1.0 1276 - input-parsers ==0.2.3.2 1277 - insert-ordered-containers ==0.2.5.1 1278 - - inspection-testing ==0.4.6.0 1279 - instance-control ==0.1.2.0 1280 - int-cast ==0.2.0.0 1281 - integer-logarithms ==1.0.3.1 ··· 1339 - jwt ==0.11.0 1340 - kan-extensions ==5.2.4 1341 - kanji ==3.5.0 1342 - - katip ==0.8.7.1 1343 - katip-logstash ==0.1.0.2 1344 - katip-wai ==0.1.1.0 1345 - kazura-queue ==0.1.0.4 ··· 1417 - lift-generics ==0.2.1 1418 - lift-type ==0.1.0.1 1419 - line ==4.0.1 1420 - - linear ==1.21.8 1421 - linear-base ==0.1.0 1422 - linear-circuit ==0.1.0.4 1423 - linebreak ==1.1.0.1 ··· 1469 - lzma ==0.0.0.3 1470 - lzma-clib ==5.2.2 1471 - lzma-conduit ==1.2.3 1472 - - machines ==0.7.2 1473 - magic ==1.1 1474 - magico ==0.0.2.3 1475 - mainland-pretty ==0.7.1 ··· 1516 - microlens ==0.4.12.0 1517 - microlens-aeson ==2.4.1 1518 - microlens-contra ==0.1.0.2 1519 - - microlens-ghc ==0.4.13.1 1520 - - microlens-mtl ==0.2.0.1 1521 - microlens-platform ==0.4.2.1 1522 - microlens-process ==0.2.0.2 1523 - microlens-th ==0.4.3.10 1524 - microspec ==0.2.1.3 1525 - - microstache ==1.0.2 1526 - midair ==0.2.0.1 1527 - - midi ==0.2.2.2 1528 - midi-alsa ==0.2.1 1529 - mighty-metropolis ==2.0.0 1530 - mime-mail ==0.5.1 ··· 1551 - model ==0.5 1552 - modern-uri ==0.3.4.4 1553 - modular ==0.1.0.8 1554 - - monad-chronicle ==1.0.0.1 1555 - monad-control ==1.0.3.1 1556 - monad-control-aligned ==0.0.1.1 1557 - monad-coroutine ==0.9.2 ··· 1590 - mono-traversable-keys ==0.2.0 1591 - more-containers ==0.2.2.2 1592 - morpheus-graphql-tests ==0.18.0 1593 - - moss ==0.2.0.0 1594 - mountpoints ==1.0.2 1595 - mpi-hs ==0.7.2.0 1596 - mpi-hs-binary ==0.1.1.0 ··· 1657 - network-uri ==2.6.4.1 1658 - network-wait ==0.1.2.0 1659 - newtype ==0.2.2.0 1660 - - newtype-generics ==0.6.1 1661 - nfc ==0.1.0 1662 - nicify-lib ==1.0.1 1663 - NineP ==0.0.2.1 ··· 1677 - not-gloss ==0.7.7.0 1678 - no-value ==1.0.0.0 1679 - nowdoc ==0.1.1.0 1680 - - nqe ==0.6.3 1681 - nsis ==0.3.3 1682 - numbers ==3000.2.0.2 1683 - numeric-extras ==0.1 ··· 1691 - numtype-dk ==0.5.0.3 1692 - nuxeo ==0.3.2 1693 - nvim-hs ==2.2.0.1 1694 - - nvvm ==0.10.0.0 1695 - ObjectName ==1.1.0.2 1696 - ochintin-daicho ==0.3.4.2 1697 - o-clock ==1.2.1.1 1698 - oeis ==0.3.10 1699 - - oeis2 ==1.0.7 1700 - ofx ==0.4.4.0 1701 - old-locale ==1.0.0.7 1702 - old-time ==1.1.0.3 ··· 1723 - operational ==0.2.4.1 1724 - operational-class ==0.3.0.0 1725 - opml-conduit ==0.9.0.0 1726 - - optics ==0.4.1 1727 - optics-core ==0.4.1 1728 - - optics-extra ==0.4.1 1729 - optics-th ==0.4.1 1730 - optics-vl ==0.2.1 1731 - optima ==0.4.0.3 ··· 1787 - pattern-arrows ==0.0.2 1788 - pava ==0.1.1.3 1789 - pcg-random ==0.1.3.7 1790 - - pcre2 ==2.1.1 1791 - pcre-heavy ==1.0.0.2 1792 - pcre-light ==0.4.1.0 1793 - pcre-utils ==0.1.8.2 ··· 2007 - rawfilepath ==1.0.1 2008 - rawstring-qm ==0.2.3.0 2009 - raw-strings-qq ==1.1 2010 - - rcu ==0.2.5 2011 - rdtsc ==1.3.0.1 2012 - re2 ==0.3 2013 - readable ==0.3.1 ··· 2057 - repa-io ==3.4.1.2 2058 - replace-attoparsec ==1.4.5.0 2059 - replace-megaparsec ==1.4.5.0 2060 - - repline ==0.4.0.0 2061 - req ==3.10.0 2062 - req-conduit ==1.0.1 2063 - require ==0.4.11 ··· 2069 - resource-pool ==0.2.3.2 2070 - resourcet ==1.2.5 2071 - result ==0.2.6.0 2072 - - retry ==0.9.2.0 2073 - rev-state ==0.1.2 2074 - rfc1751 ==0.1.3 2075 - rfc5051 ==0.2 ··· 2097 - RSA ==2.4.1 2098 - rss-conduit ==0.6.0.1 2099 - runmemo ==1.0.0.1 2100 - - rvar ==0.3.0.0 2101 - s3-signer ==0.5.0.0 2102 - safe ==0.3.19 2103 - safe-coloured-text ==0.1.0.0 2104 - safe-coloured-text-terminfo ==0.0.0.0 2105 - safecopy ==0.10.4.2 2106 - safe-decimal ==0.2.1.0 2107 - - safe-exceptions ==0.1.7.2 2108 - safe-exceptions-checked ==0.1.0 2109 - safe-foldable ==0.1.0.0 2110 - safeio ==0.0.5.0 ··· 2183 - servant-multipart ==0.12.1 2184 - servant-multipart-api ==0.12.1 2185 - servant-multipart-client ==0.12.1 2186 - - servant-openapi3 ==2.0.1.4 2187 - servant-pipes ==0.15.3 2188 - servant-rawm ==1.0.0.0 2189 - servant-ruby ==0.9.0.0 ··· 2228 - silently ==1.2.5.2 2229 - simple-affine-space ==0.1.1 2230 - simple-cabal ==0.1.3 2231 - - simple-cmd ==0.2.5 2232 - simple-cmd-args ==0.1.7 2233 - simple-log ==0.9.12 2234 - simple-media-timestamp ==0.2.0.0 ··· 2251 - skein ==1.0.9.4 2252 - skews ==0.1.0.3 2253 - skip-var ==0.1.1.0 2254 - - skylighting ==0.12.3 2255 - - skylighting-core ==0.12.3 2256 - slack-progressbar ==0.1.0.1 2257 - slave-thread ==1.1.0.1 2258 - slist ==0.2.0.0 ··· 2306 - srt-attoparsec ==0.1.0.0 2307 - srt-dhall ==0.1.0.0 2308 - srt-formatting ==0.1.0.0 2309 - - stache ==2.3.1 2310 - stack-all ==0.4.0.1 2311 - stack-clean-old ==0.4.6 2312 - stackcollapse-ghc ==0.0.1.4 ··· 2343 - Stream ==0.4.7.2 2344 - streaming ==0.2.3.1 2345 - streaming-attoparsec ==1.0.0.1 2346 - - streaming-bytestring ==0.2.1 2347 - streaming-cassava ==0.2.0.0 2348 - streaming-commons ==0.2.2.4 2349 - streamly ==0.8.1.1 2350 - streamly-bytestring ==0.1.4 2351 - streams ==3.3 2352 - - streamt ==0.5.0.0 2353 - strict ==0.4.0.1 2354 - strict-concurrency ==0.2.4.3 2355 - strict-list ==0.1.7 ··· 2361 - string-combinators ==0.6.0.5 2362 - string-conv ==0.2.0 2363 - string-conversions ==0.4.0.1 2364 - - string-interpolate ==0.3.1.1 2365 - string-qq ==0.0.4 2366 - string-random ==0.1.4.2 2367 - stringsearch ==0.3.6.6 ··· 2417 - tasty-ant-xml ==1.1.8 2418 - tasty-bench ==0.3.1 2419 - tasty-dejafu ==2.0.0.8 2420 - - tasty-discover ==4.2.2 2421 - tasty-expected-failure ==0.12.3 2422 - tasty-fail-fast ==0.0.3 2423 - tasty-focus ==1.0.1 2424 - tasty-golden ==2.3.5 2425 - tasty-hedgehog ==1.1.0.0 2426 - tasty-hslua ==1.0.2 2427 - - tasty-hspec ==1.2 2428 - tasty-html ==0.4.1.4 2429 - tasty-hunit ==0.10.0.3 2430 - tasty-hunit-compat ==0.2.0.1 2431 - - tasty-inspection-testing ==0.1 2432 - tasty-kat ==0.0.3 2433 - tasty-leancheck ==0.0.2 2434 - tasty-lua ==1.0.2 ··· 2502 - th-lift ==0.8.2 2503 - th-lift-instances ==0.1.19 2504 - th-nowq ==0.1.0.5 2505 - - th-orphans ==0.13.12 2506 - th-printf ==0.7 2507 - thread-hierarchy ==0.3.0.2 2508 - thread-local-storage ==0.2 ··· 2603 - uglymemo ==0.1.0.1 2604 - unagi-chan ==0.4.1.4 2605 - unbounded-delays ==0.1.1.1 2606 - - unbound-generics ==0.4.1 2607 - unboxed-ref ==0.4.0.0 2608 - unboxing-vector ==0.2.0.0 2609 - uncaught-exception ==0.1.0 ··· 2611 - unexceptionalio ==0.5.1 2612 - unexceptionalio-trans ==0.5.1 2613 - unicode ==0.0.1.1 2614 - - unicode-collation ==0.1.3.1 2615 - unicode-data ==0.3.0 2616 - unicode-show ==0.1.1.1 2617 - unicode-transforms ==0.4.0.1 ··· 2826 - xmonad ==0.17.0 2827 - xmonad-contrib ==0.17.0 2828 - xmonad-extras ==0.17.0 2829 - xss-sanitize ==0.3.7 2830 - xxhash-ffi ==0.2.0.0 2831 - yaml ==0.11.8.0 ··· 2848 - yesod-gitrev ==0.2.2 2849 - yesod-markdown ==0.12.6.13 2850 - yesod-newsfeed ==1.7.0.0 2851 - - yesod-page-cursor ==2.0.0.10 2852 - yesod-paginator ==1.1.2.1 2853 - yesod-persistent ==1.6.0.8 2854 - yesod-recaptcha2 ==1.0.2
··· 1 + # Stackage LTS 19.8 2 # This file is auto-generated by 3 # maintainers/scripts/haskell/update-stackage.sh 4 default-package-overrides: ··· 11 - acid-state ==0.16.1 12 - action-permutations ==0.0.0.1 13 - active ==0.2.0.15 14 + - ad ==4.5.1 15 - ad-delcont ==0.3.0.0 16 - adjunctions ==4.4.1 17 - adler32 ==0.1.2.0 ··· 231 - brick ==0.68.1 232 - brittany ==0.14.0.2 233 - broadcast-chan ==0.2.1.2 234 + - brotli ==0.0.0.0 235 + - brotli-streams ==0.0.0.0 236 - bsb-http-chunked ==0.0.0.4 237 - bson ==0.4.0.1 238 - bson-lens ==0.1.1 ··· 253 - bytes ==0.17.2 254 - byteset ==0.1.1.0 255 - bytestring-builder ==0.10.8.2.0 256 + - bytestring-conversion ==0.3.2 257 - bytestring-lexing ==0.5.0.8 258 - bytestring-mmap ==0.2.2 259 - bytestring-strict-builder ==0.4.5.5 ··· 314 - character-cases ==0.1.0.6 315 - charset ==0.3.9 316 - charsetdetect-ae ==1.1.0.4 317 + - Chart ==1.9.4 318 - ChasingBottoms ==1.3.1.11 319 - cheapskate ==0.1.1.2 320 - cheapskate-highlight ==0.1.0.0 ··· 342 - classy-prelude-conduit ==1.5.0 343 - classy-prelude-yesod ==1.5.0 344 - clay ==0.14.0 345 + - cleff ==0.3.3.0 346 - cleff-plugin ==0.1.0.0 347 - clientsession ==0.9.1.2 348 - climb ==0.3.3 ··· 390 - concise ==0.1.0.1 391 - concurrency ==1.11.0.2 392 - concurrent-extra ==0.7.0.12 393 + - concurrent-output ==1.10.16 394 - concurrent-split ==0.0.1.1 395 - concurrent-supply ==0.1.8 396 - cond ==0.4.1.1 ··· 415 - connection ==0.3.1 416 - connection-pool ==0.2.2 417 - console-style ==0.0.2.1 418 + - constraints ==0.13.4 419 - constraints-extras ==0.3.2.1 420 - constraint-tuples ==0.1.2 421 - construct ==0.3.1 ··· 472 - ctrie ==0.2 473 - cubicbezier ==0.6.0.6 474 - cubicspline ==0.1.2 475 + - cue-sheet ==2.0.2 476 - curl ==1.3.8 477 - curl-runnings ==0.17.0 478 - currencies ==0.2.0.0 ··· 481 - cursor-brick ==0.1.0.1 482 - cursor-fuzzy-time ==0.0.0.0 483 - cursor-gen ==0.4.0.0 484 - cutter ==0.0 485 - cyclotomic ==1.1.1 486 - czipwith ==1.0.1.4 ··· 589 - distributed-static ==0.3.9 590 - distribution-opensuse ==1.1.3 591 - distributive ==0.6.2.1 592 + - djinn-lib ==0.0.1.4 593 - dlist ==1.0 594 - dlist-instances ==0.1.1.1 595 - dlist-nonempty ==0.1.1 ··· 681 - error-or-utils ==0.2.0 682 - errors ==2.3.0 683 - errors-ext ==0.4.2 684 + - ersatz ==0.4.11 685 - esqueleto ==3.5.4.1 686 - essence-of-live-coding ==0.2.6 687 - essence-of-live-coding-gloss ==0.2.6 ··· 781 - fold-debounce ==0.2.0.9 782 - fold-debounce-conduit ==0.2.0.6 783 - foldl ==1.4.12 784 + - folds ==0.7.8 785 - follow-file ==0.0.3 786 - FontyFruity ==0.5.3.5 787 - force-layout ==0.4.0.6 ··· 818 - fuzzcheck ==0.1.1 819 - fuzzy ==0.1.0.1 820 - fuzzy-dates ==0.1.1.2 821 + - fuzzyset ==0.2.3 822 - fuzzy-time ==0.2.0.0 823 - gauge ==0.2.5 824 - gd ==3000.7.3 ··· 881 - ghc-lib-parser-ex ==9.0.0.6 882 - ghc-parser ==0.2.3.0 883 - ghc-paths ==0.1.0.12 884 + - ghc-prof ==1.4.1.11 885 - ghc-source-gen ==0.4.3.0 886 - ghc-syntax-highlighter ==0.0.7.0 887 - ghc-tcplugins-extra ==0.4.2 ··· 962 - gtk-sni-tray ==0.1.8.0 963 - gtk-strut ==0.1.3.0 964 - guarded-allocation ==0.0.1 965 + - hackage-cli ==0.0.3.6 966 - hackage-db ==2.1.2 967 - hackage-security ==0.6.2.1 968 - haddock-library ==1.10.0 ··· 998 - haskell-src ==1.0.4 999 - haskell-src-exts ==1.23.1 1000 - haskell-src-exts-util ==0.2.5 1001 + - haskell-src-meta ==0.8.10 1002 - haskey-btree ==0.3.0.1 1003 - haskintex ==0.8.0.0 1004 - haskoin-core ==0.21.2 ··· 1095 - hpc-codecov ==0.3.0.0 1096 - HPDF ==1.6.0 1097 - hpp ==0.6.5 1098 + - hpqtypes ==1.9.4.0 1099 - hprotoc ==2.4.17 1100 - hreader ==1.1.0 1101 - hreader-lens ==0.1.3.0 ··· 1107 - hsdns ==1.8 1108 - hsemail ==2.2.1 1109 - hset ==2.2.0 1110 + - hsexif ==0.6.1.9 1111 - hs-GeoIP ==0.3 1112 - hsignal ==0.2.7.5 1113 - hsini ==0.5.1.2 ··· 1184 - http-directory ==0.1.9 1185 - http-download ==0.2.0.0 1186 - httpd-shed ==0.4.1.1 1187 + - http-io-streams ==0.1.6.1 1188 - http-link-header ==1.2.1 1189 - http-media ==0.8.0.0 1190 - http-query ==0.1.3 ··· 1269 - influxdb ==1.9.2.2 1270 - ini ==0.4.1 1271 - inj ==1.0 1272 + - inline-c ==0.9.1.6 1273 - inline-c-cpp ==0.5.0.0 1274 - inliterate ==0.1.0 1275 - input-parsers ==0.2.3.2 1276 - insert-ordered-containers ==0.2.5.1 1277 + - inspection-testing ==0.4.6.1 1278 - instance-control ==0.1.2.0 1279 - int-cast ==0.2.0.0 1280 - integer-logarithms ==1.0.3.1 ··· 1338 - jwt ==0.11.0 1339 - kan-extensions ==5.2.4 1340 - kanji ==3.5.0 1341 + - katip ==0.8.7.2 1342 - katip-logstash ==0.1.0.2 1343 - katip-wai ==0.1.1.0 1344 - kazura-queue ==0.1.0.4 ··· 1416 - lift-generics ==0.2.1 1417 - lift-type ==0.1.0.1 1418 - line ==4.0.1 1419 + - linear ==1.21.9 1420 - linear-base ==0.1.0 1421 - linear-circuit ==0.1.0.4 1422 - linebreak ==1.1.0.1 ··· 1468 - lzma ==0.0.0.3 1469 - lzma-clib ==5.2.2 1470 - lzma-conduit ==1.2.3 1471 + - machines ==0.7.3 1472 - magic ==1.1 1473 - magico ==0.0.2.3 1474 - mainland-pretty ==0.7.1 ··· 1515 - microlens ==0.4.12.0 1516 - microlens-aeson ==2.4.1 1517 - microlens-contra ==0.1.0.2 1518 + - microlens-ghc ==0.4.13.2 1519 + - microlens-mtl ==0.2.0.2 1520 - microlens-platform ==0.4.2.1 1521 - microlens-process ==0.2.0.2 1522 - microlens-th ==0.4.3.10 1523 - microspec ==0.2.1.3 1524 + - microstache ==1.0.2.1 1525 - midair ==0.2.0.1 1526 + - midi ==0.2.2.3 1527 - midi-alsa ==0.2.1 1528 - mighty-metropolis ==2.0.0 1529 - mime-mail ==0.5.1 ··· 1550 - model ==0.5 1551 - modern-uri ==0.3.4.4 1552 - modular ==0.1.0.8 1553 + - monad-chronicle ==1.0.1 1554 - monad-control ==1.0.3.1 1555 - monad-control-aligned ==0.0.1.1 1556 - monad-coroutine ==0.9.2 ··· 1589 - mono-traversable-keys ==0.2.0 1590 - more-containers ==0.2.2.2 1591 - morpheus-graphql-tests ==0.18.0 1592 + - moss ==0.2.0.1 1593 - mountpoints ==1.0.2 1594 - mpi-hs ==0.7.2.0 1595 - mpi-hs-binary ==0.1.1.0 ··· 1656 - network-uri ==2.6.4.1 1657 - network-wait ==0.1.2.0 1658 - newtype ==0.2.2.0 1659 + - newtype-generics ==0.6.2 1660 - nfc ==0.1.0 1661 - nicify-lib ==1.0.1 1662 - NineP ==0.0.2.1 ··· 1676 - not-gloss ==0.7.7.0 1677 - no-value ==1.0.0.0 1678 - nowdoc ==0.1.1.0 1679 + - nqe ==0.6.4 1680 - nsis ==0.3.3 1681 - numbers ==3000.2.0.2 1682 - numeric-extras ==0.1 ··· 1690 - numtype-dk ==0.5.0.3 1691 - nuxeo ==0.3.2 1692 - nvim-hs ==2.2.0.1 1693 - ObjectName ==1.1.0.2 1694 - ochintin-daicho ==0.3.4.2 1695 - o-clock ==1.2.1.1 1696 - oeis ==0.3.10 1697 - ofx ==0.4.4.0 1698 - old-locale ==1.0.0.7 1699 - old-time ==1.1.0.3 ··· 1720 - operational ==0.2.4.1 1721 - operational-class ==0.3.0.0 1722 - opml-conduit ==0.9.0.0 1723 + - optics ==0.4.2 1724 - optics-core ==0.4.1 1725 + - optics-extra ==0.4.2.1 1726 - optics-th ==0.4.1 1727 - optics-vl ==0.2.1 1728 - optima ==0.4.0.3 ··· 1784 - pattern-arrows ==0.0.2 1785 - pava ==0.1.1.3 1786 - pcg-random ==0.1.3.7 1787 + - pcre2 ==2.1.1.1 1788 - pcre-heavy ==1.0.0.2 1789 - pcre-light ==0.4.1.0 1790 - pcre-utils ==0.1.8.2 ··· 2004 - rawfilepath ==1.0.1 2005 - rawstring-qm ==0.2.3.0 2006 - raw-strings-qq ==1.1 2007 + - rcu ==0.2.6 2008 - rdtsc ==1.3.0.1 2009 - re2 ==0.3 2010 - readable ==0.3.1 ··· 2054 - repa-io ==3.4.1.2 2055 - replace-attoparsec ==1.4.5.0 2056 - replace-megaparsec ==1.4.5.0 2057 + - repline ==0.4.2.0 2058 - req ==3.10.0 2059 - req-conduit ==1.0.1 2060 - require ==0.4.11 ··· 2066 - resource-pool ==0.2.3.2 2067 - resourcet ==1.2.5 2068 - result ==0.2.6.0 2069 + - retry ==0.9.2.1 2070 - rev-state ==0.1.2 2071 - rfc1751 ==0.1.3 2072 - rfc5051 ==0.2 ··· 2094 - RSA ==2.4.1 2095 - rss-conduit ==0.6.0.1 2096 - runmemo ==1.0.0.1 2097 + - rvar ==0.3.0.1 2098 - s3-signer ==0.5.0.0 2099 - safe ==0.3.19 2100 - safe-coloured-text ==0.1.0.0 2101 - safe-coloured-text-terminfo ==0.0.0.0 2102 - safecopy ==0.10.4.2 2103 - safe-decimal ==0.2.1.0 2104 + - safe-exceptions ==0.1.7.3 2105 - safe-exceptions-checked ==0.1.0 2106 - safe-foldable ==0.1.0.0 2107 - safeio ==0.0.5.0 ··· 2180 - servant-multipart ==0.12.1 2181 - servant-multipart-api ==0.12.1 2182 - servant-multipart-client ==0.12.1 2183 + - servant-openapi3 ==2.0.1.5 2184 - servant-pipes ==0.15.3 2185 - servant-rawm ==1.0.0.0 2186 - servant-ruby ==0.9.0.0 ··· 2225 - silently ==1.2.5.2 2226 - simple-affine-space ==0.1.1 2227 - simple-cabal ==0.1.3 2228 + - simple-cmd ==0.2.6 2229 - simple-cmd-args ==0.1.7 2230 - simple-log ==0.9.12 2231 - simple-media-timestamp ==0.2.0.0 ··· 2248 - skein ==1.0.9.4 2249 - skews ==0.1.0.3 2250 - skip-var ==0.1.1.0 2251 + - skylighting ==0.12.3.1 2252 + - skylighting-core ==0.12.3.1 2253 - slack-progressbar ==0.1.0.1 2254 - slave-thread ==1.1.0.1 2255 - slist ==0.2.0.0 ··· 2303 - srt-attoparsec ==0.1.0.0 2304 - srt-dhall ==0.1.0.0 2305 - srt-formatting ==0.1.0.0 2306 + - stache ==2.3.2 2307 - stack-all ==0.4.0.1 2308 - stack-clean-old ==0.4.6 2309 - stackcollapse-ghc ==0.0.1.4 ··· 2340 - Stream ==0.4.7.2 2341 - streaming ==0.2.3.1 2342 - streaming-attoparsec ==1.0.0.1 2343 + - streaming-bytestring ==0.2.2 2344 - streaming-cassava ==0.2.0.0 2345 - streaming-commons ==0.2.2.4 2346 - streamly ==0.8.1.1 2347 - streamly-bytestring ==0.1.4 2348 - streams ==3.3 2349 + - streamt ==0.5.0.1 2350 - strict ==0.4.0.1 2351 - strict-concurrency ==0.2.4.3 2352 - strict-list ==0.1.7 ··· 2358 - string-combinators ==0.6.0.5 2359 - string-conv ==0.2.0 2360 - string-conversions ==0.4.0.1 2361 + - string-interpolate ==0.3.1.2 2362 - string-qq ==0.0.4 2363 - string-random ==0.1.4.2 2364 - stringsearch ==0.3.6.6 ··· 2414 - tasty-ant-xml ==1.1.8 2415 - tasty-bench ==0.3.1 2416 - tasty-dejafu ==2.0.0.8 2417 + - tasty-discover ==4.2.4 2418 - tasty-expected-failure ==0.12.3 2419 - tasty-fail-fast ==0.0.3 2420 - tasty-focus ==1.0.1 2421 - tasty-golden ==2.3.5 2422 - tasty-hedgehog ==1.1.0.0 2423 - tasty-hslua ==1.0.2 2424 + - tasty-hspec ==1.2.0.1 2425 - tasty-html ==0.4.1.4 2426 - tasty-hunit ==0.10.0.3 2427 - tasty-hunit-compat ==0.2.0.1 2428 + - tasty-inspection-testing ==0.1.0.1 2429 - tasty-kat ==0.0.3 2430 - tasty-leancheck ==0.0.2 2431 - tasty-lua ==1.0.2 ··· 2499 - th-lift ==0.8.2 2500 - th-lift-instances ==0.1.19 2501 - th-nowq ==0.1.0.5 2502 + - th-orphans ==0.13.13 2503 - th-printf ==0.7 2504 - thread-hierarchy ==0.3.0.2 2505 - thread-local-storage ==0.2 ··· 2600 - uglymemo ==0.1.0.1 2601 - unagi-chan ==0.4.1.4 2602 - unbounded-delays ==0.1.1.1 2603 + - unbound-generics ==0.4.2 2604 - unboxed-ref ==0.4.0.0 2605 - unboxing-vector ==0.2.0.0 2606 - uncaught-exception ==0.1.0 ··· 2608 - unexceptionalio ==0.5.1 2609 - unexceptionalio-trans ==0.5.1 2610 - unicode ==0.0.1.1 2611 + - unicode-collation ==0.1.3.2 2612 - unicode-data ==0.3.0 2613 - unicode-show ==0.1.1.1 2614 - unicode-transforms ==0.4.0.1 ··· 2823 - xmonad ==0.17.0 2824 - xmonad-contrib ==0.17.0 2825 - xmonad-extras ==0.17.0 2826 + - xor ==0.0.1.1 2827 - xss-sanitize ==0.3.7 2828 - xxhash-ffi ==0.2.0.0 2829 - yaml ==0.11.8.0 ··· 2846 - yesod-gitrev ==0.2.2 2847 - yesod-markdown ==0.12.6.13 2848 - yesod-newsfeed ==1.7.0.0 2849 + - yesod-page-cursor ==2.0.1.0 2850 - yesod-paginator ==1.1.2.1 2851 - yesod-persistent ==1.6.0.8 2852 - yesod-recaptcha2 ==1.0.2
+22 -10
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 142 - GrowlNotify 143 - Gtk2hsGenerics 144 - GtkGLTV 145 - GuiTV 146 - H 147 - HAppS-Data ··· 173 - HLearn-distributions 174 - HNM 175 - HPhone 176 - HPong 177 - HROOT 178 - HROOT-core ··· 832 - blosum 833 - bloxorz 834 - blubber 835 - blunt 836 - bno055-haskell 837 - bogre-banana ··· 1040 - compdata-automata 1041 - compdata-dags 1042 - compdata-param 1043 - - compdoc 1044 - compdoc-dhall-decoder 1045 - complexity 1046 - - composite-aeson-cofree-list 1047 - - composite-aeson-path 1048 - - composite-aeson-refined 1049 - - composite-aeson-throw 1050 - - composite-aeson-writeonly 1051 - - composite-swagger 1052 - compstrat 1053 - comptrans 1054 - computational-algebra ··· 1236 - diagrams-pandoc 1237 - diagrams-reflex 1238 - diagrams-wx 1239 - difference-monoid 1240 - differential 1241 - digestive-functors-hsp ··· 1294 - doc-review 1295 - dom-parser 1296 - dormouse-client 1297 - doublezip 1298 - dovetail 1299 - dovetail-aeson ··· 1600 - ghc-tags-plugin 1601 - ghci-pretty 1602 - ghcjs-dom-hello 1603 - ghcjs-fetch 1604 - ghcjs-hplay 1605 - ghcprofview ··· 1623 - gitlib-cross 1624 - gitlib-s3 1625 - givegif 1626 - glazier 1627 - glazier-pipes 1628 - glazier-react ··· 1880 - gstorable 1881 - gtfs 1882 - gtk-serialized-event 1883 - gtk2hs-cast-gnomevfs 1884 - gtk2hs-cast-gtk 1885 - gtk2hs-cast-gtkglext ··· 2063 - hbb 2064 - hbcd 2065 - hbf 2066 - hcg-minus-cairo 2067 - hcheat 2068 - hcheckers ··· 2257 - hstar 2258 - hstox 2259 - hstradeking 2260 - hsubconvert 2261 - hswip 2262 - hsx-jmacro ··· 2522 - lambdaFeed 2523 - lambdaLit 2524 - lambdabot-zulip 2525 - lambdacms-media 2526 - lambdacube 2527 - lambdacube-bullet ··· 2620 - list-witnesses 2621 - listenbrainz-client 2622 - liszt 2623 - - little-rio_1_0_0 2624 - live-sequencer 2625 - llvm 2626 - llvm-analysis ··· 2762 - migrant-postgresql-simple 2763 - migrant-sqlite-simple 2764 - minecraft-data 2765 - mini-egison 2766 - minilight-lua 2767 - minimung ··· 2956 - nyan 2957 - nyan-interpolation 2958 - nyan-interpolation-simple 2959 - oanda-rest-api 2960 - oath 2961 - obd ··· 3042 - peparser 3043 - perdure 3044 - perf-analysis 3045 - perfecthash 3046 - periodic-client 3047 - periodic-client-exe ··· 3181 - prolude 3182 - prometheus-effect 3183 - propane 3184 - prosidyc 3185 - proteome 3186 - proto-lens-descriptors ··· 3189 - protobuf-native 3190 - protocol-buffers-descriptor-fork 3191 - proton 3192 - psql 3193 - ptera 3194 - ptera-core ··· 3200 - puppetresources 3201 - pure-cdb 3202 - pure-priority-queue-tests 3203 - - purenix 3204 - purescript-iso 3205 - pursuit-client 3206 - push-notify 3207 - push-notify-apn ··· 3311 - reduce-equations 3312 - refh 3313 - reflex-animation 3314 - - reflex-backend-socket 3315 - reflex-backend-wai 3316 - reflex-dom-colonnade 3317 - reflex-dynamic-containers ··· 3573 - shapefile 3574 - shapely-data 3575 - shapes-demo 3576 - shelduck 3577 - shellmate-extras 3578 - shine-varying 3579 - short-vec-lens 3580 - shpider 3581 - shuffle 3582 - si-clock ··· 4233 - yuuko 4234 - z85 4235 - zasni-gerna 4236 - zephyr-copilot 4237 - zeromq3-conduit 4238 - zeromq3-haskell
··· 142 - GrowlNotify 143 - Gtk2hsGenerics 144 - GtkGLTV 145 + - GuiHaskell 146 - GuiTV 147 - H 148 - HAppS-Data ··· 174 - HLearn-distributions 175 - HNM 176 - HPhone 177 + - HPlot 178 - HPong 179 - HROOT 180 - HROOT-core ··· 834 - blosum 835 - bloxorz 836 - blubber 837 + - bluetile 838 - blunt 839 - bno055-haskell 840 - bogre-banana ··· 1043 - compdata-automata 1044 - compdata-dags 1045 - compdata-param 1046 - compdoc-dhall-decoder 1047 - complexity 1048 - compstrat 1049 - comptrans 1050 - computational-algebra ··· 1232 - diagrams-pandoc 1233 - diagrams-reflex 1234 - diagrams-wx 1235 + - dialog 1236 - difference-monoid 1237 - differential 1238 - digestive-functors-hsp ··· 1291 - doc-review 1292 - dom-parser 1293 - dormouse-client 1294 + - dotparse 1295 - doublezip 1296 - dovetail 1297 - dovetail-aeson ··· 1598 - ghc-tags-plugin 1599 - ghci-pretty 1600 - ghcjs-dom-hello 1601 + - ghcjs-dom-webkit 1602 - ghcjs-fetch 1603 - ghcjs-hplay 1604 - ghcprofview ··· 1622 - gitlib-cross 1623 - gitlib-s3 1624 - givegif 1625 + - gladexml-accessor 1626 - glazier 1627 - glazier-pipes 1628 - glazier-react ··· 1880 - gstorable 1881 - gtfs 1882 - gtk-serialized-event 1883 + - gtk2hs-cast-glade 1884 - gtk2hs-cast-gnomevfs 1885 - gtk2hs-cast-gtk 1886 - gtk2hs-cast-gtkglext ··· 2064 - hbb 2065 - hbcd 2066 - hbf 2067 + - hbro 2068 + - hbro-contrib 2069 - hcg-minus-cairo 2070 - hcheat 2071 - hcheckers ··· 2260 - hstar 2261 - hstox 2262 - hstradeking 2263 + - hstzaar 2264 - hsubconvert 2265 - hswip 2266 - hsx-jmacro ··· 2526 - lambdaFeed 2527 - lambdaLit 2528 - lambdabot-zulip 2529 + - lambdacat 2530 - lambdacms-media 2531 - lambdacube 2532 - lambdacube-bullet ··· 2625 - list-witnesses 2626 - listenbrainz-client 2627 - liszt 2628 + - little-rio_1_0_1 2629 - live-sequencer 2630 - llvm 2631 - llvm-analysis ··· 2767 - migrant-postgresql-simple 2768 - migrant-sqlite-simple 2769 - minecraft-data 2770 + - minesweeper 2771 - mini-egison 2772 - minilight-lua 2773 - minimung ··· 2962 - nyan 2963 - nyan-interpolation 2964 - nyan-interpolation-simple 2965 + - nymphaea 2966 - oanda-rest-api 2967 - oath 2968 - obd ··· 3049 - peparser 3050 - perdure 3051 - perf-analysis 3052 + - perf_0_10_0 3053 - perfecthash 3054 - periodic-client 3055 - periodic-client-exe ··· 3189 - prolude 3190 - prometheus-effect 3191 - propane 3192 + - proplang 3193 - prosidyc 3194 - proteome 3195 - proto-lens-descriptors ··· 3198 - protobuf-native 3199 - protocol-buffers-descriptor-fork 3200 - proton 3201 + - psc-ide 3202 - psql 3203 - ptera 3204 - ptera-core ··· 3210 - puppetresources 3211 - pure-cdb 3212 - pure-priority-queue-tests 3213 - purescript-iso 3214 + - purescript-tsd-gen 3215 - pursuit-client 3216 - push-notify 3217 - push-notify-apn ··· 3321 - reduce-equations 3322 - refh 3323 - reflex-animation 3324 - reflex-backend-wai 3325 - reflex-dom-colonnade 3326 - reflex-dynamic-containers ··· 3582 - shapefile 3583 - shapely-data 3584 - shapes-demo 3585 + - sheets 3586 - shelduck 3587 - shellmate-extras 3588 - shine-varying 3589 - short-vec-lens 3590 + - showdown 3591 - shpider 3592 - shuffle 3593 - si-clock ··· 4244 - yuuko 4245 - z85 4246 - zasni-gerna 4247 + - zephyr 4248 - zephyr-copilot 4249 - zeromq3-conduit 4250 - zeromq3-haskell
+1239 -1194
pkgs/development/haskell-modules/hackage-packages.nix
··· 1136 }: 1137 mkDerivation { 1138 pname = "AspectAG"; 1139 - version = "0.7.0.0"; 1140 - sha256 = "1w5zfx5vgvkys84vdrdd3rv39ly25wbn9izlir19irniqsbf6z6v"; 1141 libraryHaskellDepends = [ 1142 base containers ghc-prim loch-th mtl poly-rec requirements 1143 template-haskell ··· 2099 "BlogLiterately-diagrams" = callPackage 2100 ({ mkDerivation, base, BlogLiterately, containers, diagrams-builder 2101 , diagrams-lib, diagrams-rasterific, directory, filepath 2102 - , JuicyPixels, pandoc, safe, split 2103 }: 2104 mkDerivation { 2105 pname = "BlogLiterately-diagrams"; 2106 - version = "0.2.1"; 2107 - sha256 = "0ki56kc51p1b9zkvs91adgj140pchnbdwfmhsvb4qzzf9sz90kjb"; 2108 isLibrary = true; 2109 isExecutable = true; 2110 libraryHaskellDepends = [ 2111 base BlogLiterately containers diagrams-builder diagrams-lib 2112 diagrams-rasterific directory filepath JuicyPixels pandoc safe 2113 - split 2114 ]; 2115 executableHaskellDepends = [ base BlogLiterately ]; 2116 description = "Include images in blog posts with inline diagrams code"; ··· 3029 }: 3030 mkDerivation { 3031 pname = "Chart"; 3032 - version = "1.9.3"; 3033 - sha256 = "0p69kq5kh40gd4y8wqabypmw67pqh42vaaw64zv9sf8j075g85ry"; 3034 - revision = "3"; 3035 - editedCabalFile = "0lgfq5cmhx0q9wqnplw1xr5ql88jjffzc0i72v1lfiqsp9w3lppf"; 3036 libraryHaskellDepends = [ 3037 array base colour data-default-class lens mtl old-locale 3038 operational time vector ··· 3067 }: 3068 mkDerivation { 3069 pname = "Chart-diagrams"; 3070 - version = "1.9.3"; 3071 - sha256 = "075yzq50jpakgq6lb3anr660jydm68ry0di33icdacbdymq8avwn"; 3072 - revision = "4"; 3073 - editedCabalFile = "0qsgg78plwr7wabc680x8qshv137vhplqqvs4730xb62z45r6kjl"; 3074 enableSeparateDataOutput = true; 3075 libraryHaskellDepends = [ 3076 base blaze-markup bytestring Chart colour containers ··· 7814 ]; 7815 description = "A graphical REPL and development environment for Haskell"; 7816 license = lib.licenses.bsd3; 7817 }) {}; 7818 7819 "GuiTV" = callPackage ··· 9103 executablePkgconfigDepends = [ plplotd-gnome2 ]; 9104 description = "A minimal monadic PLplot interface for Haskell"; 9105 license = lib.licenses.bsd3; 9106 }) {plplotd-gnome2 = null;}; 9107 9108 "HPong" = callPackage ··· 12918 license = lib.licenses.bsd3; 12919 }) {}; 12920 12921 "ListT" = callPackage 12922 ({ mkDerivation, base, smallcheck, tasty, tasty-smallcheck 12923 , transformers, util ··· 13702 pname = "MissingH"; 13703 version = "1.5.0.1"; 13704 sha256 = "0c92fdv32nq51kfdizi3lpxmnvscsgk6marfzaycd7k05aka8byb"; 13705 libraryHaskellDepends = [ 13706 array base containers directory filepath hslogger mtl network 13707 network-bsd old-locale old-time parsec process regex-compat time ··· 17990 hydraPlatforms = lib.platforms.none; 17991 }) {}; 17992 17993 - "SVGFonts_1_7_0_1" = callPackage 17994 - ({ mkDerivation, attoparsec, base, blaze-markup, blaze-svg 17995 - , bytestring, cereal, cereal-vector, containers, data-default-class 17996 - , diagrams-core, diagrams-lib, directory, parsec, split, text 17997 - , vector, xml 17998 - }: 17999 - mkDerivation { 18000 - pname = "SVGFonts"; 18001 - version = "1.7.0.1"; 18002 - sha256 = "06vnpkkr19s9b1wjp7l2w29vr7fsghcrffd2knlxvdhjacrfpc9h"; 18003 - revision = "2"; 18004 - editedCabalFile = "0q731cyrqq1csbid9nxh2bj6rf8yss017lz9j9zk22bw3bymzb0s"; 18005 - enableSeparateDataOutput = true; 18006 - libraryHaskellDepends = [ 18007 - attoparsec base blaze-markup blaze-svg bytestring cereal 18008 - cereal-vector containers data-default-class diagrams-core 18009 - diagrams-lib directory parsec split text vector xml 18010 - ]; 18011 - description = "Fonts from the SVG-Font format"; 18012 - license = lib.licenses.bsd3; 18013 - hydraPlatforms = lib.platforms.none; 18014 - }) {}; 18015 - 18016 "SVGFonts" = callPackage 18017 ({ mkDerivation, attoparsec, base, blaze-markup, blaze-svg 18018 , bytestring, cereal, cereal-vector, containers, data-default-class ··· 19827 }) {}; 19828 19829 "TLT" = callPackage 19830 - ({ mkDerivation, ansi-terminal, base, either, free, HUnit, mtl 19831 - , resourcet, STMonadTrans, symbol, transformers 19832 }: 19833 mkDerivation { 19834 pname = "TLT"; 19835 - version = "0.1.0.1"; 19836 - sha256 = "1b91ax19dfgi50rlkfvjjywzz6w998d5jsq5c0yz620rcdl7jrki"; 19837 isLibrary = true; 19838 isExecutable = true; 19839 libraryHaskellDepends = [ 19840 - ansi-terminal base either free HUnit mtl resourcet STMonadTrans 19841 - symbol transformers 19842 ]; 19843 executableHaskellDepends = [ 19844 - ansi-terminal base either free HUnit mtl resourcet STMonadTrans 19845 - symbol transformers 19846 ]; 19847 testHaskellDepends = [ 19848 - ansi-terminal base either free HUnit mtl resourcet STMonadTrans 19849 - symbol transformers 19850 ]; 19851 description = "Testing in monads and transformers without explicit specs"; 19852 license = lib.licenses.lgpl3Only; ··· 20035 license = lib.licenses.bsd3; 20036 hydraPlatforms = lib.platforms.none; 20037 broken = true; 20038 }) {}; 20039 20040 "Taxonomy" = callPackage ··· 24244 }: 24245 mkDerivation { 24246 pname = "ad"; 24247 - version = "4.5"; 24248 - sha256 = "1v37ckxcav3aicv4vv7y77mmvinfwd8mxzcnm672mmxq1d29vpsc"; 24249 - libraryHaskellDepends = [ 24250 - adjunctions array base comonad containers data-reify erf free nats 24251 - reflection semigroups transformers 24252 - ]; 24253 - benchmarkHaskellDepends = [ base criterion erf ]; 24254 - description = "Automatic Differentiation"; 24255 - license = lib.licenses.bsd3; 24256 - }) {}; 24257 - 24258 - "ad_4_5_1" = callPackage 24259 - ({ mkDerivation, adjunctions, array, base, comonad, containers 24260 - , criterion, data-reify, erf, free, nats, reflection, semigroups 24261 - , transformers 24262 - }: 24263 - mkDerivation { 24264 - pname = "ad"; 24265 version = "4.5.1"; 24266 sha256 = "08hx8ww93x2hg6qxfypd9hyqqcp7c70w17i6hs03qmk4i433h2b9"; 24267 libraryHaskellDepends = [ ··· 24271 benchmarkHaskellDepends = [ base criterion erf ]; 24272 description = "Automatic Differentiation"; 24273 license = lib.licenses.bsd3; 24274 - hydraPlatforms = lib.platforms.none; 24275 }) {}; 24276 24277 "ad-delcont" = callPackage ··· 24840 license = lib.licenses.bsd3; 24841 }) {}; 24842 24843 "aeson-compat" = callPackage 24844 ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base 24845 , base-compat, base-orphans, bytestring, containers, exceptions ··· 24948 license = lib.licenses.bsd3; 24949 }) {}; 24950 24951 "aeson-diff-generic" = callPackage 24952 ({ mkDerivation, aeson, aeson-diff, base, base-compat, bytestring 24953 , containers, dlist, hashable, lens, scientific, tagged ··· 36471 }: 36472 mkDerivation { 36473 pname = "aura"; 36474 - version = "3.2.8"; 36475 - sha256 = "1frvim9asp0849g7f5c1hcjkr82c9w27im479vmk6n4zzssvzach"; 36476 isLibrary = true; 36477 isExecutable = true; 36478 libraryHaskellDepends = [ ··· 45555 }: 45556 mkDerivation { 45557 pname = "bloodhound"; 45558 - version = "0.19.1.0"; 45559 - sha256 = "0vflzwc90w69c78xpjldvgywl1ykn73wzq06501lnl6bwb07ahs0"; 45560 libraryHaskellDepends = [ 45561 aeson base blaze-builder bytestring containers exceptions hashable 45562 http-client http-types mtl network-uri scientific semigroups semver ··· 45805 executablePkgconfigDepends = [ gtk2 ]; 45806 description = "full-featured tiling for the GNOME desktop environment"; 45807 license = lib.licenses.bsd3; 45808 }) {inherit (pkgs) gtk2;}; 45809 45810 "bluetileutils" = callPackage ··· 47233 license = lib.licenses.bsd3; 47234 }) {}; 47235 47236 "brick-dropdownmenu" = callPackage 47237 ({ mkDerivation, base, brick, containers, microlens, microlens-ghc 47238 , microlens-th, pointedlist, vector, vty ··· 48016 }: 48017 mkDerivation { 48018 pname = "buffer-builder-aeson"; 48019 - version = "0.2.0.4"; 48020 - sha256 = "0kjwahpx35mabmwnwfi669p1gcr43zas2f5wpaxn98p45gjpp93s"; 48021 - revision = "1"; 48022 - editedCabalFile = "112b8ir16x2dla4vm6yrdjxsi6csi8wl0193iykrvmssrybpqr89"; 48023 libraryHaskellDepends = [ 48024 aeson base buffer-builder bytestring integer-gmp scientific 48025 unordered-containers vector ··· 49246 }: 49247 mkDerivation { 49248 pname = "bytestring-conversion"; 49249 - version = "0.3.1"; 49250 - sha256 = "1y2fhwz632sp7n0iw87lz2g8vks4jgxz2kw99kysgivxfd4fmdqk"; 49251 - revision = "2"; 49252 - editedCabalFile = "1x8c42cfzb6fdvgkxxdxcpdf16csimlzsgahb1axnplmr6b3ba63"; 49253 - libraryHaskellDepends = [ 49254 - attoparsec base bytestring case-insensitive double-conversion text 49255 - ]; 49256 - testHaskellDepends = [ 49257 - base bytestring QuickCheck tasty tasty-quickcheck 49258 - ]; 49259 - benchmarkHaskellDepends = [ 49260 - base bytestring criterion text transformers 49261 - ]; 49262 - description = "Type-classes to convert values to and from ByteString"; 49263 - license = lib.licenses.mpl20; 49264 - }) {}; 49265 - 49266 - "bytestring-conversion_0_3_2" = callPackage 49267 - ({ mkDerivation, attoparsec, base, bytestring, case-insensitive 49268 - , criterion, double-conversion, QuickCheck, tasty, tasty-quickcheck 49269 - , text, transformers 49270 - }: 49271 - mkDerivation { 49272 - pname = "bytestring-conversion"; 49273 version = "0.3.2"; 49274 sha256 = "0ls1jqf4r2hk0mcxmlviw6vgs0cn1db99w2fggsg6x39pi31rk8c"; 49275 libraryHaskellDepends = [ ··· 49283 ]; 49284 description = "Type-classes to convert values to and from ByteString"; 49285 license = lib.licenses.mpl20; 49286 - hydraPlatforms = lib.platforms.none; 49287 }) {}; 49288 49289 "bytestring-csv" = callPackage ··· 50441 pname = "cabal-doctest"; 50442 version = "1.0.9"; 50443 sha256 = "0wxs0xkspc80h0g8ks792lrzldxvcnhc9rja1j0k678ijs20hmjm"; 50444 libraryHaskellDepends = [ base Cabal directory filepath ]; 50445 description = "A Setup.hs helper for running doctests"; 50446 license = lib.licenses.bsd3; ··· 50651 pname = "cabal-info"; 50652 version = "0.2.1"; 50653 sha256 = "1gf4f80964l9mj53rn0anciz6p0035lrcc0lxbnh5dgh3iiap14l"; 50654 isLibrary = true; 50655 isExecutable = true; 50656 libraryHaskellDepends = [ ··· 51265 pname = "cabal2nix"; 51266 version = "2.18.0"; 51267 sha256 = "11hzic1l7amd2hwqwgfmy2r855z9w0m2rvvx7r52x347q0nn142b"; 51268 isLibrary = true; 51269 isExecutable = true; 51270 libraryHaskellDepends = [ ··· 54232 pname = "cborg"; 54233 version = "0.2.7.0"; 54234 sha256 = "076656vq2qabhdnwzifc5gsj20vwh69vhy19dh0qa1f2lqxrzfvq"; 54235 libraryHaskellDepends = [ 54236 array base bytestring containers deepseq ghc-bignum ghc-prim half 54237 primitive text ··· 54537 pname = "cereal"; 54538 version = "0.5.8.2"; 54539 sha256 = "0kvnlm22qdmb7g2jz7imsvh799q4nvms1ni0cbba5vigp5ai64hp"; 54540 libraryHaskellDepends = [ 54541 array base bytestring containers ghc-prim 54542 ]; ··· 58235 }: 58236 mkDerivation { 58237 pname = "cleff"; 58238 - version = "0.3.2.0"; 58239 - sha256 = "0ayvywkd88p5frr41405jz82zya31jslbzxzln2x01maibjyyf2h"; 58240 libraryHaskellDepends = [ 58241 atomic-primops base containers exceptions microlens monad-control 58242 primitive template-haskell th-abstraction transformers-base ··· 61308 license = lib.licenses.bsd3; 61309 }) {}; 61310 61311 "comfort-array-shape" = callPackage 61312 ({ mkDerivation, base, ChasingBottoms, comfort-array, containers 61313 , doctest-exitcode-stdio, doctest-lib, fixed-length, non-empty ··· 62114 description = "Parse a Pandoc to a composite value"; 62115 license = lib.licenses.mit; 62116 hydraPlatforms = lib.platforms.none; 62117 }) {}; 62118 62119 "compdoc-dhall-decoder" = callPackage ··· 62358 }: 62359 mkDerivation { 62360 pname = "composite-aeson"; 62361 - version = "0.7.5.0"; 62362 - sha256 = "0cxsjk3zwkhwb3bgq2ji1mvvapcwxzg333z7zfdv9ba3xgw3ngq0"; 62363 libraryHaskellDepends = [ 62364 aeson aeson-better-errors base composite-base containers 62365 contravariant generic-deriving hashable lens mmorph mtl profunctors ··· 62374 ]; 62375 description = "JSON for Vinyl records"; 62376 license = lib.licenses.bsd3; 62377 - hydraPlatforms = lib.platforms.none; 62378 - broken = true; 62379 }) {}; 62380 62381 "composite-aeson-cofree-list" = callPackage ··· 62391 ]; 62392 description = "Print a Cofree [] as a JSON value"; 62393 license = lib.licenses.mit; 62394 - hydraPlatforms = lib.platforms.none; 62395 }) {}; 62396 62397 "composite-aeson-path" = callPackage 62398 ({ mkDerivation, base, composite-aeson, path }: 62399 mkDerivation { 62400 pname = "composite-aeson-path"; 62401 - version = "0.7.5.0"; 62402 - sha256 = "0b013jpdansx6fmxq1sf33975vvnajhs870a92i1lwd2k2wsj600"; 62403 libraryHaskellDepends = [ base composite-aeson path ]; 62404 description = "Formatting data for the path library"; 62405 license = lib.licenses.bsd3; 62406 hydraPlatforms = lib.platforms.none; 62407 }) {}; 62408 62409 "composite-aeson-refined" = callPackage ··· 62412 }: 62413 mkDerivation { 62414 pname = "composite-aeson-refined"; 62415 - version = "0.7.5.0"; 62416 - sha256 = "05iakig5cqy4zkfl1kvjf9ck7gw5m7bdlcwwnv0kc5znyj66fbif"; 62417 libraryHaskellDepends = [ 62418 aeson-better-errors base composite-aeson mtl refined 62419 ]; 62420 description = "composite-aeson support for Refined from the refined package"; 62421 license = lib.licenses.bsd3; 62422 - hydraPlatforms = lib.platforms.none; 62423 }) {}; 62424 62425 "composite-aeson-throw" = callPackage ··· 62435 ]; 62436 description = "MonadThrow behaviour for composite-aeson"; 62437 license = lib.licenses.mit; 62438 - hydraPlatforms = lib.platforms.none; 62439 }) {}; 62440 62441 "composite-aeson-writeonly" = callPackage ··· 62450 ]; 62451 description = "WriteOnly indicators for composite-aeson"; 62452 license = lib.licenses.mit; 62453 - hydraPlatforms = lib.platforms.none; 62454 }) {}; 62455 62456 "composite-base" = callPackage ··· 62460 }: 62461 mkDerivation { 62462 pname = "composite-base"; 62463 - version = "0.7.5.0"; 62464 - sha256 = "12qaxm20kn2cf6d19xargxfg8jrvb5ix0glm3ba0641plxlssqrq"; 62465 libraryHaskellDepends = [ 62466 base deepseq exceptions lens monad-control mtl profunctors 62467 template-haskell text transformers transformers-base unliftio-core ··· 62480 ({ mkDerivation, base, binary, composite-base }: 62481 mkDerivation { 62482 pname = "composite-binary"; 62483 - version = "0.7.5.0"; 62484 - sha256 = "0pvmmb4m6ysgj468khmggvsgs5c0hjmcn46s0wam353abdw89i7m"; 62485 libraryHaskellDepends = [ base binary composite-base ]; 62486 description = "Orphan binary instances"; 62487 license = lib.licenses.bsd3; ··· 62504 ]; 62505 description = "Csv parsing functionality for composite"; 62506 license = lib.licenses.mit; 62507 }) {}; 62508 62509 "composite-dhall" = callPackage ··· 62520 ]; 62521 description = "Dhall instances for composite records"; 62522 license = lib.licenses.mit; 62523 }) {}; 62524 62525 "composite-ekg" = callPackage ··· 62534 ]; 62535 description = "EKG Metrics for Vinyl records"; 62536 license = lib.licenses.bsd3; 62537 }) {}; 62538 62539 "composite-hashable" = callPackage 62540 ({ mkDerivation, base, composite-base, hashable }: 62541 mkDerivation { 62542 pname = "composite-hashable"; 62543 - version = "0.7.5.0"; 62544 - sha256 = "1s4bnlr08fb1sszys1frkxrjrsi61jpcldh126mcwzlf6wlvqvjn"; 62545 libraryHaskellDepends = [ base composite-base hashable ]; 62546 description = "Orphan hashable instances"; 62547 license = lib.licenses.bsd3; ··· 62555 pname = "composite-ix"; 62556 version = "0.0.1.0"; 62557 sha256 = "0kyy3fm1z9w2mwrhwn3gz5hpvykzsnij0rrsqi2fh3gd1dsxgc6c"; 62558 libraryHaskellDepends = [ 62559 base composite-base containers lens nonempty-containers vector 62560 vinyl ··· 62572 libraryHaskellDepends = [ base composite-base lens vinyl ]; 62573 description = "Extra lens functions for composite"; 62574 license = lib.licenses.mit; 62575 }) {}; 62576 62577 "composite-opaleye" = callPackage ··· 62581 }: 62582 mkDerivation { 62583 pname = "composite-opaleye"; 62584 - version = "0.7.5.0"; 62585 - sha256 = "1qmlhn1lj2l5qpykxdg23axvxwn8l2pvzvwqn261rj21qj90k093"; 62586 libraryHaskellDepends = [ 62587 base bytestring composite-base lens opaleye postgresql-simple 62588 product-profunctors profunctors template-haskell text vinyl ··· 62605 }: 62606 mkDerivation { 62607 pname = "composite-swagger"; 62608 - version = "0.7.5.0"; 62609 - sha256 = "1b6bcw7gq2smghp7mnkh9gymn3mh4b1xxkv97zhxjsb91wnmvyml"; 62610 libraryHaskellDepends = [ 62611 base composite-base insert-ordered-containers lens swagger2 62612 template-haskell text vinyl ··· 62617 ]; 62618 description = "Swagger for Vinyl records"; 62619 license = lib.licenses.bsd3; 62620 - hydraPlatforms = lib.platforms.none; 62621 }) {}; 62622 62623 "composite-tuple" = callPackage ··· 63329 }: 63330 mkDerivation { 63331 pname = "concurrent-output"; 63332 - version = "1.10.15"; 63333 - sha256 = "1n02ck0zci6y2w8dm03j2qypgbc176skapixrmnxrp9dnbwcprc0"; 63334 libraryHaskellDepends = [ 63335 ansi-terminal async base directory exceptions process stm 63336 terminal-size text transformers unix ··· 63750 license = lib.licenses.mit; 63751 }) {}; 63752 63753 "conduit-connection" = callPackage 63754 ({ mkDerivation, base, bytestring, conduit, connection, HUnit 63755 , network, resourcet, test-framework, test-framework-hunit ··· 64695 }: 64696 mkDerivation { 64697 pname = "configurator-pg"; 64698 - version = "0.2.5"; 64699 - sha256 = "1wmdg9zxfz8vhhsq5rraynhrhqc8fjrdhfrky2mfajzbp8dpaqsm"; 64700 libraryHaskellDepends = [ 64701 base containers megaparsec protolude scientific text 64702 ]; ··· 65190 }: 65191 mkDerivation { 65192 pname = "constraints"; 65193 - version = "0.13.3"; 65194 - sha256 = "0jhdix263zxsiki0pmdpyrg7vcfxx2x9w7pjiypva3wsr9agdjzr"; 65195 - libraryHaskellDepends = [ 65196 - base binary deepseq ghc-prim hashable mtl transformers 65197 - transformers-compat type-equality 65198 - ]; 65199 - testHaskellDepends = [ base hspec ]; 65200 - testToolDepends = [ hspec-discover ]; 65201 - description = "Constraint manipulation"; 65202 - license = lib.licenses.bsd2; 65203 - }) {}; 65204 - 65205 - "constraints_0_13_4" = callPackage 65206 - ({ mkDerivation, base, binary, deepseq, ghc-prim, hashable, hspec 65207 - , hspec-discover, mtl, transformers, transformers-compat 65208 - , type-equality 65209 - }: 65210 - mkDerivation { 65211 - pname = "constraints"; 65212 version = "0.13.4"; 65213 sha256 = "0d248szyp70k1qlivsimk0j5vz9hdx1alhismry5v35qyinr91j1"; 65214 libraryHaskellDepends = [ ··· 65219 testToolDepends = [ hspec-discover ]; 65220 description = "Constraint manipulation"; 65221 license = lib.licenses.bsd2; 65222 - hydraPlatforms = lib.platforms.none; 65223 }) {}; 65224 65225 "constraints-deriving" = callPackage ··· 66293 license = lib.licenses.bsd3; 66294 }) {}; 66295 66296 "convertible-ascii" = callPackage 66297 ({ mkDerivation, ascii, base, base-unicode-symbols, blaze-builder 66298 , bytestring, convertible-text, failure, text ··· 66713 }: 66714 mkDerivation { 66715 pname = "core-telemetry"; 66716 - version = "0.2.0.1"; 66717 - sha256 = "1l302ncnv1w3p84v16acxvkyr6kvrr6385i7qdrmqi0a8yfwizb0"; 66718 libraryHaskellDepends = [ 66719 async base bytestring chronologique core-data core-program 66720 core-text exceptions http-streams io-streams mtl network-info ··· 66781 }: 66782 mkDerivation { 66783 pname = "core-webserver-warp"; 66784 - version = "0.1.1.4"; 66785 - sha256 = "03jsb8x41v62l065lkdy2zr6cwk80l84ai6lnbwxf1472f5p7619"; 66786 libraryHaskellDepends = [ 66787 async base bytestring core-data core-program core-telemetry 66788 core-text http-types http2 mtl safe-exceptions vault wai warp ··· 70134 }: 70135 mkDerivation { 70136 pname = "cue-sheet"; 70137 - version = "2.0.1"; 70138 - sha256 = "0papll3xcq2ipmya61jr71gf3zx2swmys829x5sbz7lv6abj9r3i"; 70139 - revision = "3"; 70140 - editedCabalFile = "1v8yvvb9sdpkg7m6z5a4sf0hcss7swb318700ap0qc79qn4ifdqb"; 70141 enableSeparateDataOutput = true; 70142 libraryHaskellDepends = [ 70143 base bytestring containers exceptions megaparsec mtl QuickCheck ··· 79229 }: 79230 mkDerivation { 79231 pname = "dino"; 79232 - version = "0.1.2"; 79233 - sha256 = "0sk7p89fmjynykk7djfn8cmmjrqyv5pml9ny2dycr1n86cnxr88x"; 79234 libraryHaskellDepends = [ 79235 ansi-wl-pprint base containers errors exceptions hashable 79236 monad-loops mtl text transformers tree-view unordered-containers ··· 80812 maintainers = with lib.maintainers; [ peti ]; 80813 }) {}; 80814 80815 "distribution-opensuse" = callPackage 80816 ({ mkDerivation, aeson, base, binary, bytestring, containers 80817 , deepseq, Diff, extra, foldl, hashable, hsemail, mtl, parsec-class ··· 81005 ({ mkDerivation, base, containers, mtl, pretty }: 81006 mkDerivation { 81007 pname = "djinn-lib"; 81008 - version = "0.0.1.3"; 81009 - sha256 = "0r1kby67flpyizj117r5q0q3sj61csqxd44za5r9292hj3cacd9v"; 81010 - revision = "1"; 81011 - editedCabalFile = "0zz4q631wpxdm4h499j0m1kin4n1ahnwzb0x2jh6vd463i89xlbk"; 81012 libraryHaskellDepends = [ base containers mtl pretty ]; 81013 description = "Generate Haskell code from a type. Library extracted from djinn package."; 81014 license = lib.licenses.bsd3; ··· 82084 broken = true; 82085 }) {}; 82086 82087 "doctest-prop" = callPackage 82088 ({ mkDerivation, base, doctest, HUnit, QuickCheck }: 82089 mkDerivation { ··· 82670 libraryHaskellDepends = [ base ]; 82671 description = ".NET TimeSpan"; 82672 license = lib.licenses.bsd3; 82673 }) {}; 82674 82675 "double-conversion" = callPackage ··· 86269 pname = "ekg-core"; 86270 version = "0.1.1.7"; 86271 sha256 = "04nv6iwzrb63fs97ixb0amj8p6zhabg3ggbrg4nbkq7xjhmkz0a5"; 86272 - revision = "1"; 86273 - editedCabalFile = "17rfxsns0za7jqp3069mwp0lbd433gwb7lrnla02y7hfxbpnldf4"; 86274 libraryHaskellDepends = [ 86275 base containers ghc-prim text unordered-containers 86276 ]; ··· 88686 license = lib.licenses.bsd3; 88687 }) {}; 88688 88689 "erd" = callPackage 88690 ({ mkDerivation, base, bytestring, containers, directory, filepath 88691 , gitrev, graphviz, parsec, raw-strings-qq, tasty, tasty-hunit ··· 89034 pname = "errors"; 89035 version = "2.3.0"; 89036 sha256 = "0x8znwn31qcx6kqx99wp7bc86kckfb39ncz3zxvj1s07kxlfawk7"; 89037 - revision = "2"; 89038 - editedCabalFile = "1x1bhmkx7zxwdfassc9ypl9d319p6f14rv6d3mjgvac7nxfbq245"; 89039 libraryHaskellDepends = [ 89040 base exceptions safe text transformers transformers-compat 89041 ]; ··· 89096 }: 89097 mkDerivation { 89098 pname = "ersatz"; 89099 - version = "0.4.10"; 89100 - sha256 = "1pklw9zhpxkm5yhkdlw78c2324ffk8n5pqkvicxh0x0ha852fs7y"; 89101 - isLibrary = true; 89102 - isExecutable = true; 89103 - enableSeparateDataOutput = true; 89104 - libraryHaskellDepends = [ 89105 - array attoparsec base bytestring containers data-default lens mtl 89106 - process semigroups streams temporary transformers 89107 - unordered-containers 89108 - ]; 89109 - executableHaskellDepends = [ 89110 - array base containers fail lens mtl parsec semigroups 89111 - ]; 89112 - testHaskellDepends = [ array base ]; 89113 - description = "A monad for expressing SAT or QSAT problems using observable sharing"; 89114 - license = lib.licenses.bsd3; 89115 - hydraPlatforms = lib.platforms.none; 89116 - broken = true; 89117 - }) {}; 89118 - 89119 - "ersatz_0_4_11" = callPackage 89120 - ({ mkDerivation, array, attoparsec, base, bytestring, containers 89121 - , data-default, fail, lens, mtl, parsec, process, semigroups 89122 - , streams, temporary, transformers, unordered-containers 89123 - }: 89124 - mkDerivation { 89125 - pname = "ersatz"; 89126 version = "0.4.11"; 89127 sha256 = "0zaw5a4za77xa1h8msg5v9hk6m215ykl3c258kgk519yvrfavyi3"; 89128 isLibrary = true; ··· 92086 }: 92087 mkDerivation { 92088 pname = "extensible"; 92089 - version = "0.8.3"; 92090 - sha256 = "1cwh7a6mipyh4a7vs1394wmmbm1ms5cs9snl5nd1mg1v455ykcmb"; 92091 libraryHaskellDepends = [ 92092 aeson base bytestring cassava comonad constraints deepseq ghc-prim 92093 hashable incremental membership prettyprinter primitive profunctors ··· 94015 license = lib.licenses.gpl3Only; 94016 }) {}; 94017 94018 - "fedora-dists_2_1_0" = callPackage 94019 ({ mkDerivation, aeson, base, cached-json-file, pdc, text }: 94020 mkDerivation { 94021 pname = "fedora-dists"; 94022 - version = "2.1.0"; 94023 - sha256 = "040qn1fbc3iss4p5svcsy5crpcs2x38y6ns3wf1zjx05lz40gb07"; 94024 libraryHaskellDepends = [ aeson base cached-json-file pdc text ]; 94025 description = "Library for Fedora distribution versions"; 94026 license = lib.licenses.gpl3Only; ··· 96261 license = "unknown"; 96262 }) {}; 96263 96264 "fixed" = callPackage 96265 ({ mkDerivation, base }: 96266 mkDerivation { ··· 96945 "flatparse" = callPackage 96946 ({ mkDerivation, attoparsec, base, bytestring, containers, gauge 96947 , hspec, HUnit, integer-gmp, megaparsec, parsec, primitive 96948 - , template-haskell 96949 }: 96950 mkDerivation { 96951 pname = "flatparse"; 96952 - version = "0.3.2.0"; 96953 - sha256 = "0jnf1sxd39xd2jry2p7d9sj29ym0bs4wb3yskl9sjwa6ssck4vdq"; 96954 libraryHaskellDepends = [ 96955 base bytestring containers integer-gmp template-haskell 96956 ]; 96957 - testHaskellDepends = [ base bytestring hspec HUnit ]; 96958 benchmarkHaskellDepends = [ 96959 attoparsec base bytestring gauge integer-gmp megaparsec parsec 96960 primitive ··· 98199 }: 98200 mkDerivation { 98201 pname = "folds"; 98202 - version = "0.7.7"; 98203 - sha256 = "1hggk92i61f3nxcjdxvgs3b8am3jypig09s9wqwrwzaclx0mk5sh"; 98204 - configureFlags = [ "-f-test-hlint" ]; 98205 - libraryHaskellDepends = [ 98206 - adjunctions base bifunctors comonad constraints contravariant 98207 - data-reify distributive lens mtl pointed profunctors reflection 98208 - semigroupoids transformers unordered-containers vector 98209 - ]; 98210 - description = "Beautiful Folding"; 98211 - license = lib.licenses.bsd3; 98212 - }) {}; 98213 - 98214 - "folds_0_7_8" = callPackage 98215 - ({ mkDerivation, adjunctions, base, bifunctors, comonad 98216 - , constraints, contravariant, data-reify, distributive, lens, mtl 98217 - , pointed, profunctors, reflection, semigroupoids, transformers 98218 - , unordered-containers, vector 98219 - }: 98220 - mkDerivation { 98221 - pname = "folds"; 98222 version = "0.7.8"; 98223 sha256 = "11278546mq05rhyjfmhg0iasqjsn898l44dhp5qgaw1zwzywir2i"; 98224 configureFlags = [ "-f-test-hlint" ]; ··· 98229 ]; 98230 description = "Beautiful Folding"; 98231 license = lib.licenses.bsd3; 98232 - hydraPlatforms = lib.platforms.none; 98233 }) {}; 98234 98235 "folds-common" = callPackage ··· 99515 }) {}; 99516 99517 "freckle-app" = callPackage 99518 - ({ mkDerivation, aeson, ansi-terminal, base, bytestring 99519 , case-insensitive, conduit, containers, data-default, datadog 99520 , directory, doctest, ekg-core, errors, exceptions, fast-logger 99521 , filepath, Glob, hashable, hspec, hspec-core 99522 , hspec-expectations-lifted, hspec-junit-formatter, http-client 99523 , http-conduit, http-link-header, http-types, immortal, iproute 99524 - , lens, lens-aeson, load-env, monad-control, monad-logger 99525 , MonadRandom, mtl, network, network-uri, persistent 99526 , persistent-postgresql, postgresql-simple, primitive, process 99527 - , resource-pool, retry, rio, safe, semigroupoids, template-haskell 99528 - , temporary, text, time, transformers, transformers-base, unliftio 99529 - , unordered-containers, vector, wai, wai-extra, yaml, yesod 99530 - , yesod-core 99531 }: 99532 mkDerivation { 99533 pname = "freckle-app"; 99534 - version = "1.0.2.10"; 99535 - sha256 = "05y2b4lfc0wxygjrvjlw3nfl9s1x9km095k2vzj57mb58zkr3kyv"; 99536 libraryHaskellDepends = [ 99537 - aeson ansi-terminal base bytestring case-insensitive conduit 99538 - containers data-default datadog doctest ekg-core errors exceptions 99539 - fast-logger filepath Glob hashable hspec hspec-core 99540 hspec-expectations-lifted hspec-junit-formatter http-client 99541 http-conduit http-link-header http-types immortal iproute lens 99542 - load-env monad-control monad-logger MonadRandom mtl network 99543 - network-uri persistent persistent-postgresql postgresql-simple 99544 - primitive process resource-pool retry rio safe semigroupoids 99545 - template-haskell text time transformers transformers-base unliftio 99546 - unordered-containers vector wai wai-extra yaml yesod yesod-core 99547 ]; 99548 testHaskellDepends = [ 99549 - aeson base bytestring directory hspec http-types lens lens-aeson 99550 - process temporary text time wai wai-extra 99551 ]; 99552 description = "Haskell application toolkit used at Freckle"; 99553 license = lib.licenses.mit; ··· 102119 }: 102120 mkDerivation { 102121 pname = "fuzzyset"; 102122 - version = "0.2.2"; 102123 - sha256 = "1153xv53l6khw7yy36pfaf7pmmlwpg4ig7ywk4rxj375janlg1g8"; 102124 - libraryHaskellDepends = [ 102125 - base data-default text text-metrics unordered-containers vector 102126 - ]; 102127 - testHaskellDepends = [ 102128 - base data-default hspec ieee754 text text-metrics 102129 - unordered-containers vector 102130 - ]; 102131 - description = "Fuzzy set for approximate string matching"; 102132 - license = lib.licenses.bsd3; 102133 - }) {}; 102134 - 102135 - "fuzzyset_0_2_3" = callPackage 102136 - ({ mkDerivation, base, data-default, hspec, ieee754, text 102137 - , text-metrics, unordered-containers, vector 102138 - }: 102139 - mkDerivation { 102140 - pname = "fuzzyset"; 102141 version = "0.2.3"; 102142 sha256 = "02rc846kfrkd0gd3j37gkmf87z09rzfa9bz2f0i2b83mh8ppk1sl"; 102143 libraryHaskellDepends = [ ··· 102149 ]; 102150 description = "Fuzzy set for approximate string matching"; 102151 license = lib.licenses.bsd3; 102152 - hydraPlatforms = lib.platforms.none; 102153 }) {}; 102154 102155 "fuzzytime" = callPackage ··· 106167 license = lib.licenses.bsd3; 106168 }) {}; 106169 106170 - "ghc-lib_9_2_2_20220307" = callPackage 106171 ({ mkDerivation, alex, array, base, binary, bytestring, containers 106172 , deepseq, directory, exceptions, filepath, ghc-lib-parser 106173 , ghc-prim, happy, hpc, parsec, pretty, process, rts, time ··· 106175 }: 106176 mkDerivation { 106177 pname = "ghc-lib"; 106178 - version = "9.2.2.20220307"; 106179 - sha256 = "0hcm4px40791rnfxaxmkwaydgsp43vnka02jj3bq57jylklvr0y4"; 106180 enableSeparateDataOutput = true; 106181 libraryHaskellDepends = [ 106182 array base binary bytestring containers deepseq directory ··· 106229 license = lib.licenses.bsd3; 106230 }) {}; 106231 106232 - "ghc-lib-parser_9_2_2_20220307" = callPackage 106233 ({ mkDerivation, alex, array, base, binary, bytestring, containers 106234 , deepseq, directory, exceptions, filepath, ghc-prim, happy, parsec 106235 , pretty, process, time, transformers, unix 106236 }: 106237 mkDerivation { 106238 pname = "ghc-lib-parser"; 106239 - version = "9.2.2.20220307"; 106240 - sha256 = "123bkxir6qrhyxjzlv3vm1p8wiah24i1r4ary79lhp14phyv5x46"; 106241 enableSeparateDataOutput = true; 106242 libraryHaskellDepends = [ 106243 array base binary bytestring containers deepseq directory ··· 106290 license = lib.licenses.bsd3; 106291 }) {}; 106292 106293 - "ghc-lib-parser-ex_9_2_0_3" = callPackage 106294 ({ mkDerivation, base, bytestring, containers, directory, extra 106295 , filepath, ghc-lib-parser, tasty, tasty-hunit, uniplate 106296 }: 106297 mkDerivation { 106298 pname = "ghc-lib-parser-ex"; 106299 - version = "9.2.0.3"; 106300 - sha256 = "178cgr279716gpnlsky99qasmk9jma2jdsk8xfnhk6ibm1p5gfbv"; 106301 libraryHaskellDepends = [ 106302 base bytestring containers ghc-lib-parser uniplate 106303 ]; ··· 106552 }: 106553 mkDerivation { 106554 pname = "ghc-prof"; 106555 - version = "1.4.1.9"; 106556 - sha256 = "1m7pwrwf45hc8nscl9kzzw9n0blnfpx7dl38kv8hvshaqbbg0v4q"; 106557 - isLibrary = true; 106558 - isExecutable = true; 106559 - libraryHaskellDepends = [ 106560 - attoparsec base containers scientific text time 106561 - ]; 106562 - testHaskellDepends = [ 106563 - attoparsec base containers directory filepath process tasty 106564 - tasty-hunit temporary text 106565 - ]; 106566 - description = "Library for parsing GHC time and allocation profiling reports"; 106567 - license = lib.licenses.bsd3; 106568 - hydraPlatforms = lib.platforms.none; 106569 - broken = true; 106570 - }) {}; 106571 - 106572 - "ghc-prof_1_4_1_11" = callPackage 106573 - ({ mkDerivation, attoparsec, base, containers, directory, filepath 106574 - , process, scientific, tasty, tasty-hunit, temporary, text, time 106575 - }: 106576 - mkDerivation { 106577 - pname = "ghc-prof"; 106578 version = "1.4.1.11"; 106579 sha256 = "1i6a3dx9ml8r4q8rvap7rw3qhvksgaws1hzna34ldpkwh6b7kfxy"; 106580 isLibrary = true; ··· 109337 }: 109338 mkDerivation { 109339 pname = "git-annex"; 109340 - version = "10.20220504"; 109341 - sha256 = "10pp58b7glwi1yckrij49d1iq99pc4dpkkbkb1qqiif9dr9672f3"; 109342 configureFlags = [ 109343 "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" 109344 "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" ··· 109899 pname = "github"; 109900 version = "0.28"; 109901 sha256 = "142l0zff852606hkpvkhvagp6h3ziq2z2x7x2pa77q5ymyq48089"; 109902 libraryHaskellDepends = [ 109903 aeson base base-compat base16-bytestring binary binary-instances 109904 bytestring containers cryptohash-sha1 deepseq deepseq-generics ··· 110648 description = "Binding to the glade library"; 110649 license = lib.licenses.lgpl21Only; 110650 hydraPlatforms = lib.platforms.none; 110651 }) {inherit (pkgs.gnome2) libglade;}; 110652 110653 "gladexml-accessor" = callPackage ··· 110659 libraryHaskellDepends = [ base glade HaXml template-haskell ]; 110660 description = "Automagically declares getters for widget handles in specified interface file"; 110661 license = lib.licenses.bsd3; 110662 }) {}; 110663 110664 "glambda" = callPackage ··· 110925 "glirc" = callPackage 110926 ({ mkDerivation, async, attoparsec, base, base64-bytestring 110927 , bytestring, Cabal, config-schema, config-value, containers 110928 , curve25519, directory, filepath, free, githash, hashable, hookup 110929 , HsOpenSSL, HUnit, irc-core, kan-extensions, lens, network 110930 , process, psqueues, random, regex-tdfa, split, stm ··· 110951 license = lib.licenses.isc; 110952 hydraPlatforms = lib.platforms.none; 110953 maintainers = with lib.maintainers; [ kiwi ]; 110954 - broken = true; 110955 }) {}; 110956 110957 "gll" = callPackage ··· 116964 }) {}; 116965 116966 "grow-vector" = callPackage 116967 - ({ mkDerivation, base, primitive, quickcheck-instances, tasty 116968 - , tasty-discover, tasty-hspec, tasty-quickcheck, vector 116969 }: 116970 mkDerivation { 116971 pname = "grow-vector"; 116972 - version = "0.1.3.0"; 116973 - sha256 = "13b75yghy6nksga98wn8gc9b2198g4pqrm52hrldryyf4v83zadg"; 116974 enableSeparateDataOutput = true; 116975 libraryHaskellDepends = [ base primitive vector ]; 116976 testHaskellDepends = [ 116977 - base primitive quickcheck-instances tasty tasty-discover 116978 tasty-hspec tasty-quickcheck 116979 ]; 116980 testToolDepends = [ tasty-discover ]; ··· 117213 }: 117214 mkDerivation { 117215 pname = "gsmenu"; 117216 - version = "3.0"; 117217 - sha256 = "15ddm69fmk0nkkrs5g80amdvld2mq59ah58nbnk83mwkffpi484f"; 117218 isLibrary = false; 117219 isExecutable = true; 117220 executableHaskellDepends = [ ··· 117566 ]; 117567 description = "A type class for cast functions of Gtk2hs: glade package"; 117568 license = "unknown"; 117569 }) {}; 117570 117571 "gtk2hs-cast-glib" = callPackage ··· 119282 pname = "hackage-security"; 119283 version = "0.6.2.1"; 119284 sha256 = "1a349ma9ijypjzgj7xgkkr6rd8k49crdgx330h9vgmp7vlbcs8mz"; 119285 - revision = "1"; 119286 - editedCabalFile = "0vhwszqngng5vxf2dpn1fdai59s8c7jh6p04jf983y9rzbic6d7b"; 119287 libraryHaskellDepends = [ 119288 base base16-bytestring base64-bytestring bytestring Cabal 119289 Cabal-syntax containers cryptohash-sha256 directory ed25519 ··· 120794 license = lib.licenses.bsd3; 120795 }) {}; 120796 120797 "halberd" = callPackage 120798 ({ mkDerivation, base, Cabal, containers, haskell-names 120799 , haskell-packages, haskell-src-exts, HUnit, mtl, safe, split, syb ··· 124972 pname = "haskell-src"; 124973 version = "1.0.4"; 124974 sha256 = "1spkhv83hy5v1lxs44l3w53vk8zj7gnx42c40hrkj4fcz6apdiwb"; 124975 libraryHaskellDepends = [ array base pretty syb ]; 124976 libraryToolDepends = [ happy ]; 124977 description = "Support for manipulating Haskell source code"; ··· 125115 }: 125116 mkDerivation { 125117 pname = "haskell-src-meta"; 125118 - version = "0.8.9"; 125119 - sha256 = "0y3hnqg33pqzc66nl58va8lvwvmb0mx5q0p9r55i6cc3xwjahiyx"; 125120 libraryHaskellDepends = [ 125121 base haskell-src-exts pretty syb template-haskell th-orphans 125122 ]; ··· 125671 }: 125672 mkDerivation { 125673 pname = "haskell-xmpp"; 125674 - version = "2.0.1"; 125675 - sha256 = "0x06a43h930ad17shvc8iwibkpgbfk6lkkr9mnp0xnwaf6kzrf47"; 125676 isLibrary = true; 125677 isExecutable = true; 125678 libraryHaskellDepends = [ ··· 129047 platforms = [ 129048 "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 129049 ]; 129050 }) {}; 129051 129052 base bytestring containers data-accessor MissingH polyparse text ··· 129082 platforms = [ 129083 "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 129084 ]; 129085 }) {}; 129086 129087 base bytestring containers data-accessor MissingH polyparse text ··· 129302 ({ mkDerivation }: 129303 mkDerivation { 129304 base bytestring containers data-accessor MissingH polyparse text 129305 - version = "0.0.0.2"; 129306 - base bytestring containers data-accessor MissingH polyparse text 129307 doHaddock = false; 129308 description = "Haskell COM support library"; 129309 license = lib.licenses.bsd3; ··· 130351 base bytestring containers data-accessor MissingH polyparse text 130352 version = "1.1.1"; 130353 base bytestring containers data-accessor MissingH polyparse text 130354 - revision = "1"; 130355 - base bytestring containers data-accessor MissingH polyparse text 130356 libraryHaskellDepends = [ 130357 base bytestring containers data-accessor MissingH polyparse text 130358 base bytestring containers data-accessor MissingH polyparse text ··· 130562 base bytestring containers data-accessor MissingH polyparse text 130563 version = "0.1.1"; 130564 base bytestring containers data-accessor MissingH polyparse text 130565 - revision = "2"; 130566 - base bytestring containers data-accessor MissingH polyparse text 130567 base bytestring containers data-accessor MissingH polyparse text 130568 base bytestring containers data-accessor MissingH polyparse text 130569 license = lib.licenses.bsd3; ··· 130914 base bytestring containers data-accessor MissingH polyparse text 130915 base bytestring containers data-accessor MissingH polyparse text 130916 base bytestring containers data-accessor MissingH polyparse text 130917 - base bytestring containers data-accessor MissingH polyparse text 130918 - base bytestring containers data-accessor MissingH polyparse text 130919 - , test-framework-hunit, test-framework-quickcheck2, text, time 130920 - base bytestring containers data-accessor MissingH polyparse text 130921 - , xmlhtml 130922 }: 130923 mkDerivation { 130924 base bytestring containers data-accessor MissingH polyparse text 130925 - version = "1.2.0.0"; 130926 - base bytestring containers data-accessor MissingH polyparse text 130927 libraryHaskellDepends = [ 130928 base bytestring containers data-accessor MissingH polyparse text 130929 base bytestring containers data-accessor MissingH polyparse text 130930 - base bytestring containers data-accessor MissingH polyparse text 130931 base bytestring containers data-accessor MissingH polyparse text 130932 ]; 130933 testHaskellDepends = [ 130934 base bytestring containers data-accessor MissingH polyparse text 130935 base bytestring containers data-accessor MissingH polyparse text 130936 - base bytestring containers data-accessor MissingH polyparse text 130937 - base bytestring containers data-accessor MissingH polyparse text 130938 - test-framework-quickcheck2 text time transformers transformers-base 130939 base bytestring containers data-accessor MissingH polyparse text 130940 ]; 130941 benchmarkHaskellDepends = [ 130942 base bytestring containers data-accessor MissingH polyparse text 130943 base bytestring containers data-accessor MissingH polyparse text 130944 - base bytestring containers data-accessor MissingH polyparse text 130945 - base bytestring containers data-accessor MissingH polyparse text 130946 - text time transformers transformers-base unordered-containers 130947 - base bytestring containers data-accessor MissingH polyparse text 130948 ]; 130949 base bytestring containers data-accessor MissingH polyparse text 130950 license = lib.licenses.bsd3; ··· 133341 pname = "hi-file-parser"; 133342 version = "0.1.2.0"; 133343 sha256 = "1jm3gbibafkw3ninvsz7f1x89xdyk6wml45mq9zb85p6m9xqlpv9"; 133344 libraryHaskellDepends = [ base binary bytestring mtl rio vector ]; 133345 testHaskellDepends = [ 133346 base binary bytestring hspec mtl rio vector ··· 133914 133915 "highlight" = callPackage 133916 ({ mkDerivation, ansi-terminal, base, base-compat, bytestring 133917 - , containers, criterion, directory, doctest, filepath, lens, mtl 133918 - , mtl-compat, optparse-applicative, pipes, pipes-bytestring 133919 - , pipes-group, pipes-safe, process, QuickCheck, regex 133920 - , regex-with-pcre, semigroups, system-filepath, tasty, tasty-golden 133921 - , text, transformers, transformers-compat, unix 133922 }: 133923 mkDerivation { 133924 pname = "highlight"; 133925 - version = "1.0.0.1"; 133926 - sha256 = "0xklv4fnhi4dbz33hzw7l4ng5ap1jfhn4qmkshl2k6gn2pkyaikx"; 133927 isLibrary = true; 133928 isExecutable = true; 133929 libraryHaskellDepends = [ ··· 133935 ]; 133936 executableHaskellDepends = [ base ]; 133937 testHaskellDepends = [ 133938 - base base-compat bytestring directory doctest lens pipes process 133939 - QuickCheck tasty tasty-golden transformers transformers-compat unix 133940 ]; 133941 benchmarkHaskellDepends = [ base criterion ]; 133942 description = "Command line tool for highlighting parts of files matching a regex"; ··· 138637 }: 138638 mkDerivation { 138639 pname = "hookup"; 138640 version = "0.7"; 138641 sha256 = "02prkwj4rj8g330z17bpjh7hpwfdvasaxsk74mcvbi03gjpydrib"; 138642 libraryHaskellDepends = [ ··· 138645 ]; 138646 description = "Abstraction over creating network connections with SOCKS5 and TLS"; 138647 license = lib.licenses.isc; 138648 }) {}; 138649 138650 "hoop" = callPackage ··· 140055 }: 140056 mkDerivation { 140057 pname = "hpqtypes"; 140058 - version = "1.9.3.1"; 140059 - sha256 = "02cinc29smiic2zc8z83h9bppsf60yp56a4cb9k4agkjqf5n2036"; 140060 - setupHaskellDepends = [ base Cabal directory filepath ]; 140061 - libraryHaskellDepends = [ 140062 - aeson async base bytestring containers exceptions lifted-base 140063 - monad-control mtl resource-pool semigroups text text-show time 140064 - transformers transformers-base uuid-types vector 140065 - ]; 140066 - librarySystemDepends = [ postgresql ]; 140067 - testHaskellDepends = [ 140068 - aeson base bytestring exceptions HUnit lifted-base monad-control 140069 - mtl QuickCheck random scientific test-framework 140070 - test-framework-hunit text text-show time transformers-base 140071 - unordered-containers uuid-types vector 140072 - ]; 140073 - description = "Haskell bindings to libpqtypes"; 140074 - license = lib.licenses.bsd3; 140075 - hydraPlatforms = lib.platforms.none; 140076 - broken = true; 140077 - }) {inherit (pkgs) postgresql;}; 140078 - 140079 - "hpqtypes_1_9_4_0" = callPackage 140080 - ({ mkDerivation, aeson, async, base, bytestring, Cabal, containers 140081 - , directory, exceptions, filepath, HUnit, lifted-base 140082 - , monad-control, mtl, postgresql, QuickCheck, random, resource-pool 140083 - , scientific, semigroups, test-framework, test-framework-hunit 140084 - , text, text-show, time, transformers, transformers-base 140085 - , unordered-containers, uuid-types, vector 140086 - }: 140087 - mkDerivation { 140088 - pname = "hpqtypes"; 140089 version = "1.9.4.0"; 140090 sha256 = "0m0jpv0d2zynhn53gbjb50sb91lxss71qnzhcy30agxvf29qpi0w"; 140091 setupHaskellDepends = [ base Cabal directory filepath ]; ··· 143203 }: 143204 mkDerivation { 143205 pname = "hsexif"; 143206 - version = "0.6.1.8"; 143207 - sha256 = "1c44j9qnld5lg8zcw3pyh56fk0r62g76qmma790mcvy4sbrcz102"; 143208 libraryHaskellDepends = [ 143209 base binary bytestring containers iconv text time 143210 ]; ··· 143427 pname = "hsini"; 143428 version = "0.5.1.2"; 143429 sha256 = "1r6qksnrmk18ndxs5zaga8b7kvmk34kp0kh5hwqmq797qrlax9pa"; 143430 - revision = "1"; 143431 - editedCabalFile = "0wkvajjgs64l4wlw8s6sn3pbwx3ni41p1260chp67a16innr1qp6"; 143432 libraryHaskellDepends = [ base bytestring containers mtl parsec ]; 143433 testHaskellDepends = [ 143434 base bytestring containers mtl parsec tasty tasty-hunit ··· 144566 pname = "hspec-core"; 144567 version = "2.7.10"; 144568 sha256 = "12k9yp5gznrda449ir60d5wv3xl7nnyffkb5mhfc0svw9f8lxlv1"; 144569 libraryHaskellDepends = [ 144570 ansi-terminal array base call-stack clock deepseq directory 144571 filepath hspec-expectations HUnit QuickCheck quickcheck-io random ··· 144595 pname = "hspec-core"; 144596 version = "2.8.5"; 144597 sha256 = "0hy3qw7qvix5899hkq96mqda2ridif2g3mwdn8sxg2wlhbcvzfjm"; 144598 libraryHaskellDepends = [ 144599 ansi-terminal array base call-stack clock deepseq directory 144600 filepath hspec-expectations HUnit QuickCheck quickcheck-io random ··· 146179 ]; 146180 description = "A two player abstract strategy game"; 146181 license = lib.licenses.bsd3; 146182 }) {}; 146183 146184 "hsubconvert" = callPackage ··· 153490 pname = "imperative-edsl"; 153491 version = "0.9"; 153492 sha256 = "0qzk3kjmjv3357dlc4fa43k4xn7xhyavmbnni0cd86zrilgxha6h"; 153493 libraryHaskellDepends = [ 153494 array base BoundedChan containers data-default-class deepseq 153495 directory exception-transformers ghc-prim language-c-quote ··· 154852 }: 154853 mkDerivation { 154854 pname = "inline-c"; 154855 - version = "0.9.1.5"; 154856 - sha256 = "0a0m3bhh910c5g46cwkxgflsgw5ab7lzymwll9hijyvwgnsw3h7i"; 154857 - isLibrary = true; 154858 - isExecutable = true; 154859 - libraryHaskellDepends = [ 154860 - ansi-wl-pprint base bytestring containers hashable mtl parsec 154861 - parsers template-haskell transformers unordered-containers vector 154862 - ]; 154863 - testHaskellDepends = [ 154864 - ansi-wl-pprint base containers hashable hspec parsers QuickCheck 154865 - raw-strings-qq regex-posix split template-haskell transformers 154866 - unordered-containers vector 154867 - ]; 154868 - description = "Write Haskell source files including C code inline. No FFI required."; 154869 - license = lib.licenses.mit; 154870 - maintainers = with lib.maintainers; [ roberth ]; 154871 - }) {}; 154872 - 154873 - "inline-c_0_9_1_6" = callPackage 154874 - ({ mkDerivation, ansi-wl-pprint, base, bytestring, containers 154875 - , hashable, hspec, mtl, parsec, parsers, QuickCheck, raw-strings-qq 154876 - , regex-posix, split, template-haskell, transformers 154877 - , unordered-containers, vector 154878 - }: 154879 - mkDerivation { 154880 - pname = "inline-c"; 154881 version = "0.9.1.6"; 154882 sha256 = "06az494fp2nh6fnibq28yw8jsrpj4jq1swyx53a328qv04cbhrym"; 154883 isLibrary = true; ··· 154893 ]; 154894 description = "Write Haskell source files including C code inline. No FFI required."; 154895 license = lib.licenses.mit; 154896 - hydraPlatforms = lib.platforms.none; 154897 maintainers = with lib.maintainers; [ roberth ]; 154898 }) {}; 154899 ··· 155108 }: 155109 mkDerivation { 155110 pname = "inspection-testing"; 155111 - version = "0.4.6.0"; 155112 - sha256 = "0qz1npyycj4bvyly9xmjbnhw569l52h38gx02rk0r7zhapw83aig"; 155113 - libraryHaskellDepends = [ 155114 - base containers ghc mtl template-haskell transformers 155115 - ]; 155116 - testHaskellDepends = [ base ]; 155117 - description = "GHC plugin to do inspection testing"; 155118 - license = lib.licenses.mit; 155119 - }) {}; 155120 - 155121 - "inspection-testing_0_4_6_1" = callPackage 155122 - ({ mkDerivation, base, containers, ghc, mtl, template-haskell 155123 - , transformers 155124 - }: 155125 - mkDerivation { 155126 - pname = "inspection-testing"; 155127 version = "0.4.6.1"; 155128 sha256 = "0mxff0v3ciccbk4b8kxnh4752fzbwn7213qd8xji0csv6gi2w83y"; 155129 libraryHaskellDepends = [ ··· 155132 testHaskellDepends = [ base ]; 155133 description = "GHC plugin to do inspection testing"; 155134 license = lib.licenses.mit; 155135 - hydraPlatforms = lib.platforms.none; 155136 }) {}; 155137 155138 "inspector-wrecker" = callPackage ··· 156052 }: 156053 mkDerivation { 156054 pname = "interval-algebra"; 156055 - version = "2.0.0"; 156056 - sha256 = "0p6zgshfcf7gh1349hwxg2zfwvzi0w7ldi9p2pmm9xkqs6q4q8dz"; 156057 libraryHaskellDepends = [ 156058 base binary containers deepseq foldl nonempty-containers 156059 prettyprinter QuickCheck safe text time witch witherable ··· 160824 broken = true; 160825 }) {}; 160826 160827 "json-syntax" = callPackage 160828 ({ mkDerivation, aeson, array-builder, array-chunks, base 160829 , bytebuild, byteslice, bytesmith, bytestring, contiguous, gauge ··· 162287 }: 162288 mkDerivation { 162289 pname = "katip"; 162290 - version = "0.8.7.1"; 162291 - sha256 = "157mc5w05j82020g0f65bdjz839fs6cd263xz5z7p00h0y576vg6"; 162292 - revision = "1"; 162293 - editedCabalFile = "0snkks2ng5bwnbm5zr615c5nlagh0vv46xfz5gb5vlx1gkgawd1r"; 162294 libraryHaskellDepends = [ 162295 aeson async auto-update base bytestring containers either hostname 162296 microlens microlens-th monad-control mtl old-locale resourcet ··· 164287 }: 164288 mkDerivation { 164289 pname = "koji-tool"; 164290 - version = "0.9"; 164291 - sha256 = "0clj5nsjpjx5z2g7gbr8qmvajicrahy42b41d582zrq1117l9gmi"; 164292 isLibrary = false; 164293 isExecutable = true; 164294 executableHaskellDepends = [ ··· 164774 }: 164775 mkDerivation { 164776 pname = "kvitable"; 164777 - version = "1.0.0.0"; 164778 - sha256 = "1p8myw0f32gb1cxzp63l4i7m6gz1l423pl40yp2jl7vfdp4kzjwz"; 164779 libraryHaskellDepends = [ 164780 base containers lucid microlens prettyprinter text 164781 ]; ··· 166158 ({ mkDerivation, base, pretty }: 166159 mkDerivation { 166160 pname = "language-c99"; 166161 - version = "0.1.3"; 166162 - sha256 = "159cy0vrnzs8kdraclia3i693kkik33dnhx5279d7l685jf3a8fz"; 166163 libraryHaskellDepends = [ base pretty ]; 166164 description = "An implementation of the C99 AST that strictly follows the standard"; 166165 license = lib.licenses.mit; ··· 166169 ({ mkDerivation, base, language-c99, language-c99-util, mtl }: 166170 mkDerivation { 166171 pname = "language-c99-simple"; 166172 - version = "0.1.2"; 166173 - sha256 = "0v0y50n2ks8jp91y37az6q46ax6dqx1igmlkb4b7c76qngak88xi"; 166174 libraryHaskellDepends = [ 166175 base language-c99 language-c99-util mtl 166176 ]; ··· 166179 }) {}; 166180 166181 "language-c99-util" = callPackage 166182 - ({ mkDerivation, base, language-c99 }: 166183 mkDerivation { 166184 pname = "language-c99-util"; 166185 - version = "0.1.1"; 166186 - sha256 = "0rdwb29d2aa9mqkn5b4acwviymxy18sjfmzr01j7n3j4n3q4d2lz"; 166187 - revision = "1"; 166188 - editedCabalFile = "0wnrdcw05zmk1flycjavdb8188qy93p6m1b6k38799ngsm78qq7k"; 166189 - libraryHaskellDepends = [ base language-c99 ]; 166190 description = "Utilities for language-c99"; 166191 license = lib.licenses.mit; 166192 }) {}; ··· 171752 }) {}; 171753 171754 "linear" = callPackage 171755 - ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes 171756 - , bytestring, cereal, containers, deepseq, distributive, ghc-prim 171757 - , hashable, HUnit, indexed-traversable, lens, random, reflection 171758 - , semigroupoids, semigroups, simple-reflect, tagged 171759 - , template-haskell, test-framework, test-framework-hunit 171760 - , transformers, transformers-compat, unordered-containers, vector 171761 - , void 171762 - }: 171763 - mkDerivation { 171764 - pname = "linear"; 171765 - version = "1.21.8"; 171766 - sha256 = "0m2lr86l932rn2cnxaplaicfbg7makhrh8xbnj3m8jhhnyn3v88b"; 171767 - libraryHaskellDepends = [ 171768 - adjunctions base base-orphans binary bytes cereal containers 171769 - deepseq distributive ghc-prim hashable indexed-traversable lens 171770 - random reflection semigroupoids semigroups tagged template-haskell 171771 - transformers transformers-compat unordered-containers vector void 171772 - ]; 171773 - testHaskellDepends = [ 171774 - base binary bytestring deepseq HUnit reflection simple-reflect 171775 - test-framework test-framework-hunit vector 171776 - ]; 171777 - description = "Linear Algebra"; 171778 - license = lib.licenses.bsd3; 171779 - }) {}; 171780 - 171781 - "linear_1_21_9" = callPackage 171782 ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes 171783 , bytestring, cereal, containers, deepseq, distributive, ghc-prim 171784 , hashable, HUnit, indexed-traversable, lens, random, reflection ··· 171803 ]; 171804 description = "Linear Algebra"; 171805 license = lib.licenses.bsd3; 171806 - hydraPlatforms = lib.platforms.none; 171807 }) {}; 171808 171809 "linear-accelerate" = callPackage ··· 173605 }: 173606 mkDerivation { 173607 pname = "little-logger"; 173608 - version = "1.0.0"; 173609 - sha256 = "1llf4x5yq1d4kn07qp3ay0lbr1sskw79ck69biwxwyv4l8d132lp"; 173610 libraryHaskellDepends = [ 173611 base microlens monad-logger mtl text unliftio-core 173612 ]; ··· 173614 base directory microlens monad-logger mtl tasty tasty-hunit 173615 temporary text unliftio-core 173616 ]; 173617 - description = "Basic logging based on co-log"; 173618 license = lib.licenses.bsd3; 173619 hydraPlatforms = lib.platforms.none; 173620 broken = true; ··· 173636 license = lib.licenses.bsd3; 173637 }) {}; 173638 173639 - "little-rio_1_0_0" = callPackage 173640 ({ mkDerivation, base, deepseq, exceptions, little-logger 173641 , microlens, microlens-mtl, mtl, primitive, resourcet 173642 , unliftio-core 173643 }: 173644 mkDerivation { 173645 pname = "little-rio"; 173646 - version = "1.0.0"; 173647 - sha256 = "179b5v53g55ihq84r5hka6bxivxj8hmqbg02spgddp5jmqaqbaw9"; 173648 libraryHaskellDepends = [ 173649 base deepseq exceptions little-logger microlens microlens-mtl mtl 173650 primitive resourcet unliftio-core ··· 176659 testHaskellDepends = [ base lucid servant text ]; 176660 description = "Use htmx in your lucid templates"; 176661 license = lib.licenses.bsd3; 176662 - hydraPlatforms = lib.platforms.none; 176663 - broken = true; 176664 }) {}; 176665 176666 "lucid-hyperscript" = callPackage ··· 176699 }: 176700 mkDerivation { 176701 pname = "lucid2"; 176702 - version = "0.0.20220509"; 176703 - sha256 = "0d38gic3xjqj5in97sbfzjb696011bl47sshzh0377md5j02yc85"; 176704 libraryHaskellDepends = [ 176705 base blaze-builder bytestring containers mtl text transformers 176706 ]; ··· 177480 }: 177481 mkDerivation { 177482 pname = "machines"; 177483 - version = "0.7.2"; 177484 - sha256 = "0pgsa67j9l1zmazlqdb5wg3cqsikyfvkq8yih7iwcqzkys5qssvr"; 177485 - libraryHaskellDepends = [ 177486 - adjunctions base comonad containers distributive mtl pointed 177487 - profunctors semigroupoids semigroups transformers 177488 - transformers-compat void 177489 - ]; 177490 - benchmarkHaskellDepends = [ 177491 - base conduit criterion mtl pipes streaming 177492 - ]; 177493 - description = "Networked stream transducers"; 177494 - license = lib.licenses.bsd3; 177495 - }) {}; 177496 - 177497 - "machines_0_7_3" = callPackage 177498 - ({ mkDerivation, adjunctions, base, comonad, conduit, containers 177499 - , criterion, distributive, mtl, pipes, pointed, profunctors 177500 - , semigroupoids, semigroups, streaming, transformers 177501 - , transformers-compat, void 177502 - }: 177503 - mkDerivation { 177504 - pname = "machines"; 177505 version = "0.7.3"; 177506 sha256 = "1cmflvd0xphs15ip61347ph9w4hnhmsa4nlp425i53x1ld99l23c"; 177507 libraryHaskellDepends = [ ··· 177514 ]; 177515 description = "Networked stream transducers"; 177516 license = lib.licenses.bsd3; 177517 - hydraPlatforms = lib.platforms.none; 177518 }) {}; 177519 177520 "machines-amazonka" = callPackage ··· 180718 maintainers = with lib.maintainers; [ dschrempf ]; 180719 }) {}; 180720 180721 - "mcmc_0_6_2_4" = callPackage 180722 ({ mkDerivation, aeson, async, base, bytestring, circular 180723 , containers, covariance, criterion, data-default, deepseq 180724 , directory, dirichlet, double-conversion, hmatrix, hspec 180725 - , log-domain, math-functions, microlens, mwc-random, pretty-show 180726 - , primitive, statistics, time, transformers, vector, zlib 180727 }: 180728 mkDerivation { 180729 pname = "mcmc"; 180730 - version = "0.6.2.4"; 180731 - sha256 = "01ramkpjxknjaj4qp78im1a24sqv35nm72afr6wiqlwj11dcs2mq"; 180732 libraryHaskellDepends = [ 180733 aeson async base bytestring circular containers covariance 180734 data-default deepseq directory dirichlet double-conversion hmatrix 180735 - log-domain math-functions microlens mwc-random pretty-show 180736 primitive statistics time transformers vector zlib 180737 ]; 180738 testHaskellDepends = [ base hspec mwc-random statistics ]; ··· 182646 182647 "microaeson" = callPackage 182648 ({ mkDerivation, aeson, alex, array, base, bytestring, containers 182649 - , deepseq, QuickCheck, quickcheck-instances, tasty 182650 , tasty-quickcheck, text, unordered-containers, vector 182651 }: 182652 mkDerivation { 182653 pname = "microaeson"; 182654 - version = "0.1.0.0"; 182655 - sha256 = "1hbpyz6p9snnd85h2y0pdqp20svxrggavbv0q8z33sc5i4p8b7iz"; 182656 - revision = "4"; 182657 - editedCabalFile = "0rrdyk6clik8g3biv40rpg50qzfacb9yrd45ah85xpmk8flbzcfx"; 182658 libraryHaskellDepends = [ 182659 - array base bytestring containers deepseq text 182660 ]; 182661 libraryToolDepends = [ alex ]; 182662 testHaskellDepends = [ ··· 182870 }: 182871 mkDerivation { 182872 pname = "microlens-ghc"; 182873 - version = "0.4.13.1"; 182874 - sha256 = "0q079kjqah8nbr4lll1w9i1wb1ayia07qi6g50hfcpsfvwsrh8s6"; 182875 libraryHaskellDepends = [ 182876 array base bytestring containers microlens transformers 182877 ]; ··· 182901 }: 182902 mkDerivation { 182903 pname = "microlens-mtl"; 182904 - version = "0.2.0.1"; 182905 - sha256 = "0ijy7xyd5lbc3calhcrhy8czkf3fjcxrv68p7kd2a5b352rfi7fp"; 182906 - libraryHaskellDepends = [ 182907 - base microlens mtl transformers transformers-compat 182908 - ]; 182909 - description = "microlens support for Reader/Writer/State from mtl"; 182910 - license = lib.licenses.bsd3; 182911 - }) {}; 182912 - 182913 - "microlens-mtl_0_2_0_2" = callPackage 182914 - ({ mkDerivation, base, microlens, mtl, transformers 182915 - , transformers-compat 182916 - }: 182917 - mkDerivation { 182918 - pname = "microlens-mtl"; 182919 version = "0.2.0.2"; 182920 sha256 = "0y1jli9379l8sgv5a4xl8v3qkz9fkp4qlfsywzdpywbnydl1d5v6"; 182921 libraryHaskellDepends = [ ··· 182923 ]; 182924 description = "microlens support for Reader/Writer/State from mtl"; 182925 license = lib.licenses.bsd3; 182926 - hydraPlatforms = lib.platforms.none; 182927 }) {}; 182928 182929 "microlens-platform" = callPackage ··· 182942 license = lib.licenses.bsd3; 182943 }) {}; 182944 182945 - "microlens-platform_0_4_3_0" = callPackage 182946 ({ mkDerivation, base, hashable, microlens, microlens-ghc 182947 , microlens-mtl, microlens-th, text, unordered-containers, vector 182948 }: 182949 mkDerivation { 182950 pname = "microlens-platform"; 182951 - version = "0.4.3.0"; 182952 - sha256 = "113xq10cr32mbbjy57zdafk5nww75c442fm5bz3h4vckawkc8n3p"; 182953 libraryHaskellDepends = [ 182954 base hashable microlens microlens-ghc microlens-mtl microlens-th 182955 text unordered-containers vector ··· 183048 }: 183049 mkDerivation { 183050 pname = "microstache"; 183051 - version = "1.0.2"; 183052 - sha256 = "0pirywb9304j2ylasskwq20k6d2srk616sh41l4s37yajsjggx5i"; 183053 - revision = "3"; 183054 - editedCabalFile = "1bs7h4ffd1ckjjanqsshvw1z472d0lnq3bz7qmbnfmg73jji23pv"; 183055 - libraryHaskellDepends = [ 183056 - aeson base containers deepseq directory filepath parsec text 183057 - transformers unordered-containers vector 183058 - ]; 183059 - testHaskellDepends = [ 183060 - aeson base bytestring containers hspec parsec text 183061 - ]; 183062 - description = "Mustache templates for Haskell"; 183063 - license = lib.licenses.bsd3; 183064 - }) {}; 183065 - 183066 - "microstache_1_0_2_1" = callPackage 183067 - ({ mkDerivation, aeson, base, bytestring, containers, deepseq 183068 - , directory, filepath, hspec, parsec, text, transformers 183069 - , unordered-containers, vector 183070 - }: 183071 - mkDerivation { 183072 - pname = "microstache"; 183073 version = "1.0.2.1"; 183074 sha256 = "12i2sx2rv2ai77m95gvfm93jcjk6q5i4cgfyxjrhyx3ll94z775v"; 183075 libraryHaskellDepends = [ ··· 183081 ]; 183082 description = "Mustache templates for Haskell"; 183083 license = lib.licenses.bsd3; 183084 - hydraPlatforms = lib.platforms.none; 183085 }) {}; 183086 183087 "microtimer" = callPackage ··· 183146 }: 183147 mkDerivation { 183148 pname = "midi"; 183149 - version = "0.2.2.2"; 183150 - sha256 = "0fv9980k35qv9qk73g2mp88xvhchyq0lq37cl7i26gx4f64vaz6y"; 183151 - revision = "1"; 183152 - editedCabalFile = "0sa17aphsnk0lc42k1niisbd4jck7j4xij95mjjc5nlrcx1zd123"; 183153 - libraryHaskellDepends = [ 183154 - base binary bytestring event-list explicit-exception 183155 - monoid-transformer non-negative QuickCheck random semigroups 183156 - transformers utility-ht 183157 - ]; 183158 - testHaskellDepends = [ 183159 - base bytestring event-list explicit-exception non-negative 183160 - QuickCheck transformers utility-ht 183161 - ]; 183162 - description = "Handling of MIDI messages and files"; 183163 - license = "GPL"; 183164 - }) {}; 183165 - 183166 - "midi_0_2_2_3" = callPackage 183167 - ({ mkDerivation, base, binary, bytestring, event-list 183168 - , explicit-exception, monoid-transformer, non-negative, QuickCheck 183169 - , random, semigroups, transformers, utility-ht 183170 - }: 183171 - mkDerivation { 183172 - pname = "midi"; 183173 version = "0.2.2.3"; 183174 sha256 = "12vj9h7vdklzn5dglypjsw1bs9rdacdg9fmxhnbd89jv89dyn4km"; 183175 libraryHaskellDepends = [ ··· 183183 ]; 183184 description = "Handling of MIDI messages and files"; 183185 license = "GPL"; 183186 - hydraPlatforms = lib.platforms.none; 183187 }) {}; 183188 183189 "midi-alsa" = callPackage ··· 183733 ]; 183734 description = "Minesweeper game which is always solvable without guessing"; 183735 license = lib.licenses.bsd3; 183736 }) {}; 183737 183738 "mini-egison" = callPackage ··· 183908 , case-insensitive, conduit, conduit-extra, connection, cryptonite 183909 , cryptonite-conduit, digest, directory, exceptions, filepath 183910 , http-client, http-client-tls, http-conduit, http-types, ini 183911 - , memory, protolude, QuickCheck, raw-strings-qq, resourcet, retry 183912 - , tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck, text 183913 - , time, transformers, unliftio, unliftio-core, unordered-containers 183914 - , xml-conduit 183915 }: 183916 mkDerivation { 183917 pname = "minio-hs"; 183918 - version = "1.5.3"; 183919 - sha256 = "0nbrvkj8dn9m2i60iqk2wmf7fnj8bv4n65r4wxpimwb06yrvrfj2"; 183920 isLibrary = true; 183921 isExecutable = true; 183922 libraryHaskellDepends = [ 183923 aeson base base64-bytestring binary bytestring case-insensitive 183924 conduit conduit-extra connection cryptonite cryptonite-conduit 183925 digest directory exceptions filepath http-client http-client-tls 183926 - http-conduit http-types ini memory protolude raw-strings-qq 183927 - resourcet retry text time transformers unliftio unliftio-core 183928 - unordered-containers xml-conduit 183929 ]; 183930 testHaskellDepends = [ 183931 aeson base base64-bytestring binary bytestring case-insensitive 183932 conduit conduit-extra connection cryptonite cryptonite-conduit 183933 digest directory exceptions filepath http-client http-client-tls 183934 - http-conduit http-types ini memory protolude QuickCheck 183935 - raw-strings-qq resourcet retry tasty tasty-hunit tasty-quickcheck 183936 - tasty-smallcheck text time transformers unliftio unliftio-core 183937 - unordered-containers xml-conduit 183938 ]; 183939 description = "A MinIO Haskell Library for Amazon S3 compatible cloud storage"; 183940 license = lib.licenses.asl20; ··· 185778 }: 185779 mkDerivation { 185780 pname = "monad-chronicle"; 185781 - version = "1.0.0.1"; 185782 - sha256 = "1p9w9f5sw4adxxrgfba0vxs5kdhl82ibnwfqal7nrrhp3v86imbg"; 185783 - revision = "2"; 185784 - editedCabalFile = "1h3dk50wpbpi5qdxfwk8d5c22ad0ll1j647b4dbcjm4318l4ahkm"; 185785 - libraryHaskellDepends = [ 185786 - base data-default-class mtl semigroupoids these transformers 185787 - transformers-compat 185788 - ]; 185789 - description = "These as a transformer, ChronicleT"; 185790 - license = lib.licenses.bsd3; 185791 - }) {}; 185792 - 185793 - "monad-chronicle_1_0_1" = callPackage 185794 - ({ mkDerivation, base, data-default-class, mtl, semigroupoids 185795 - , these, transformers, transformers-compat 185796 - }: 185797 - mkDerivation { 185798 - pname = "monad-chronicle"; 185799 version = "1.0.1"; 185800 sha256 = "13f1qwylpj7wss2h5g69zlmn6k6qg5r3aqd9zhvjspg1a85m91kq"; 185801 libraryHaskellDepends = [ ··· 185804 ]; 185805 description = "These as a transformer, ChronicleT"; 185806 license = lib.licenses.bsd3; 185807 - hydraPlatforms = lib.platforms.none; 185808 }) {}; 185809 185810 "monad-classes" = callPackage ··· 187651 }: 187652 mkDerivation { 187653 pname = "monoid-statistics"; 187654 - version = "1.1.0"; 187655 - sha256 = "12q86bh057pn040wdr39wlq066mcffpgsx71jy5h8rj02qi4b78f"; 187656 libraryHaskellDepends = [ 187657 base exceptions math-functions vector vector-th-unbox 187658 ]; ··· 188698 }: 188699 mkDerivation { 188700 pname = "moss"; 188701 - version = "0.2.0.0"; 188702 - sha256 = "17ac31r26c8zddp3qdk573lyry2bz7c0y49q0adln3psd39czzw0"; 188703 - libraryHaskellDepends = [ 188704 - base bytestring conduit-extra mtl network network-simple 188705 - unix-compat 188706 - ]; 188707 - description = "Haskell client for Moss"; 188708 - license = lib.licenses.mit; 188709 - }) {}; 188710 - 188711 - "moss_0_2_0_1" = callPackage 188712 - ({ mkDerivation, base, bytestring, conduit-extra, mtl, network 188713 - , network-simple, unix-compat 188714 - }: 188715 - mkDerivation { 188716 - pname = "moss"; 188717 version = "0.2.0.1"; 188718 sha256 = "1az701j6gx6ra9j6yz4qib7g5irmd5pjcaj9xqmsc4pwljx8yrzs"; 188719 libraryHaskellDepends = [ ··· 188722 ]; 188723 description = "Haskell client for Moss"; 188724 license = lib.licenses.mit; 188725 - hydraPlatforms = lib.platforms.none; 188726 }) {}; 188727 188728 "moto" = callPackage ··· 192260 license = lib.licenses.bsd3; 192261 }) {}; 192262 192263 "mysql-simple-quasi" = callPackage 192264 ({ mkDerivation, base, haskell-src-meta, mysql-simple 192265 , template-haskell ··· 193238 license = lib.licenses.bsd3; 193239 }) {}; 193240 193241 "natural-induction" = callPackage 193242 ({ mkDerivation, base, peano }: 193243 mkDerivation { ··· 196005 pname = "newtype"; 196006 version = "0.2.2.0"; 196007 sha256 = "1b7bamnd0p8vmxvlg39g5d4a2av49kx10rdyz04ixa28pg8zy01s"; 196008 - revision = "2"; 196009 - editedCabalFile = "0zfrjyybccr5prjkfazh0bgybjfv5vr1zpyxi1nqkqia1rm7pjrn"; 196010 libraryHaskellDepends = [ base ]; 196011 description = "A typeclass and set of functions for working with newtypes"; 196012 license = lib.licenses.bsd3; ··· 196031 }) {}; 196032 196033 "newtype-generics" = callPackage 196034 - ({ mkDerivation, base, gauge, hspec, hspec-discover, semigroups 196035 - , transformers 196036 - }: 196037 - mkDerivation { 196038 - pname = "newtype-generics"; 196039 - version = "0.6.1"; 196040 - sha256 = "1aswwfz3lc65n56l3vqcp5ak002vd11kcfz2is0a3584p8pz1zpw"; 196041 - libraryHaskellDepends = [ base transformers ]; 196042 - testHaskellDepends = [ base hspec ]; 196043 - testToolDepends = [ hspec-discover ]; 196044 - benchmarkHaskellDepends = [ base gauge semigroups ]; 196045 - description = "A typeclass and set of functions for working with newtypes"; 196046 - license = lib.licenses.bsd3; 196047 - }) {}; 196048 - 196049 - "newtype-generics_0_6_2" = callPackage 196050 ({ mkDerivation, base, gauge, hspec, hspec-discover, semigroups }: 196051 mkDerivation { 196052 pname = "newtype-generics"; ··· 196058 benchmarkHaskellDepends = [ base gauge semigroups ]; 196059 description = "A typeclass and set of functions for working with newtypes"; 196060 license = lib.licenses.bsd3; 196061 - hydraPlatforms = lib.platforms.none; 196062 }) {}; 196063 196064 "newtype-th" = callPackage ··· 196655 pname = "nix-graph"; 196656 version = "1.0.2.0"; 196657 sha256 = "0g6kay7j4klgpnd4qq1b0drfc17m4nkip3sks6fn4528r0i95xll"; 196658 isLibrary = true; 196659 isExecutable = true; 196660 libraryHaskellDepends = [ ··· 198053 }: 198054 mkDerivation { 198055 pname = "nqe"; 198056 - version = "0.6.3"; 198057 - sha256 = "0wg9cfzgj36dj77m521pqcliqd43i3j6i1bvqgvb8npmzqijag7q"; 198058 - libraryHaskellDepends = [ 198059 - base conduit containers hashable mtl stm unique unliftio 198060 - ]; 198061 - testHaskellDepends = [ 198062 - async base bytestring conduit conduit-extra exceptions hspec stm 198063 - stm-conduit text unliftio 198064 - ]; 198065 - description = "Concurrency library in the style of Erlang/OTP"; 198066 - license = lib.licenses.mit; 198067 - }) {}; 198068 - 198069 - "nqe_0_6_4" = callPackage 198070 - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra 198071 - , containers, exceptions, hashable, hspec, mtl, stm, stm-conduit 198072 - , text, unique, unliftio 198073 - }: 198074 - mkDerivation { 198075 - pname = "nqe"; 198076 version = "0.6.4"; 198077 sha256 = "17ymmb0sy95yf5abdgq60j9bi9pdr746ap7x0byakd3gi7kciijg"; 198078 libraryHaskellDepends = [ ··· 198084 ]; 198085 description = "Concurrency library in the style of Erlang/OTP"; 198086 license = lib.licenses.mit; 198087 - hydraPlatforms = lib.platforms.none; 198088 }) {}; 198089 198090 "nri-env-parser" = callPackage ··· 198710 license = lib.licenses.bsd3; 198711 }) {}; 198712 198713 "numeric-qq" = callPackage 198714 ({ mkDerivation, base, directory, doctest, filepath, loch-th 198715 , placeholders, template-haskell ··· 198814 license = lib.licenses.bsd3; 198815 }) {}; 198816 198817 "numhask-array" = callPackage 198818 ({ mkDerivation, adjunctions, base, distributive, numhask, vector 198819 }: ··· 199284 ]; 199285 description = "An interactive GUI for manipulating L-systems"; 199286 license = lib.licenses.bsd3; 199287 }) {}; 199288 199289 "nyx-game" = callPackage ··· 199959 pname = "oeis2"; 199960 version = "1.0.7"; 199961 sha256 = "1nywxada76zqzraadwbmz3v6dpwbd997393ksrprci5n6myrakng"; 199962 libraryHaskellDepends = [ 199963 aeson base containers http-conduit lens lens-aeson text vector 199964 ]; ··· 200446 pname = "one-liner"; 200447 version = "2.0"; 200448 sha256 = "0al9wavxx23xbalqw0cdlhq01kx8kyhg33fipwmn5617z3ddir6v"; 200449 libraryHaskellDepends = [ 200450 base bifunctors contravariant ghc-prim linear-base profunctors 200451 tagged transformers ··· 200453 testHaskellDepends = [ base contravariant HUnit ]; 200454 description = "Constraint-based generics"; 200455 license = lib.licenses.bsd3; 200456 }) {}; 200457 200458 "one-liner-instances" = callPackage ··· 201345 }) {}; 201346 201347 "openid-connect" = callPackage 201348 - ({ mkDerivation, aeson, base, bytestring, case-insensitive, cookie 201349 - , cryptonite, http-client, http-types, jose, lens, memory, mtl 201350 - , network-uri, tasty, tasty-hunit, text, time, unordered-containers 201351 }: 201352 mkDerivation { 201353 pname = "openid-connect"; 201354 - version = "0.1.1"; 201355 - sha256 = "16qqndcvbs30nraik0ida1dw40hk3k9mi318dnqnjx64x6wvcgmr"; 201356 isLibrary = true; 201357 isExecutable = true; 201358 libraryHaskellDepends = [ 201359 - aeson base bytestring case-insensitive cookie cryptonite 201360 http-client http-types jose lens memory mtl network-uri text time 201361 unordered-containers 201362 ]; 201363 testHaskellDepends = [ 201364 - aeson base bytestring case-insensitive cookie cryptonite 201365 http-client http-types jose lens memory mtl network-uri tasty 201366 tasty-hunit text time unordered-containers 201367 ]; ··· 202200 pname = "operational-alacarte"; 202201 version = "0.3.1"; 202202 sha256 = "0n4xjv0li4z5lvkx8z0y72dyv9aa0hc315cvpwqcfsh5wvp7fanm"; 202203 libraryHaskellDepends = [ base mtl ]; 202204 testHaskellDepends = [ base ]; 202205 description = "A version of Operational suitable for extensible EDSLs"; ··· 202321 }: 202322 mkDerivation { 202323 pname = "optics"; 202324 - version = "0.4.1"; 202325 - sha256 = "068r2ldq5aysvs5gcd80xpvbmsw5vylc4x0rfsnm9k330q5vzlkx"; 202326 - libraryHaskellDepends = [ 202327 - array base containers mtl optics-core optics-extra optics-th 202328 - transformers 202329 - ]; 202330 - testHaskellDepends = [ 202331 - base containers indexed-profunctors inspection-testing mtl 202332 - optics-core QuickCheck random tasty tasty-hunit tasty-quickcheck 202333 - template-haskell 202334 - ]; 202335 - benchmarkHaskellDepends = [ 202336 - base bytestring containers lens tasty-bench transformers 202337 - unordered-containers vector 202338 - ]; 202339 - description = "Optics as an abstract interface"; 202340 - license = lib.licenses.bsd3; 202341 - maintainers = with lib.maintainers; [ maralorn ]; 202342 - }) {}; 202343 - 202344 - "optics_0_4_2" = callPackage 202345 - ({ mkDerivation, array, base, bytestring, containers 202346 - , indexed-profunctors, inspection-testing, lens, mtl, optics-core 202347 - , optics-extra, optics-th, QuickCheck, random, tasty, tasty-bench 202348 - , tasty-hunit, tasty-quickcheck, template-haskell, transformers 202349 - , unordered-containers, vector 202350 - }: 202351 - mkDerivation { 202352 - pname = "optics"; 202353 version = "0.4.2"; 202354 sha256 = "1irk0m3194vmrqwm29p5gjwd8w7i5hmg1ikxfw11yjfk0hvmbrzb"; 202355 libraryHaskellDepends = [ ··· 202367 ]; 202368 description = "Optics as an abstract interface"; 202369 license = lib.licenses.bsd3; 202370 - hydraPlatforms = lib.platforms.none; 202371 maintainers = with lib.maintainers; [ maralorn ]; 202372 }) {}; 202373 ··· 202396 }: 202397 mkDerivation { 202398 pname = "optics-extra"; 202399 - version = "0.4.1"; 202400 - sha256 = "0xxsl4vkq77vnqi9s57d0kgsr4qj87zpad10ax0ywhvzzbvh98fg"; 202401 - libraryHaskellDepends = [ 202402 - array base bytestring containers hashable indexed-profunctors 202403 - indexed-traversable-instances mtl optics-core text transformers 202404 - unordered-containers vector 202405 - ]; 202406 - description = "Extra utilities and instances for optics-core"; 202407 - license = lib.licenses.bsd3; 202408 - }) {}; 202409 - 202410 - "optics-extra_0_4_2_1" = callPackage 202411 - ({ mkDerivation, array, base, bytestring, containers, hashable 202412 - , indexed-profunctors, indexed-traversable-instances, mtl 202413 - , optics-core, text, transformers, unordered-containers, vector 202414 - }: 202415 - mkDerivation { 202416 - pname = "optics-extra"; 202417 version = "0.4.2.1"; 202418 sha256 = "0hfa5yb7l3l310lfxkii13fjzb69g619agadc5a86i734nisf8vy"; 202419 libraryHaskellDepends = [ ··· 202423 ]; 202424 description = "Extra utilities and instances for optics-core"; 202425 license = lib.licenses.bsd3; 202426 - hydraPlatforms = lib.platforms.none; 202427 }) {}; 202428 202429 "optics-th" = callPackage ··· 204749 ({ mkDerivation, base, containers, criterion, data-default, deepseq 204750 , directory, filepath, gitrev, hspec, microlens, microlens-mtl 204751 , microlens-th, mtl, open-browser, optparse-applicative, pandoc 204752 - , pandoc-types, roman-numerals, syb, template-haskell, temporary 204753 - , text, utility-ht 204754 }: 204755 mkDerivation { 204756 pname = "pandoc-crossref"; 204757 - version = "0.3.12.2"; 204758 - sha256 = "1d2g4aggv47gv83p4382bcy1x97z0bs4nqww37ay92n9r4jh6m4l"; 204759 isLibrary = true; 204760 isExecutable = true; 204761 enableSeparateDataOutput = true; 204762 libraryHaskellDepends = [ 204763 base containers data-default directory filepath microlens 204764 - microlens-mtl microlens-th mtl pandoc pandoc-types roman-numerals 204765 - syb template-haskell text utility-ht 204766 ]; 204767 executableHaskellDepends = [ 204768 base deepseq gitrev open-browser optparse-applicative pandoc ··· 204986 ({ mkDerivation, base, containers, pandoc-types, relude, text }: 204987 mkDerivation { 204988 pname = "pandoc-link-context"; 204989 - version = "1.2.0.0"; 204990 - sha256 = "06yd4wp7v8p1z9jrg4rzcinkkdng94v2gpcs039brb7cb9qi4gpl"; 204991 libraryHaskellDepends = [ 204992 base containers pandoc-types relude text 204993 ]; ··· 205316 ({ mkDerivation }: 205317 mkDerivation { 205318 pname = "pandora"; 205319 - version = "0.5.5"; 205320 - sha256 = "0kk9v6xl3ssfsnk0ng1ar9wm6qw7qln2qcilybldkp8dhy4fvmxq"; 205321 description = "A box of patterns and paradigms"; 205322 license = lib.licenses.mit; 205323 hydraPlatforms = lib.platforms.none; ··· 208464 }: 208465 mkDerivation { 208466 pname = "pcre2"; 208467 - version = "2.1.1"; 208468 - sha256 = "07ls9vxj5l8wvrj75wvyrq6qsz7fz0pamx92ik50cpl71p76lc92"; 208469 libraryHaskellDepends = [ 208470 base containers microlens mtl template-haskell text 208471 ]; ··· 208479 ]; 208480 description = "Regular expressions via the PCRE2 C library (included)"; 208481 license = lib.licenses.asl20; 208482 }) {}; 208483 208484 "pdc" = callPackage ··· 209274 license = lib.licenses.bsd3; 209275 }) {}; 209276 209277 "perf-analysis" = callPackage 209278 ({ mkDerivation, base, containers, deepseq, optparse-generic, perf 209279 , protolude, readme-lhs, scientific, tdigest, text, text-format ··· 211055 pname = "phatsort"; 211056 version = "0.5.0.1"; 211057 sha256 = "14czx4s3ywfcxbw8lr60i3cdk62rcfr7m1v98mx3qm1gjinll5js"; 211058 isLibrary = true; 211059 isExecutable = true; 211060 libraryHaskellDepends = [ ··· 213514 }: 213515 mkDerivation { 213516 pname = "pipes-text"; 213517 - version = "1.0.0"; 213518 - sha256 = "0q01amm5813qpbkj9098mkd6h1a65vc864qjk2vgd4h80vx2a6mi"; 213519 libraryHaskellDepends = [ 213520 base bytestring pipes pipes-bytestring pipes-group pipes-parse 213521 pipes-safe streaming-commons text transformers ··· 215383 pname = "poly-rec"; 215384 version = "0.7.0.0"; 215385 sha256 = "0ayaz87l2rgpm4ddc7bidss042xhfcwa3sk7685ypssqvp02k5r0"; 215386 libraryHaskellDepends = [ base requirements ]; 215387 description = "Polykinded extensible records"; 215388 license = lib.licenses.gpl3Only; ··· 222095 libraryHaskellDepends = [ base glade glib gtk ]; 222096 description = "A library for functional GUI development"; 222097 license = lib.licenses.bsd3; 222098 }) {}; 222099 222100 "props" = callPackage ··· 222930 ]; 222931 description = "Language support for the PureScript programming language"; 222932 license = lib.licenses.mit; 222933 }) {}; 222934 222935 "pseudo-boolean" = callPackage ··· 223776 license = lib.licenses.bsd3; 223777 hydraPlatforms = lib.platforms.none; 223778 maintainers = with lib.maintainers; [ cdepillabout ]; 223779 }) {}; 223780 223781 "purescheme-wai-routing-core" = callPackage ··· 223883 ]; 223884 description = "PureScript Programming Language Abstract Syntax Tree"; 223885 license = lib.licenses.bsd3; 223886 - hydraPlatforms = lib.platforms.none; 223887 - broken = true; 223888 }) {}; 223889 223890 "purescript-bridge" = callPackage ··· 223941 libraryToolDepends = [ happy ]; 223942 description = "PureScript Programming Language Concrete Syntax Tree"; 223943 license = lib.licenses.bsd3; 223944 - hydraPlatforms = lib.platforms.none; 223945 - broken = true; 223946 }) {}; 223947 223948 "purescript-iso" = callPackage ··· 223995 ]; 223996 description = "TypeScript Declaration File (.d.ts) generator for PureScript"; 223997 license = lib.licenses.bsd3; 223998 }) {}; 223999 224000 "pursuit-client" = callPackage ··· 226837 226838 "radixtree" = callPackage 226839 ({ mkDerivation, attoparsec, base, containers, criterion, deepseq 226840 - , microlens, mtl, parsers, QuasiText, smallcheck, store, tasty 226841 - , tasty-smallcheck, text, vector 226842 }: 226843 mkDerivation { 226844 pname = "radixtree"; 226845 - version = "0.4.0.0"; 226846 - sha256 = "074s2gbprpq9qvipj8hayh906pdy1jfayph82hzamnwvz4199gmj"; 226847 libraryHaskellDepends = [ 226848 - base containers deepseq microlens mtl parsers store text vector 226849 ]; 226850 testHaskellDepends = [ 226851 attoparsec base smallcheck tasty tasty-smallcheck text 226852 ]; 226853 benchmarkHaskellDepends = [ 226854 - attoparsec base criterion deepseq QuasiText text vector 226855 ]; 226856 license = lib.licenses.bsd3; 226857 hydraPlatforms = lib.platforms.none; ··· 226929 "rails-session" = callPackage 226930 ({ mkDerivation, base, base-compat, base16-bytestring 226931 , base64-bytestring, bytestring, containers, cryptonite, filepath 226932 - , http-types, pbkdf, ruby-marshal, semigroups, string-conv, tasty 226933 - , tasty-hspec, transformers, vector 226934 }: 226935 mkDerivation { 226936 pname = "rails-session"; 226937 - version = "0.1.2.0"; 226938 - sha256 = "0r1jiy7x7497zk1gvg1zbpqx2vh2i0j9x7gzscgx6gylkjkkppir"; 226939 libraryHaskellDepends = [ 226940 base base-compat base16-bytestring base64-bytestring bytestring 226941 containers cryptonite http-types pbkdf ruby-marshal string-conv 226942 vector 226943 ]; 226944 testHaskellDepends = [ 226945 - base bytestring filepath ruby-marshal semigroups tasty tasty-hspec 226946 - transformers vector 226947 ]; 226948 description = "Decrypt Ruby on Rails sessions in Haskell"; 226949 license = lib.licenses.bsd3; ··· 227476 pname = "random-source"; 227477 version = "0.3.0.11"; 227478 sha256 = "0lwqbd0h495srgi2p8fsmsfk5hv5m3f6cxm12j61xx94fdyn98sv"; 227479 - revision = "1"; 227480 - editedCabalFile = "1wh5acm2298bcp3r4zp7k77rrzynfgbs4s6jq6swml1p3p7yr7b9"; 227481 libraryHaskellDepends = [ 227482 base flexible-defaults mersenne-random-pure64 mtl mwc-random 227483 primitive random stateref syb template-haskell th-extras ··· 227668 ({ mkDerivation, base, doctest, typecheck-plugin-nat-simple }: 227669 mkDerivation { 227670 pname = "ranged-list"; 227671 - version = "0.1.1.1"; 227672 - sha256 = "0ky5jzp63565xc9qxq6717c5qbgcisgv9nadjfsqrcxwarp75i6y"; 227673 enableSeparateDataOutput = true; 227674 libraryHaskellDepends = [ base typecheck-plugin-nat-simple ]; 227675 testHaskellDepends = [ base doctest typecheck-plugin-nat-simple ]; ··· 228239 broken = true; 228240 }) {}; 228241 228242 - "rattletrap_11_2_9" = callPackage 228243 ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring 228244 , containers, filepath, http-client, http-client-tls, text 228245 }: 228246 mkDerivation { 228247 pname = "rattletrap"; 228248 - version = "11.2.9"; 228249 - sha256 = "15afr7ncg7niwis44sr8pjlga08052gqz0bwg29zyy26kh8fll1l"; 228250 isLibrary = true; 228251 isExecutable = true; 228252 libraryHaskellDepends = [ ··· 228307 }: 228308 mkDerivation { 228309 pname = "raw-feldspar"; 228310 - version = "0.4"; 228311 - sha256 = "1bx98zsykvfc72jaas3qzjm614dliij2bdvbm44fj0npd3zvbq0r"; 228312 libraryHaskellDepends = [ 228313 array base constraints containers data-default-class data-hash 228314 imperative-edsl language-c-quote mtl operational-alacarte ··· 228522 }: 228523 mkDerivation { 228524 pname = "rcu"; 228525 - version = "0.2.5"; 228526 - sha256 = "1p2cg6xy5cjdizqialv9y8qylwdri5fhby2xh04fnhpjapsrbc7l"; 228527 - isLibrary = true; 228528 - isExecutable = true; 228529 - libraryHaskellDepends = [ 228530 - atomic-primops base fail ghc-prim parallel primitive transformers 228531 - ]; 228532 - executableHaskellDepends = [ base transformers ]; 228533 - benchmarkHaskellDepends = [ 228534 - base containers criterion deepseq ghc-prim optparse-applicative 228535 - primitive rdtsc time transformers 228536 - ]; 228537 - description = "Read-Copy-Update for Haskell"; 228538 - license = lib.licenses.bsd3; 228539 - }) {}; 228540 - 228541 - "rcu_0_2_6" = callPackage 228542 - ({ mkDerivation, atomic-primops, base, containers, criterion 228543 - , deepseq, fail, ghc-prim, optparse-applicative, parallel 228544 - , primitive, rdtsc, time, transformers 228545 - }: 228546 - mkDerivation { 228547 - pname = "rcu"; 228548 version = "0.2.6"; 228549 sha256 = "14kg45ycx5wa3k9xn7glp4kdy8xz119m4gs91114qx0rkbix2f5h"; 228550 isLibrary = true; ··· 228559 ]; 228560 description = "Read-Copy-Update for Haskell"; 228561 license = lib.licenses.bsd3; 228562 - hydraPlatforms = lib.platforms.none; 228563 }) {}; 228564 228565 "rdf" = callPackage ··· 230568 pname = "reflex"; 230569 version = "0.8.2.0"; 230570 sha256 = "1hvagxcs413bqairxf77vp19484mxnbfckhd44wv22ncwfh5mq6d"; 230571 libraryHaskellDepends = [ 230572 base bifunctors comonad constraints constraints-extras containers 230573 data-default dependent-map dependent-sum exception-transformers ··· 230610 230611 "reflex-backend-socket" = callPackage 230612 ({ mkDerivation, base, bytestring, containers, lens, mtl, network 230613 - , reflex, reflex-basic-host, semialign, semigroupoids, stm, these 230614 - , witherable 230615 }: 230616 mkDerivation { 230617 pname = "reflex-backend-socket"; 230618 - version = "0.2.0.0"; 230619 - sha256 = "111kmsvxb86aphw0ascjf7p7fd0bfxs3lmvqbnvxvj3rhh19bq6c"; 230620 - revision = "1"; 230621 - editedCabalFile = "11swzj7l0wmvdv72716rmlwcvcxkj44h3jbzwyhqn8q0f9ykfggx"; 230622 isLibrary = true; 230623 isExecutable = true; 230624 libraryHaskellDepends = [ ··· 230626 these 230627 ]; 230628 executableHaskellDepends = [ 230629 - base bytestring containers lens network reflex reflex-basic-host 230630 - witherable 230631 ]; 230632 description = "Reflex bindings for TCP sockets"; 230633 license = lib.licenses.bsd3; 230634 - hydraPlatforms = lib.platforms.none; 230635 }) {}; 230636 230637 "reflex-backend-wai" = callPackage ··· 231145 }) {}; 231146 231147 "reflex-libtelnet" = callPackage 231148 - ({ mkDerivation, base, bytestring, data-default, dependent-map 231149 - , dependent-sum, dependent-sum-template, lens, libtelnet, reflex 231150 }: 231151 mkDerivation { 231152 pname = "reflex-libtelnet"; 231153 - version = "0.1.0.0"; 231154 - sha256 = "0abqbbbzgsq2sz1yx9cjl7cjfjaygcv4vc8hp6g4gk7744xdshz3"; 231155 libraryHaskellDepends = [ 231156 - base bytestring data-default dependent-map dependent-sum 231157 - dependent-sum-template lens libtelnet reflex 231158 ]; 231159 description = "Reflex bindings for libtelnet"; 231160 license = lib.licenses.gpl3Plus; ··· 231629 pname = "regex-base"; 231630 version = "0.94.0.2"; 231631 sha256 = "1w9fxad1dwi040r3db9i2cjhhrl86p3hngj13ixbcnqgb27l16bv"; 231632 libraryHaskellDepends = [ array base bytestring containers text ]; 231633 description = "Common \"Text.Regex.*\" API for Regex matching"; 231634 license = lib.licenses.bsd3; ··· 231640 pname = "regex-compat"; 231641 version = "0.95.2.1"; 231642 sha256 = "0ivrdrcphrz3g6nr5wbsmfiv8i82caw0kf6z5qlmlq7xf9n3hywg"; 231643 - revision = "1"; 231644 - editedCabalFile = "1r9gvk0lifppydlns81zh8052941saaaahydvbcgnrz0jwn1di9j"; 231645 libraryHaskellDepends = [ array base regex-base regex-posix ]; 231646 description = "Replaces/enhances \"Text.Regex\""; 231647 license = lib.licenses.bsd3; ··· 231823 pname = "regex-pcre"; 231824 version = "0.95.0.0"; 231825 sha256 = "0nn76q4bsjnxim0j0d01jifmh36as9jdpcvm001a851vvq86zb8n"; 231826 - revision = "3"; 231827 - editedCabalFile = "1mxy2y7dmv37hhsasm17x2mb9dhmzza13pc7jfrk77inpig78ib8"; 231828 libraryHaskellDepends = [ 231829 array base bytestring containers regex-base 231830 ]; ··· 231890 pname = "regex-posix"; 231891 version = "0.96.0.1"; 231892 sha256 = "1715b57z67q4hg0jz44wkxrxi3v7n5iagw6gw48pf8hr34wpr0n7"; 231893 libraryHaskellDepends = [ 231894 array base bytestring containers regex-base 231895 ]; ··· 231954 pname = "regex-tdfa"; 231955 version = "1.3.1.2"; 231956 sha256 = "0qka53m4xirlb2cjzr68rhybm31i4x2f78b8724a0askvb4phyn4"; 231957 libraryHaskellDepends = [ 231958 array base bytestring containers mtl parsec regex-base text 231959 ]; ··· 232342 }: 232343 mkDerivation { 232344 pname = "registry"; 232345 - version = "0.3.0.3"; 232346 - sha256 = "0bbpjy5rjlmgn2jpg4fdrl15p3149y2wp5ydzpi21mzp3w0clkrp"; 232347 libraryHaskellDepends = [ 232348 base containers exceptions hashable mmorph mtl protolude resourcet 232349 semigroupoids semigroups template-haskell text transformers-base ··· 232370 }: 232371 mkDerivation { 232372 pname = "registry-hedgehog"; 232373 - version = "0.6.0.0"; 232374 - sha256 = "12asg2cz72an1hgy7c853z7zz7zvw54z7wa4rvw0gzg0a2z3fh0m"; 232375 libraryHaskellDepends = [ 232376 base containers hedgehog mmorph multimap protolude registry tasty 232377 tasty-discover tasty-hedgehog tasty-th template-haskell text ··· 232423 }: 232424 mkDerivation { 232425 pname = "registry-messagepack"; 232426 - version = "0.1.0.3"; 232427 - sha256 = "0i49cic87jdkfalwbyry7c6f1828vd1n33nkdjmxa73w3vhjklf5"; 232428 libraryHaskellDepends = [ 232429 base containers msgpack protolude registry template-haskell text 232430 transformers vector ··· 233717 }: 233718 mkDerivation { 233719 pname = "repline"; 233720 - version = "0.4.0.0"; 233721 - sha256 = "1dspwi28krinkxdd7waq4y6plz0dfmzz72885p9pcqp1r14qrhj3"; 233722 - libraryHaskellDepends = [ 233723 - base containers exceptions haskeline mtl process 233724 - ]; 233725 - testHaskellDepends = [ base containers mtl process ]; 233726 - description = "Haskeline wrapper for GHCi-like REPL interfaces"; 233727 - license = lib.licenses.mit; 233728 - }) {}; 233729 - 233730 - "repline_0_4_2_0" = callPackage 233731 - ({ mkDerivation, base, containers, exceptions, haskeline, mtl 233732 - , process 233733 - }: 233734 - mkDerivation { 233735 - pname = "repline"; 233736 version = "0.4.2.0"; 233737 sha256 = "0nldn02yqqmrxkzwzrx3v6hkb4y2hch48jkcr2qrw1dl0vqv70b1"; 233738 libraryHaskellDepends = [ ··· 233741 testHaskellDepends = [ base containers mtl process ]; 233742 description = "Haskeline wrapper for GHCi-like REPL interfaces"; 233743 license = lib.licenses.mit; 233744 - hydraPlatforms = lib.platforms.none; 233745 }) {}; 233746 233747 "repo-based-blog" = callPackage ··· 234094 ({ mkDerivation, base }: 234095 mkDerivation { 234096 pname = "requirements"; 234097 - version = "0.7.0.0"; 234098 - sha256 = "030vwfasxjdgdadcf5i68i3dc436dj6gi3ql4k8qh09yf8q1mm63"; 234099 libraryHaskellDepends = [ base ]; 234100 description = "Abstraction to manage user defined Type Errors"; 234101 license = lib.licenses.gpl3Only; ··· 234996 ({ mkDerivation, barbies, base, clash-ghc, clash-lib, clash-prelude 234997 , containers, ghc-typelits-extra, ghc-typelits-knownnat 234998 , ghc-typelits-natnormalise, lens, lift-type, monoidal-containers 234999 - , mtl, template-haskell, transformers 235000 }: 235001 mkDerivation { 235002 pname = "retroclash-lib"; 235003 - version = "0.1.2"; 235004 - sha256 = "11f15nhxp8aaim6yrzlh33dilp2zywdfikgdii44q0mszmm9q0vr"; 235005 libraryHaskellDepends = [ 235006 barbies base clash-ghc clash-lib clash-prelude containers 235007 ghc-typelits-extra ghc-typelits-knownnat ghc-typelits-natnormalise 235008 - lens lift-type monoidal-containers mtl template-haskell 235009 transformers 235010 ]; 235011 description = "Code shared across the code samples in the book \"Retrocomputing with Clash\""; ··· 235040 }: 235041 mkDerivation { 235042 pname = "retry"; 235043 - version = "0.9.2.0"; 235044 - sha256 = "1w0mlv62hrx2bi25szycg180k3mz8r9rhy53ycq0kadb8h1sw5hy"; 235045 - revision = "1"; 235046 - editedCabalFile = "1ry3r4h7xfp9r0hc5wbxz4sy9vx46gyhfqpd0lnlsa8r2c4pvb79"; 235047 libraryHaskellDepends = [ 235048 base exceptions ghc-prim mtl mtl-compat random transformers 235049 ]; ··· 238162 238163 "ruby-marshal" = callPackage 238164 ({ mkDerivation, base, bytestring, cereal, containers, fail, hspec 238165 - , mtl, string-conv, vector 238166 }: 238167 mkDerivation { 238168 pname = "ruby-marshal"; 238169 - version = "0.2.0"; 238170 - sha256 = "0cdw1m26hlpicd2wmk34zav4p4lxhnrj79s5vwqmqy9wkdj9ypdx"; 238171 libraryHaskellDepends = [ 238172 base bytestring cereal containers fail mtl string-conv vector 238173 ]; 238174 testHaskellDepends = [ 238175 base bytestring cereal containers fail hspec mtl string-conv vector 238176 ]; 238177 description = "Parse a subset of Ruby objects serialised with Marshal.dump."; 238178 license = lib.licenses.mit; 238179 hydraPlatforms = lib.platforms.none; ··· 238422 }: 238423 mkDerivation { 238424 pname = "rvar"; 238425 - version = "0.3.0.0"; 238426 - sha256 = "1lj30nl4a8fkjk88p3vdxcwwvgnqm14m8xikrx4lahh9xy6vybjn"; 238427 libraryHaskellDepends = [ 238428 base bytestring MonadPrompt mtl random transformers 238429 ]; ··· 238731 }: 238732 mkDerivation { 238733 pname = "safe-exceptions"; 238734 - version = "0.1.7.2"; 238735 - sha256 = "15a80s87f603w8l7fnaba2cyqx62042vvcidpjzyga2685wpyqv9"; 238736 libraryHaskellDepends = [ base deepseq exceptions transformers ]; 238737 testHaskellDepends = [ base hspec transformers void ]; 238738 description = "Safe, consistent, and easy exception handling"; ··· 240208 license = lib.licenses.mit; 240209 }) {}; 240210 240211 - "sbp_4_2_0" = callPackage 240212 ({ mkDerivation, aeson, aeson-pretty, array, base 240213 , base64-bytestring, basic-prelude, binary, binary-conduit 240214 , bytestring, cmdargs, conduit, conduit-extra, data-binary-ieee754 ··· 240217 }: 240218 mkDerivation { 240219 pname = "sbp"; 240220 - version = "4.2.0"; 240221 - sha256 = "1d9a9m41wfp3crsykdcmaki8kj1j7kdaq72l08wymkz3kqwakfr7"; 240222 isLibrary = true; 240223 isExecutable = true; 240224 libraryHaskellDepends = [ ··· 245857 }: 245858 mkDerivation { 245859 pname = "servant-openapi3"; 245860 - version = "2.0.1.4"; 245861 - sha256 = "1dlz5fsz7j5yrf6kps4j1mxlj4ww2q4szx5k6apawi06i8ibshh7"; 245862 - revision = "2"; 245863 - editedCabalFile = "1g8byg51brdpabn5kv1zpkzic84hg50w1dxs1hbkpxj5a26gbd07"; 245864 - setupHaskellDepends = [ base Cabal cabal-doctest ]; 245865 - libraryHaskellDepends = [ 245866 - aeson aeson-pretty base base-compat bytestring hspec http-media 245867 - insert-ordered-containers lens openapi3 QuickCheck servant 245868 - singleton-bool text unordered-containers 245869 - ]; 245870 - testHaskellDepends = [ 245871 - aeson base base-compat directory doctest filepath hspec lens 245872 - lens-aeson openapi3 QuickCheck servant template-haskell text time 245873 - utf8-string vector 245874 - ]; 245875 - testToolDepends = [ hspec-discover ]; 245876 - description = "Generate a Swagger/OpenAPI/OAS 3.0 specification for your servant API."; 245877 - license = lib.licenses.bsd3; 245878 - }) {}; 245879 - 245880 - "servant-openapi3_2_0_1_5" = callPackage 245881 - ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring 245882 - , Cabal, cabal-doctest, directory, doctest, filepath, hspec 245883 - , hspec-discover, http-media, insert-ordered-containers, lens 245884 - , lens-aeson, openapi3, QuickCheck, servant, singleton-bool 245885 - , template-haskell, text, time, unordered-containers, utf8-string 245886 - , vector 245887 - }: 245888 - mkDerivation { 245889 - pname = "servant-openapi3"; 245890 version = "2.0.1.5"; 245891 sha256 = "0zcyqga4hbdyk34368108vv9vavzdhv26xphas7yppada2sshfay"; 245892 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 245903 testToolDepends = [ hspec-discover ]; 245904 description = "Generate a Swagger/OpenAPI/OAS 3.0 specification for your servant API."; 245905 license = lib.licenses.bsd3; 245906 - hydraPlatforms = lib.platforms.none; 245907 }) {}; 245908 245909 "servant-options" = callPackage ··· 248671 maintainers = with lib.maintainers; [ psibi ]; 248672 }) {}; 248673 248674 "shakespeare-babel" = callPackage 248675 ({ mkDerivation, base, classy-prelude, data-default, directory 248676 , process, shakespeare, template-haskell ··· 248990 ]; 248991 description = "Spreadsheet type for composite"; 248992 license = lib.licenses.bsd3; 248993 }) {}; 248994 248995 "shelduck" = callPackage ··· 249224 pname = "shelly"; 249225 version = "1.10.0"; 249226 sha256 = "0hgzh0rrhipir8378civ5mwvkvcsd063jm2pyx8dqngdynph0h65"; 249227 isLibrary = true; 249228 isExecutable = true; 249229 libraryHaskellDepends = [ ··· 249701 executableHaskellDepends = [ base glade gtk random ]; 249702 description = "A simple gtk based Russian Roulette game"; 249703 license = lib.licenses.bsd3; 249704 }) {}; 249705 249706 "shower" = callPackage ··· 250187 broken = true; 250188 }) {}; 250189 250190 "simgi" = callPackage 250191 ({ mkDerivation, base, containers, haskell98 250192 , mersenne-random-pure64, mtl, parsec, random ··· 250364 }: 250365 mkDerivation { 250366 pname = "simple-cmd"; 250367 - version = "0.2.5"; 250368 - sha256 = "151js143l6b5rg6llvmcy1hcg80cmbp50ydrjhyfjqj32a1ygrsz"; 250369 - libraryHaskellDepends = [ 250370 - base directory extra filepath process time unix 250371 - ]; 250372 - testHaskellDepends = [ base hspec ]; 250373 - description = "Simple String-based process commands"; 250374 - license = lib.licenses.bsd3; 250375 - }) {}; 250376 - 250377 - "simple-cmd_0_2_6" = callPackage 250378 - ({ mkDerivation, base, directory, extra, filepath, hspec, process 250379 - , time, unix 250380 - }: 250381 - mkDerivation { 250382 - pname = "simple-cmd"; 250383 version = "0.2.6"; 250384 sha256 = "0x5r4i1ckswrs0060blr6zx1n8zbdqc977nq9n5gmwcfznsrhc67"; 250385 libraryHaskellDepends = [ ··· 250388 testHaskellDepends = [ base hspec ]; 250389 description = "Simple String-based process commands"; 250390 license = lib.licenses.bsd3; 250391 - hydraPlatforms = lib.platforms.none; 250392 }) {}; 250393 250394 "simple-cmd-args" = callPackage ··· 251508 "sindre" = callPackage 251509 ({ mkDerivation, array, attoparsec, base, bytestring, containers 251510 , libXft, mtl, parsec, permute, process, regex-pcre, setlocale 251511 - , text, unix, utf8-string, X11, X11-rm, x11-xim, X11-xshape 251512 }: 251513 mkDerivation { 251514 pname = "sindre"; 251515 - version = "0.4"; 251516 - sha256 = "0p76rsk02p6rw51ppbr3j7ydk57k34684qf50nrz5qd0jrnapjm2"; 251517 isLibrary = true; 251518 isExecutable = true; 251519 libraryHaskellDepends = [ ··· 251521 process regex-pcre setlocale text unix utf8-string X11 X11-rm 251522 x11-xim X11-xshape 251523 ]; 251524 - libraryPkgconfigDepends = [ libXft ]; 251525 executableHaskellDepends = [ 251526 array attoparsec base bytestring containers mtl parsec permute 251527 process regex-pcre setlocale text unix utf8-string X11 X11-rm 251528 x11-xim X11-xshape 251529 ]; 251530 - executablePkgconfigDepends = [ libXft ]; 251531 description = "A programming language for simple GUIs"; 251532 license = lib.licenses.bsd3; 251533 - }) {inherit (pkgs.xorg) libXft;}; 251534 251535 "single-tuple" = callPackage 251536 ({ mkDerivation, base, ghc-prim, hspec, hspec-discover, OneTuple ··· 251700 pname = "singletons-th"; 251701 version = "3.0"; 251702 sha256 = "1c0w7sg0lbpizrzns4g55wxsk5jm8wlqw0w9rz4jzqwy15byb572"; 251703 libraryHaskellDepends = [ 251704 base containers ghc-boot-th mtl singletons syb template-haskell 251705 th-desugar th-orphans transformers ··· 251716 pname = "singletons-th"; 251717 version = "3.1"; 251718 sha256 = "1mhx7sadw7zxaf7qhryrhi4fiyf9v3jcaplkh1syaa7b4725dm7a"; 251719 - revision = "1"; 251720 - editedCabalFile = "1mir0m8zpnq5ckkk073nxy32mghfkbdzncvxpjdpmv2yfxl9iwgi"; 251721 libraryHaskellDepends = [ 251722 base containers ghc-boot-th mtl singletons syb template-haskell 251723 th-desugar th-orphans transformers ··· 252347 }: 252348 mkDerivation { 252349 pname = "skylighting"; 252350 - version = "0.12.3"; 252351 - sha256 = "04asis41pwr395246rnhg7xaxi0mwal14sv3x7rzhbs4cb9ycsqi"; 252352 - configureFlags = [ "-fexecutable" ]; 252353 - isLibrary = true; 252354 - isExecutable = true; 252355 - libraryHaskellDepends = [ 252356 - base binary containers skylighting-core 252357 - ]; 252358 - executableHaskellDepends = [ 252359 - base blaze-html bytestring containers pretty-show text 252360 - ]; 252361 - description = "syntax highlighting library"; 252362 - license = lib.licenses.gpl2Only; 252363 - }) {}; 252364 - 252365 - "skylighting_0_12_3_1" = callPackage 252366 - ({ mkDerivation, base, binary, blaze-html, bytestring, containers 252367 - , pretty-show, skylighting-core, text 252368 - }: 252369 - mkDerivation { 252370 - pname = "skylighting"; 252371 version = "0.12.3.1"; 252372 sha256 = "08wml20cphj5idv5f20cz0jx7n8f037gy7x5axak83sbd98k71nw"; 252373 configureFlags = [ "-fexecutable" ]; ··· 252381 ]; 252382 description = "syntax highlighting library"; 252383 license = lib.licenses.gpl2Only; 252384 - hydraPlatforms = lib.platforms.none; 252385 }) {}; 252386 252387 "skylighting-core" = callPackage ··· 252394 }: 252395 mkDerivation { 252396 pname = "skylighting-core"; 252397 - version = "0.12.3"; 252398 - sha256 = "0pv84asvpvanxxalqsxij6hymd0nv5zcpdysj35880api5k28l0w"; 252399 - revision = "1"; 252400 - editedCabalFile = "0hc6w1bi9s4gxh5ypqhh6lgrcwv3c8xcmjsg8k9p47mmrdsa0ski"; 252401 - isLibrary = true; 252402 - isExecutable = true; 252403 - libraryHaskellDepends = [ 252404 - aeson ansi-terminal attoparsec base base64-bytestring binary 252405 - blaze-html bytestring case-insensitive colour containers directory 252406 - filepath mtl safe text transformers utf8-string xml-conduit 252407 - ]; 252408 - testHaskellDepends = [ 252409 - aeson base bytestring containers Diff directory filepath 252410 - pretty-show QuickCheck tasty tasty-golden tasty-hunit 252411 - tasty-quickcheck text 252412 - ]; 252413 - benchmarkHaskellDepends = [ 252414 - base containers criterion directory filepath text 252415 - ]; 252416 - description = "syntax highlighting library"; 252417 - license = lib.licenses.bsd3; 252418 - }) {}; 252419 - 252420 - "skylighting-core_0_12_3_1" = callPackage 252421 - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base 252422 - , base64-bytestring, binary, blaze-html, bytestring 252423 - , case-insensitive, colour, containers, criterion, Diff, directory 252424 - , filepath, mtl, pretty-show, QuickCheck, safe, tasty, tasty-golden 252425 - , tasty-hunit, tasty-quickcheck, text, transformers, utf8-string 252426 - , xml-conduit 252427 - }: 252428 - mkDerivation { 252429 - pname = "skylighting-core"; 252430 version = "0.12.3.1"; 252431 sha256 = "08svbbfw27zhlblglagxqvsppkdfibqjnx331jdbfrlj0a9pi5h8"; 252432 isLibrary = true; ··· 252446 ]; 252447 description = "syntax highlighting library"; 252448 license = lib.licenses.bsd3; 252449 - hydraPlatforms = lib.platforms.none; 252450 }) {}; 252451 252452 "skylighting-extensions" = callPackage ··· 252470 ({ mkDerivation, base, containers, lucid, skylighting-core, text }: 252471 mkDerivation { 252472 pname = "skylighting-lucid"; 252473 - version = "1.0.1"; 252474 - sha256 = "0igimymq8pcizl4wdmyjafjgdw8xi2059jzmcw64ij18rn6bip8d"; 252475 libraryHaskellDepends = [ 252476 base containers lucid skylighting-core text 252477 ]; ··· 256801 license = lib.licenses.gpl3Only; 256802 }) {}; 256803 256804 "sparse-tensor" = callPackage 256805 ({ mkDerivation, ad, base, bytestring, Cabal, cereal, containers 256806 , deepseq, ghc-typelits-knownnat, ghc-typelits-natnormalise ··· 258785 }: 258786 mkDerivation { 258787 pname = "stache"; 258788 - version = "2.3.1"; 258789 - sha256 = "1a26pwg6y90588yf9sp18w4b2ahr64fxdhy1c3zv0c9pw7bv6k6q"; 258790 - revision = "3"; 258791 - editedCabalFile = "1di10cbxg1xkj1fwimdfqhspk084xg2a1wvff3i2q336xa6jbqfl"; 258792 isLibrary = true; 258793 isExecutable = true; 258794 enableSeparateDataOutput = true; ··· 261348 license = lib.licenses.bsd3; 261349 }) {}; 261350 261351 "storable-record" = callPackage 261352 ({ mkDerivation, base, QuickCheck, semigroups, transformers 261353 , utility-ht ··· 261923 }: 261924 mkDerivation { 261925 pname = "streaming-bytestring"; 261926 - version = "0.2.1"; 261927 - sha256 = "1yri2g0wx2fila25ang04nsv4i12b4yhwqwcfkkpx1sz8fhzibxy"; 261928 - libraryHaskellDepends = [ 261929 - base bytestring deepseq exceptions ghc-prim mmorph mtl resourcet 261930 - streaming transformers transformers-base 261931 - ]; 261932 - testHaskellDepends = [ 261933 - base bytestring resourcet smallcheck streaming tasty tasty-hunit 261934 - tasty-smallcheck transformers 261935 - ]; 261936 - description = "Fast, effectful byte streams"; 261937 - license = lib.licenses.bsd3; 261938 - }) {}; 261939 - 261940 - "streaming-bytestring_0_2_2" = callPackage 261941 - ({ mkDerivation, base, bytestring, deepseq, exceptions, ghc-prim 261942 - , mmorph, mtl, resourcet, smallcheck, streaming, tasty, tasty-hunit 261943 - , tasty-smallcheck, transformers, transformers-base 261944 - }: 261945 - mkDerivation { 261946 - pname = "streaming-bytestring"; 261947 version = "0.2.2"; 261948 sha256 = "01iw8d3lxb72cv6gp6k8w966g9q485zmd5akri2x1n5xdd26lv9h"; 261949 libraryHaskellDepends = [ ··· 261956 ]; 261957 description = "Fast, effectful byte streams"; 261958 license = lib.licenses.bsd3; 261959 - hydraPlatforms = lib.platforms.none; 261960 }) {}; 261961 261962 "streaming-cassava" = callPackage ··· 262630 }: 262631 mkDerivation { 262632 pname = "streamt"; 262633 - version = "0.5.0.0"; 262634 - sha256 = "0r2r6ribk85hwmzdn2imgajb28q5d5gbhysr62bw2jhmd5xy7985"; 262635 - libraryHaskellDepends = [ base logict mtl ]; 262636 - testHaskellDepends = [ 262637 - async base criterion hspec mtl tasty tasty-hunit 262638 - ]; 262639 - description = "Simple, Fair and Terminating Backtracking Monad Transformer"; 262640 - license = lib.licenses.bsd3; 262641 - }) {}; 262642 - 262643 - "streamt_0_5_0_1" = callPackage 262644 - ({ mkDerivation, async, base, criterion, hspec, logict, mtl, tasty 262645 - , tasty-hunit 262646 - }: 262647 - mkDerivation { 262648 - pname = "streamt"; 262649 version = "0.5.0.1"; 262650 sha256 = "0adbn5kh2wqgvwzjgrhcd94abch7if6qz26ihpbm4igwbmwirzgw"; 262651 libraryHaskellDepends = [ base logict mtl ]; ··· 262654 ]; 262655 description = "Simple, Fair and Terminating Backtracking Monad Transformer"; 262656 license = lib.licenses.bsd3; 262657 - hydraPlatforms = lib.platforms.none; 262658 }) {}; 262659 262660 "strelka" = callPackage ··· 263149 }: 263150 mkDerivation { 263151 pname = "string-interpolate"; 263152 - version = "0.3.1.1"; 263153 - sha256 = "0hhzvrs9msyqsxwsqqm55lyxf85vhg4vcsszl735zsbs7431av69"; 263154 - revision = "3"; 263155 - editedCabalFile = "0kpk5mwmi7qzvx0hkiq6pwfyid99ic95zmxc36xxfpw4qxfc7024"; 263156 - libraryHaskellDepends = [ 263157 - base bytestring haskell-src-exts haskell-src-meta split 263158 - template-haskell text text-conversions utf8-string 263159 - ]; 263160 - testHaskellDepends = [ 263161 - base bytestring hspec hspec-core QuickCheck quickcheck-instances 263162 - quickcheck-text quickcheck-unicode template-haskell text 263163 - unordered-containers 263164 - ]; 263165 - benchmarkHaskellDepends = [ 263166 - base bytestring criterion deepseq formatting interpolate 263167 - neat-interpolation QuickCheck text 263168 - ]; 263169 - description = "Haskell string/text/bytestring interpolation that just works"; 263170 - license = lib.licenses.bsd3; 263171 - }) {}; 263172 - 263173 - "string-interpolate_0_3_1_2" = callPackage 263174 - ({ mkDerivation, base, bytestring, criterion, deepseq, formatting 263175 - , haskell-src-exts, haskell-src-meta, hspec, hspec-core 263176 - , interpolate, neat-interpolation, QuickCheck, quickcheck-instances 263177 - , quickcheck-text, quickcheck-unicode, split, template-haskell 263178 - , text, text-conversions, unordered-containers, utf8-string 263179 - }: 263180 - mkDerivation { 263181 - pname = "string-interpolate"; 263182 version = "0.3.1.2"; 263183 sha256 = "0gmph9mikqq8hch9wjyyx6dxfxwhmdfrwsrxkvbk7i24lvi19hhp"; 263184 libraryHaskellDepends = [ ··· 263196 ]; 263197 description = "Haskell string/text/bytestring interpolation that just works"; 263198 license = lib.licenses.bsd3; 263199 - hydraPlatforms = lib.platforms.none; 263200 }) {}; 263201 263202 "string-interpreter" = callPackage ··· 266938 }: 266939 mkDerivation { 266940 pname = "syntactic"; 266941 - version = "3.8.3"; 266942 - sha256 = "1ksznzw5g01xgbr2zs83m0lclbhvhs6lyaszhxykni10lxyxy7v8"; 266943 libraryHaskellDepends = [ 266944 base constraints containers data-hash deepseq mtl syb 266945 template-haskell tree-view ··· 268711 pname = "talash"; 268712 version = "0.1.1.1"; 268713 sha256 = "0sa4ay2dc4srh5wbk72iznjwr5bjjhggafhf27zyyxjhnjvfgsq1"; 268714 isLibrary = true; 268715 isExecutable = true; 268716 libraryHaskellDepends = [ ··· 269150 pname = "taskwarrior"; 269151 version = "0.6.0.2"; 269152 sha256 = "16m4578ybwawiza4fg8gc6ndfc8hpvdkh5bv3ghamwpqyw0aq766"; 269153 libraryHaskellDepends = [ 269154 aeson base bytestring containers process random text time uuid 269155 ]; ··· 269288 }) {}; 269289 269290 "tasty-discover" = callPackage 269291 - ({ mkDerivation, base, containers, directory, filepath, Glob 269292 - , hedgehog, tasty, tasty-hedgehog, tasty-hspec, tasty-hunit 269293 - , tasty-quickcheck, tasty-smallcheck 269294 }: 269295 mkDerivation { 269296 pname = "tasty-discover"; 269297 - version = "4.2.2"; 269298 - sha256 = "1j95njl3ml7cfxnwv0i17ijca84fgyrjs2cfw4g5yh1m4x2zvg34"; 269299 isLibrary = true; 269300 isExecutable = true; 269301 libraryHaskellDepends = [ 269302 - base containers directory filepath Glob 269303 ]; 269304 executableHaskellDepends = [ 269305 base containers directory filepath Glob 269306 ]; 269307 testHaskellDepends = [ 269308 - base containers directory filepath Glob hedgehog tasty 269309 - tasty-hedgehog tasty-hspec tasty-hunit tasty-quickcheck 269310 - tasty-smallcheck 269311 ]; 269312 description = "Test discovery for the tasty framework"; 269313 license = lib.licenses.mit; ··· 269524 }: 269525 mkDerivation { 269526 pname = "tasty-hspec"; 269527 - version = "1.2"; 269528 - sha256 = "0hnq6q4mk2avirb8cgibaxj5m2c4rf5xsqry04zx4nc15la5xniw"; 269529 - revision = "2"; 269530 - editedCabalFile = "0a97zm7lxc7m0qw3i3grwzdmbpar5bf2cj31ip37mh9w1x2nzqvx"; 269531 - libraryHaskellDepends = [ 269532 - base hspec hspec-core QuickCheck tasty tasty-quickcheck 269533 - tasty-smallcheck 269534 - ]; 269535 - description = "Hspec support for the Tasty test framework"; 269536 - license = lib.licenses.bsd3; 269537 - }) {}; 269538 - 269539 - "tasty-hspec_1_2_0_1" = callPackage 269540 - ({ mkDerivation, base, hspec, hspec-core, QuickCheck, tasty 269541 - , tasty-quickcheck, tasty-smallcheck 269542 - }: 269543 - mkDerivation { 269544 - pname = "tasty-hspec"; 269545 version = "1.2.0.1"; 269546 sha256 = "0ibl2xi6mmqad2mriz67nb7pjwwvjik385amp24j9kc7a7zkx091"; 269547 libraryHaskellDepends = [ ··· 269550 ]; 269551 description = "Hspec support for the Tasty test framework"; 269552 license = lib.licenses.bsd3; 269553 - hydraPlatforms = lib.platforms.none; 269554 }) {}; 269555 269556 "tasty-html" = callPackage ··· 269610 }: 269611 mkDerivation { 269612 pname = "tasty-inspection-testing"; 269613 - version = "0.1"; 269614 - sha256 = "18awafrclxg8lfw8gg4ndzfwwpaz8qmad23fi24rhpdj9c7xdyhw"; 269615 libraryHaskellDepends = [ 269616 base ghc inspection-testing tasty template-haskell 269617 ]; ··· 270303 pname = "tdigest"; 270304 version = "0.2.1.1"; 270305 sha256 = "1dvkf7cs8dcr13wza5iyq2qgvz75r33mzgfmhdihw62xzxsqb6d3"; 270306 - revision = "2"; 270307 - editedCabalFile = "0hcsjdd8km8dhydg4npc6mw6yy6bhv4f21zvm8is8h0ci4057asy"; 270308 libraryHaskellDepends = [ 270309 base base-compat binary deepseq reducers semigroupoids transformers 270310 vector vector-algorithms ··· 272952 license = lib.licenses.mit; 272953 }) {}; 272954 272955 - "text-builder-dev_0_3_1" = callPackage 272956 ({ mkDerivation, base, bytestring, criterion, deferred-folds 272957 , QuickCheck, quickcheck-instances, rerebase, split, tasty 272958 , tasty-hunit, tasty-quickcheck, text, transformers 272959 }: 272960 mkDerivation { 272961 pname = "text-builder-dev"; 272962 - version = "0.3.1"; 272963 - sha256 = "18ipiiqrr0hz0yl7lqv2y730vl6mzqp0jg1yir097gp53ky6hzyw"; 272964 libraryHaskellDepends = [ 272965 base bytestring deferred-folds split text transformers 272966 ]; ··· 272972 description = "Edge of developments for \"text-builder\""; 272973 license = lib.licenses.mit; 272974 hydraPlatforms = lib.platforms.none; 272975 }) {}; 272976 272977 "text-containers" = callPackage ··· 273567 license = lib.licenses.bsd3; 273568 }) {}; 273569 273570 "text-short" = callPackage 273571 ({ mkDerivation, base, binary, bytestring, deepseq, ghc-prim 273572 , hashable, tasty, tasty-hunit, tasty-quickcheck, template-haskell ··· 273618 license = lib.licenses.bsd3; 273619 }) {}; 273620 273621 "text-show-instances" = callPackage 273622 ({ mkDerivation, base, base-compat-batteries, bifunctors, binary 273623 , containers, directory, generic-deriving, ghc-boot-th, ghc-prim ··· 273651 testToolDepends = [ hspec-discover ]; 273652 description = "Additional instances for text-show"; 273653 license = lib.licenses.bsd3; 273654 }) {}; 273655 273656 "text-stream-decode" = callPackage ··· 274161 license = lib.licenses.bsd3; 274162 }) {}; 274163 274164 - "th-desugar_1_13" = callPackage 274165 ({ mkDerivation, base, containers, ghc-prim, hspec, HUnit, mtl 274166 , ordered-containers, syb, template-haskell, th-abstraction 274167 , th-lift, th-orphans, transformers-compat 274168 }: 274169 mkDerivation { 274170 pname = "th-desugar"; 274171 - version = "1.13"; 274172 - sha256 = "03jmvlgb7h7dn5dvlb0ryy7zjvdmyp5280cbkyrvfpjw0g5c9k24"; 274173 - revision = "1"; 274174 - editedCabalFile = "1xizqmh5zj85493bnfbd2m9vd6n5cp7hlcyddwap4h0jf2r06qk5"; 274175 libraryHaskellDepends = [ 274176 base containers ghc-prim mtl ordered-containers syb 274177 template-haskell th-abstraction th-lift th-orphans ··· 274213 license = lib.licenses.bsd3; 274214 }) {}; 274215 274216 "th-expand-syns" = callPackage 274217 ({ mkDerivation, base, containers, syb, template-haskell 274218 , th-abstraction ··· 274439 274440 "th-orphans" = callPackage 274441 ({ mkDerivation, base, bytestring, ghc-prim, hspec, hspec-discover 274442 - , mtl, template-haskell, th-compat, th-expand-syns, th-lift 274443 - , th-lift-instances, th-reify-many 274444 - }: 274445 - mkDerivation { 274446 - pname = "th-orphans"; 274447 - version = "0.13.12"; 274448 - sha256 = "03n6qxnpxhbzyzbyrjq77d1y62dwgx39mmxfwmnc04l8pawgrxxz"; 274449 - revision = "2"; 274450 - editedCabalFile = "15660jac7m705jp6nm5lia51ifchbjrr6x3kj5sfij9dbj1f5dkj"; 274451 - libraryHaskellDepends = [ 274452 - base mtl template-haskell th-compat th-expand-syns th-lift 274453 - th-lift-instances th-reify-many 274454 - ]; 274455 - testHaskellDepends = [ 274456 - base bytestring ghc-prim hspec template-haskell th-lift 274457 - ]; 274458 - testToolDepends = [ hspec-discover ]; 274459 - description = "Orphan instances for TH datatypes"; 274460 - license = lib.licenses.bsd3; 274461 - }) {}; 274462 - 274463 - "th-orphans_0_13_13" = callPackage 274464 - ({ mkDerivation, base, bytestring, ghc-prim, hspec, hspec-discover 274465 , mtl, template-haskell, th-compat, th-lift, th-lift-instances 274466 , th-reify-many 274467 }: ··· 274479 testToolDepends = [ hspec-discover ]; 274480 description = "Orphan instances for TH datatypes"; 274481 license = lib.licenses.bsd3; 274482 - hydraPlatforms = lib.platforms.none; 274483 }) {}; 274484 274485 "th-pprint" = callPackage ··· 274504 pname = "th-printf"; 274505 version = "0.7"; 274506 sha256 = "1f9lw0scm2bpnhmhgvywzphxn85ln3xcn8cjyvy8h4cn2ymw4aza"; 274507 libraryHaskellDepends = [ 274508 base charset containers dlist integer-logarithms microlens-platform 274509 mtl parsec semigroups template-haskell text th-lift transformers ··· 278973 pname = "trackit"; 278974 version = "0.7.2"; 278975 sha256 = "1ha28wdc4dabr9qxkbpg9fasfnplicb2pyrn9zmija204nigbcdj"; 278976 - revision = "2"; 278977 - editedCabalFile = "0dinhqmnm23rwg9xd056idbd7351bzbyik4k708h8xlw3pgq62i9"; 278978 isLibrary = false; 278979 isExecutable = true; 278980 executableHaskellDepends = [ ··· 284280 }: 284281 mkDerivation { 284282 pname = "ulid"; 284283 - version = "0.3.0.0"; 284284 - sha256 = "1ghdh18cngwksr1vlqgdh04asm4gcivcpzhizaf6d4z9sl9qz5mp"; 284285 isLibrary = true; 284286 isExecutable = true; 284287 libraryHaskellDepends = [ ··· 284446 }: 284447 mkDerivation { 284448 pname = "unbound-generics"; 284449 - version = "0.4.1"; 284450 - sha256 = "02wwn78fccb37lx95jvr0v2n55kv35nilllb0gj75y8bplya5blb"; 284451 - libraryHaskellDepends = [ 284452 - ansi-wl-pprint base containers contravariant deepseq exceptions mtl 284453 - profunctors template-haskell transformers transformers-compat 284454 - ]; 284455 - testHaskellDepends = [ 284456 - base mtl QuickCheck tasty tasty-hunit tasty-quickcheck 284457 - ]; 284458 - benchmarkHaskellDepends = [ base criterion deepseq ]; 284459 - description = "Support for programming with names and binders using GHC Generics"; 284460 - license = lib.licenses.bsd3; 284461 - }) {}; 284462 - 284463 - "unbound-generics_0_4_2" = callPackage 284464 - ({ mkDerivation, ansi-wl-pprint, base, containers, contravariant 284465 - , criterion, deepseq, exceptions, mtl, profunctors, QuickCheck 284466 - , tasty, tasty-hunit, tasty-quickcheck, template-haskell 284467 - , transformers, transformers-compat 284468 - }: 284469 - mkDerivation { 284470 - pname = "unbound-generics"; 284471 version = "0.4.2"; 284472 sha256 = "1pbpcvkkn360l0f5m7q5piyagvxznghknzjpxc7znb35i3xqywl1"; 284473 libraryHaskellDepends = [ ··· 284480 benchmarkHaskellDepends = [ base criterion deepseq ]; 284481 description = "Support for programming with names and binders using GHC Generics"; 284482 license = lib.licenses.bsd3; 284483 - hydraPlatforms = lib.platforms.none; 284484 }) {}; 284485 284486 "unbound-kind-generics" = callPackage ··· 284898 }: 284899 mkDerivation { 284900 pname = "unicode-collation"; 284901 - version = "0.1.3.1"; 284902 - sha256 = "1b04ml07ghfsh9cmp6b0l8c6ywxrn3c4xs7swvlmxx64asmicf3i"; 284903 - isLibrary = true; 284904 - isExecutable = true; 284905 - libraryHaskellDepends = [ 284906 - base binary bytestring containers parsec template-haskell text 284907 - th-lift-instances 284908 - ]; 284909 - testHaskellDepends = [ 284910 - base bytestring tasty tasty-hunit tasty-quickcheck text 284911 - unicode-transforms 284912 - ]; 284913 - benchmarkHaskellDepends = [ 284914 - base QuickCheck quickcheck-instances tasty-bench text text-icu 284915 - ]; 284916 - description = "Haskell implementation of the Unicode Collation Algorithm"; 284917 - license = lib.licenses.bsd2; 284918 - }) {}; 284919 - 284920 - "unicode-collation_0_1_3_2" = callPackage 284921 - ({ mkDerivation, base, binary, bytestring, containers, parsec 284922 - , QuickCheck, quickcheck-instances, tasty, tasty-bench, tasty-hunit 284923 - , tasty-quickcheck, template-haskell, text, text-icu 284924 - , th-lift-instances, unicode-transforms 284925 - }: 284926 - mkDerivation { 284927 - pname = "unicode-collation"; 284928 version = "0.1.3.2"; 284929 sha256 = "0rnb22h8w42c74l0jl5ygzh4pkpw3x8d9ayrvgapkfx844i9am7c"; 284930 isLibrary = true; ··· 284942 ]; 284943 description = "Haskell implementation of the Unicode Collation Algorithm"; 284944 license = lib.licenses.bsd2; 284945 - hydraPlatforms = lib.platforms.none; 284946 }) {}; 284947 284948 "unicode-data" = callPackage ··· 285144 libraryHaskellDepends = [ base containers logict mtl ]; 285145 description = "Simple generic unification algorithms"; 285146 license = lib.licenses.bsd3; 285147 }) {}; 285148 285149 "uniform-algebras" = callPackage ··· 286053 license = lib.licenses.bsd3; 286054 }) {}; 286055 286056 "unix-compat" = callPackage 286057 ({ mkDerivation, base, unix }: 286058 mkDerivation { ··· 286066 license = lib.licenses.bsd3; 286067 }) {}; 286068 286069 "unix-fcntl" = callPackage 286070 ({ mkDerivation, base, foreign-var }: 286071 mkDerivation { ··· 286607 }: 286608 mkDerivation { 286609 pname = "unpacked-maybe-numeric"; 286610 - version = "0.1.1.0"; 286611 - sha256 = "1bhipjz20zajbkg6zjgw99w1bzdn6w6ixl34m6wnhvz8bms27lm1"; 286612 libraryHaskellDepends = [ base primitive wide-word ]; 286613 testHaskellDepends = [ base QuickCheck quickcheck-classes ]; 286614 description = "maybes of numeric values with fewer indirections"; ··· 289605 pname = "vector"; 289606 version = "0.12.3.1"; 289607 sha256 = "0dczbcisxhhix859dng5zhxkn3xvlnllsq60apqzvmyl5g056jpv"; 289608 - revision = "1"; 289609 - editedCabalFile = "02284cr5f5ghbz18shn8g6jvsgfs0dwgf81kxvf59r2wks8i00h4"; 289610 libraryHaskellDepends = [ base deepseq ghc-prim primitive ]; 289611 testHaskellDepends = [ 289612 base base-orphans doctest HUnit primitive QuickCheck random tasty ··· 292619 broken = true; 292620 }) {}; 292621 292622 "wai-middleware-brotli" = callPackage 292623 ({ mkDerivation, base, binary, bytestring, directory, filepath 292624 , hs-brotli, http-types, mtl, tasty, tasty-hspec, tasty-hunit, unix ··· 295516 description = "Binding to the Webkit library"; 295517 license = lib.licenses.lgpl21Only; 295518 hydraPlatforms = lib.platforms.none; 295519 }) {inherit (pkgs) webkitgtk;}; 295520 295521 "webkitgtk3-javascriptcore" = callPackage ··· 295846 maintainers = with lib.maintainers; [ maralorn ]; 295847 }) {}; 295848 295849 "weeder" = callPackage 295850 ({ mkDerivation, algebraic-graphs, base, bytestring, containers 295851 , dhall, directory, filepath, generic-lens, ghc, lens, mtl ··· 295853 }: 295854 mkDerivation { 295855 pname = "weeder"; 295856 - version = "2.3.0"; 295857 - sha256 = "1l3g0afb0k91qb64kpj18nb53njbv3s5w06rkjf58p7qk6ynk9ig"; 295858 isLibrary = true; 295859 isExecutable = true; 295860 libraryHaskellDepends = [ ··· 295909 pname = "weigh"; 295910 version = "0.0.16"; 295911 sha256 = "13pbjr7fzqy3s9c1nd2jhfwzbpccmpfwdn7y46z9k2bfkch1jam9"; 295912 libraryHaskellDepends = [ 295913 base deepseq ghc mtl process split temporary 295914 ]; ··· 298160 pname = "writer-cps-mtl"; 298161 version = "0.1.1.6"; 298162 sha256 = "0dnx2h4pqmvbkg2hh9c6vhayn6hyzyvs12c0s7rjdba1vihgpy86"; 298163 libraryHaskellDepends = [ 298164 base mtl transformers writer-cps-transformers 298165 ]; ··· 299090 pname = "xeno"; 299091 version = "0.5"; 299092 sha256 = "1i7snivbl0xby5p1wgai1g44qphj91n8chhkfg6vajcf05fr964l"; 299093 enableSeparateDataOutput = true; 299094 libraryHaskellDepends = [ 299095 array base bytestring deepseq mtl mutable-containers vector ··· 299608 pname = "xml-conduit"; 299609 version = "1.9.1.1"; 299610 sha256 = "1zzh7xnmbm68dab1vqsjkr6ghxqgnla5nik4amrwlmhbdih1gcdx"; 299611 setupHaskellDepends = [ base Cabal cabal-doctest ]; 299612 libraryHaskellDepends = [ 299613 attoparsec base blaze-html blaze-markup bytestring conduit ··· 303988 }: 303989 mkDerivation { 303990 pname = "yesod-page-cursor"; 303991 - version = "2.0.0.10"; 303992 - sha256 = "0ygj3k86lxq59pf5z671kyzgkfvc8csgsg9wb6ds9wy0vym1jd13"; 303993 - libraryHaskellDepends = [ 303994 - aeson base bytestring containers http-link-header network-uri text 303995 - unliftio yesod-core 303996 - ]; 303997 - testHaskellDepends = [ 303998 - aeson base bytestring hspec hspec-expectations-lifted 303999 - http-link-header http-types lens lens-aeson monad-logger mtl 304000 - persistent persistent-sqlite persistent-template scientific text 304001 - time unliftio unliftio-core wai-extra yesod yesod-core yesod-test 304002 - ]; 304003 - license = lib.licenses.mit; 304004 - }) {}; 304005 - 304006 - "yesod-page-cursor_2_0_1_0" = callPackage 304007 - ({ mkDerivation, aeson, base, bytestring, containers, hspec 304008 - , hspec-expectations-lifted, http-link-header, http-types, lens 304009 - , lens-aeson, monad-logger, mtl, network-uri, persistent 304010 - , persistent-sqlite, persistent-template, scientific, text, time 304011 - , unliftio, unliftio-core, wai-extra, yesod, yesod-core, yesod-test 304012 - }: 304013 - mkDerivation { 304014 - pname = "yesod-page-cursor"; 304015 version = "2.0.1.0"; 304016 sha256 = "1isgw7299nc656aqdk4blraz9kh1raki2nngz1jaddjbd6x56b40"; 304017 libraryHaskellDepends = [ ··· 304025 time unliftio unliftio-core wai-extra yesod yesod-core yesod-test 304026 ]; 304027 license = lib.licenses.mit; 304028 - hydraPlatforms = lib.platforms.none; 304029 }) {}; 304030 304031 "yesod-paginate" = callPackage ··· 306084 testToolDepends = [ purescript ]; 306085 description = "Zephyr, tree-shaking for the PureScript language"; 306086 license = lib.licenses.mpl20; 306087 }) {}; 306088 306089 "zephyr-copilot" = callPackage ··· 307368 }: 307369 mkDerivation { 307370 pname = "zxcvbn-hs"; 307371 - version = "0.3.0.0"; 307372 - sha256 = "13rz0bjvcj9hrxnxqbw7bl6529yz4aqawq6abssj4nmxbmgrj7xf"; 307373 isLibrary = true; 307374 isExecutable = true; 307375 libraryHaskellDepends = [
··· 1136 }: 1137 mkDerivation { 1138 pname = "AspectAG"; 1139 + version = "0.7.0.1"; 1140 + sha256 = "00cprqks3lany16zbmm250p1qms4hampwck44m688z2xk388gakn"; 1141 + revision = "2"; 1142 + editedCabalFile = "0hlgkm8ph28x1dkjprjjajdwk8y7ghsb9i6vr5jbr046vzrziblp"; 1143 libraryHaskellDepends = [ 1144 base containers ghc-prim loch-th mtl poly-rec requirements 1145 template-haskell ··· 2101 "BlogLiterately-diagrams" = callPackage 2102 ({ mkDerivation, base, BlogLiterately, containers, diagrams-builder 2103 , diagrams-lib, diagrams-rasterific, directory, filepath 2104 + , JuicyPixels, pandoc, safe, split, text 2105 }: 2106 mkDerivation { 2107 pname = "BlogLiterately-diagrams"; 2108 + version = "0.3"; 2109 + sha256 = "0l9h8anjbvm49fg1niy4sg8cxr3fl1kvmqfb1lfdi5vypdgqqwms"; 2110 isLibrary = true; 2111 isExecutable = true; 2112 libraryHaskellDepends = [ 2113 base BlogLiterately containers diagrams-builder diagrams-lib 2114 diagrams-rasterific directory filepath JuicyPixels pandoc safe 2115 + split text 2116 ]; 2117 executableHaskellDepends = [ base BlogLiterately ]; 2118 description = "Include images in blog posts with inline diagrams code"; ··· 3031 }: 3032 mkDerivation { 3033 pname = "Chart"; 3034 + version = "1.9.4"; 3035 + sha256 = "0ylxin419s35xq1j4hcnylrch3m252wqdkfjp5b323qhv4a8y1im"; 3036 libraryHaskellDepends = [ 3037 array base colour data-default-class lens mtl old-locale 3038 operational time vector ··· 3067 }: 3068 mkDerivation { 3069 pname = "Chart-diagrams"; 3070 + version = "1.9.4"; 3071 + sha256 = "0rkkmyfszzpnbw1s6lqg2fadkbvgqrxrp1rvj9v45ihzwnpbg758"; 3072 enableSeparateDataOutput = true; 3073 libraryHaskellDepends = [ 3074 base blaze-markup bytestring Chart colour containers ··· 7812 ]; 7813 description = "A graphical REPL and development environment for Haskell"; 7814 license = lib.licenses.bsd3; 7815 + hydraPlatforms = lib.platforms.none; 7816 }) {}; 7817 7818 "GuiTV" = callPackage ··· 9102 executablePkgconfigDepends = [ plplotd-gnome2 ]; 9103 description = "A minimal monadic PLplot interface for Haskell"; 9104 license = lib.licenses.bsd3; 9105 + hydraPlatforms = lib.platforms.none; 9106 }) {plplotd-gnome2 = null;}; 9107 9108 "HPong" = callPackage ··· 12918 license = lib.licenses.bsd3; 12919 }) {}; 12920 12921 + "ListLike_4_7_7" = callPackage 12922 + ({ mkDerivation, array, base, bytestring, containers, deepseq 12923 + , dlist, fmlist, HUnit, QuickCheck, random, text, utf8-string 12924 + , vector 12925 + }: 12926 + mkDerivation { 12927 + pname = "ListLike"; 12928 + version = "4.7.7"; 12929 + sha256 = "0h4yfzrf3ljvzf3x75nx791bpxlmdi7f42ff0xyfk8d498iws08a"; 12930 + libraryHaskellDepends = [ 12931 + array base bytestring containers deepseq dlist fmlist text 12932 + utf8-string vector 12933 + ]; 12934 + testHaskellDepends = [ 12935 + array base bytestring containers dlist fmlist HUnit QuickCheck 12936 + random text utf8-string vector 12937 + ]; 12938 + description = "Generalized support for list-like structures"; 12939 + license = lib.licenses.bsd3; 12940 + hydraPlatforms = lib.platforms.none; 12941 + }) {}; 12942 + 12943 "ListT" = callPackage 12944 ({ mkDerivation, base, smallcheck, tasty, tasty-smallcheck 12945 , transformers, util ··· 13724 pname = "MissingH"; 13725 version = "1.5.0.1"; 13726 sha256 = "0c92fdv32nq51kfdizi3lpxmnvscsgk6marfzaycd7k05aka8byb"; 13727 + revision = "1"; 13728 + editedCabalFile = "18jigc9mis823dhlx14yd0r59618jwqw93hsdyzmdrgfaigd6qpn"; 13729 libraryHaskellDepends = [ 13730 array base containers directory filepath hslogger mtl network 13731 network-bsd old-locale old-time parsec process regex-compat time ··· 18014 hydraPlatforms = lib.platforms.none; 18015 }) {}; 18016 18017 "SVGFonts" = callPackage 18018 ({ mkDerivation, attoparsec, base, blaze-markup, blaze-svg 18019 , bytestring, cereal, cereal-vector, containers, data-default-class ··· 19828 }) {}; 19829 19830 "TLT" = callPackage 19831 + ({ mkDerivation, ansi-terminal, base, free, mtl, resourcet 19832 + , STMonadTrans, transformers 19833 }: 19834 mkDerivation { 19835 pname = "TLT"; 19836 + version = "0.3.0.0"; 19837 + sha256 = "0pl9ga3vr9yj4f4k2pisq8yarhbsbfvj9q3n24f0db8csq363yc5"; 19838 isLibrary = true; 19839 isExecutable = true; 19840 libraryHaskellDepends = [ 19841 + ansi-terminal base free mtl resourcet STMonadTrans transformers 19842 ]; 19843 executableHaskellDepends = [ 19844 + ansi-terminal base free mtl resourcet STMonadTrans transformers 19845 ]; 19846 testHaskellDepends = [ 19847 + ansi-terminal base free mtl resourcet STMonadTrans transformers 19848 ]; 19849 description = "Testing in monads and transformers without explicit specs"; 19850 license = lib.licenses.lgpl3Only; ··· 20033 license = lib.licenses.bsd3; 20034 hydraPlatforms = lib.platforms.none; 20035 broken = true; 20036 + }) {}; 20037 + 20038 + "TastyTLT" = callPackage 20039 + ({ mkDerivation, ansi-terminal, base, free, mtl, resourcet 20040 + , STMonadTrans, tagged, tasty, TLT, transformers 20041 + }: 20042 + mkDerivation { 20043 + pname = "TastyTLT"; 20044 + version = "0.0.0.0"; 20045 + sha256 = "0xcwsgn5d8gsingxw6nq12gibxc3gn99bqr2pzbflysyygwf4gz1"; 20046 + isLibrary = true; 20047 + isExecutable = true; 20048 + libraryHaskellDepends = [ 20049 + ansi-terminal base free mtl resourcet STMonadTrans tagged tasty TLT 20050 + transformers 20051 + ]; 20052 + executableHaskellDepends = [ 20053 + ansi-terminal base free mtl resourcet STMonadTrans tagged tasty TLT 20054 + transformers 20055 + ]; 20056 + testHaskellDepends = [ 20057 + ansi-terminal base free mtl resourcet STMonadTrans tagged tasty TLT 20058 + transformers 20059 + ]; 20060 + description = "Run TLT tests from Tasty"; 20061 + license = lib.licenses.lgpl3Only; 20062 }) {}; 20063 20064 "Taxonomy" = callPackage ··· 24268 }: 24269 mkDerivation { 24270 pname = "ad"; 24271 version = "4.5.1"; 24272 sha256 = "08hx8ww93x2hg6qxfypd9hyqqcp7c70w17i6hs03qmk4i433h2b9"; 24273 libraryHaskellDepends = [ ··· 24277 benchmarkHaskellDepends = [ base criterion erf ]; 24278 description = "Automatic Differentiation"; 24279 license = lib.licenses.bsd3; 24280 }) {}; 24281 24282 "ad-delcont" = callPackage ··· 24845 license = lib.licenses.bsd3; 24846 }) {}; 24847 24848 + "aeson-commit_1_5" = callPackage 24849 + ({ mkDerivation, aeson, aeson-qq, base, hspec, text, transformers 24850 + }: 24851 + mkDerivation { 24852 + pname = "aeson-commit"; 24853 + version = "1.5"; 24854 + sha256 = "1xblprnxnx7q1mf7qp47ilkd6i8s36ixdlb75dqr297izn0sxp39"; 24855 + libraryHaskellDepends = [ aeson base text transformers ]; 24856 + testHaskellDepends = [ aeson aeson-qq base hspec text ]; 24857 + description = "Parse Aeson data with commitment"; 24858 + license = lib.licenses.bsd3; 24859 + hydraPlatforms = lib.platforms.none; 24860 + }) {}; 24861 + 24862 "aeson-compat" = callPackage 24863 ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base 24864 , base-compat, base-orphans, bytestring, containers, exceptions ··· 24967 license = lib.licenses.bsd3; 24968 }) {}; 24969 24970 + "aeson-diff_1_1_0_13" = callPackage 24971 + ({ mkDerivation, aeson, base, bytestring, Cabal, cabal-doctest 24972 + , directory, doctest, edit-distance-vector, filepath, Glob 24973 + , optparse-applicative, QuickCheck, scientific, text, vector, yaml 24974 + }: 24975 + mkDerivation { 24976 + pname = "aeson-diff"; 24977 + version = "1.1.0.13"; 24978 + sha256 = "0sd13q0nj0k1sam5xfj6dcjcki18f375sa69hm6i4xc6snfhn3cb"; 24979 + isLibrary = true; 24980 + isExecutable = true; 24981 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 24982 + libraryHaskellDepends = [ 24983 + aeson base bytestring edit-distance-vector scientific text vector 24984 + ]; 24985 + executableHaskellDepends = [ 24986 + aeson base bytestring optparse-applicative yaml 24987 + ]; 24988 + testHaskellDepends = [ 24989 + aeson base bytestring directory doctest filepath Glob QuickCheck 24990 + vector 24991 + ]; 24992 + description = "Extract and apply patches to JSON documents"; 24993 + license = lib.licenses.bsd3; 24994 + hydraPlatforms = lib.platforms.none; 24995 + }) {}; 24996 + 24997 "aeson-diff-generic" = callPackage 24998 ({ mkDerivation, aeson, aeson-diff, base, base-compat, bytestring 24999 , containers, dlist, hashable, lens, scientific, tagged ··· 36517 }: 36518 mkDerivation { 36519 pname = "aura"; 36520 + version = "3.2.9"; 36521 + sha256 = "0hw96090gb4rf6n6mf9mn2y50sjgcvny2ipdd9720an33nhpsd3m"; 36522 isLibrary = true; 36523 isExecutable = true; 36524 libraryHaskellDepends = [ ··· 45601 }: 45602 mkDerivation { 45603 pname = "bloodhound"; 45604 + version = "0.20.0.0"; 45605 + sha256 = "175w602jvjrf2j1jaygj4spznyq66ga5mkbpfi6nzrygv609dbrh"; 45606 libraryHaskellDepends = [ 45607 aeson base blaze-builder bytestring containers exceptions hashable 45608 http-client http-types mtl network-uri scientific semigroups semver ··· 45851 executablePkgconfigDepends = [ gtk2 ]; 45852 description = "full-featured tiling for the GNOME desktop environment"; 45853 license = lib.licenses.bsd3; 45854 + hydraPlatforms = lib.platforms.none; 45855 }) {inherit (pkgs) gtk2;}; 45856 45857 "bluetileutils" = callPackage ··· 47280 license = lib.licenses.bsd3; 47281 }) {}; 47282 47283 + "brick_0_69" = callPackage 47284 + ({ mkDerivation, base, bytestring, config-ini, containers 47285 + , contravariant, data-clist, deepseq, directory, dlist, exceptions 47286 + , filepath, microlens, microlens-mtl, microlens-th, QuickCheck, stm 47287 + , template-haskell, text, text-zipper, transformers, unix, vector 47288 + , vty, word-wrap 47289 + }: 47290 + mkDerivation { 47291 + pname = "brick"; 47292 + version = "0.69"; 47293 + sha256 = "1q963gpcjcrnsyrypkb238ay8lbkq8745pxkanmhy4m40gvk5j94"; 47294 + isLibrary = true; 47295 + isExecutable = true; 47296 + libraryHaskellDepends = [ 47297 + base bytestring config-ini containers contravariant data-clist 47298 + deepseq directory dlist exceptions filepath microlens microlens-mtl 47299 + microlens-th stm template-haskell text text-zipper transformers 47300 + unix vector vty word-wrap 47301 + ]; 47302 + testHaskellDepends = [ 47303 + base containers microlens QuickCheck vector 47304 + ]; 47305 + description = "A declarative terminal user interface library"; 47306 + license = lib.licenses.bsd3; 47307 + hydraPlatforms = lib.platforms.none; 47308 + }) {}; 47309 + 47310 "brick-dropdownmenu" = callPackage 47311 ({ mkDerivation, base, brick, containers, microlens, microlens-ghc 47312 , microlens-th, pointedlist, vector, vty ··· 48090 }: 48091 mkDerivation { 48092 pname = "buffer-builder-aeson"; 48093 + version = "0.2.0.5"; 48094 + sha256 = "19drq1rqg06czl9aswv432yl9kkdzgkxyzfy526kzy22ffpm4asr"; 48095 libraryHaskellDepends = [ 48096 aeson base buffer-builder bytestring integer-gmp scientific 48097 unordered-containers vector ··· 49318 }: 49319 mkDerivation { 49320 pname = "bytestring-conversion"; 49321 version = "0.3.2"; 49322 sha256 = "0ls1jqf4r2hk0mcxmlviw6vgs0cn1db99w2fggsg6x39pi31rk8c"; 49323 libraryHaskellDepends = [ ··· 49331 ]; 49332 description = "Type-classes to convert values to and from ByteString"; 49333 license = lib.licenses.mpl20; 49334 }) {}; 49335 49336 "bytestring-csv" = callPackage ··· 50488 pname = "cabal-doctest"; 50489 version = "1.0.9"; 50490 sha256 = "0wxs0xkspc80h0g8ks792lrzldxvcnhc9rja1j0k678ijs20hmjm"; 50491 + revision = "1"; 50492 + editedCabalFile = "0dw9h3zqivzzisjz0g3ccb10fwz858dhvy6hvwm5i1sj80wm8imd"; 50493 libraryHaskellDepends = [ base Cabal directory filepath ]; 50494 description = "A Setup.hs helper for running doctests"; 50495 license = lib.licenses.bsd3; ··· 50700 pname = "cabal-info"; 50701 version = "0.2.1"; 50702 sha256 = "1gf4f80964l9mj53rn0anciz6p0035lrcc0lxbnh5dgh3iiap14l"; 50703 + revision = "1"; 50704 + editedCabalFile = "1cmwk131swxkzc9d7i2q4y833wi5vfppnw6178w5wmnxsjz1vgkk"; 50705 isLibrary = true; 50706 isExecutable = true; 50707 libraryHaskellDepends = [ ··· 51316 pname = "cabal2nix"; 51317 version = "2.18.0"; 51318 sha256 = "11hzic1l7amd2hwqwgfmy2r855z9w0m2rvvx7r52x347q0nn142b"; 51319 + revision = "1"; 51320 + editedCabalFile = "0j682816qdxaqm56bqjigjg0c0nl4jf68fg01f73xhbr486lzvga"; 51321 isLibrary = true; 51322 isExecutable = true; 51323 libraryHaskellDepends = [ ··· 54285 pname = "cborg"; 54286 version = "0.2.7.0"; 54287 sha256 = "076656vq2qabhdnwzifc5gsj20vwh69vhy19dh0qa1f2lqxrzfvq"; 54288 + revision = "1"; 54289 + editedCabalFile = "02n2d8i0yc5qk77r5b63hqvd79ygcdk1pnf445nmp4bfsjvv8jyj"; 54290 libraryHaskellDepends = [ 54291 array base bytestring containers deepseq ghc-bignum ghc-prim half 54292 primitive text ··· 54592 pname = "cereal"; 54593 version = "0.5.8.2"; 54594 sha256 = "0kvnlm22qdmb7g2jz7imsvh799q4nvms1ni0cbba5vigp5ai64hp"; 54595 + revision = "1"; 54596 + editedCabalFile = "16hdvwa1qpwicn512mnsksi4zdnwmqnn9sdga4iy3jza4rj9lzgy"; 54597 libraryHaskellDepends = [ 54598 array base bytestring containers ghc-prim 54599 ]; ··· 58292 }: 58293 mkDerivation { 58294 pname = "cleff"; 58295 + version = "0.3.3.0"; 58296 + sha256 = "0fnpk28nhafypp7p1ay1760sin9hh06dz23r68gmm93i879ayl9b"; 58297 libraryHaskellDepends = [ 58298 atomic-primops base containers exceptions microlens monad-control 58299 primitive template-haskell th-abstraction transformers-base ··· 61365 license = lib.licenses.bsd3; 61366 }) {}; 61367 61368 + "comfort-array_0_5_1_1" = callPackage 61369 + ({ mkDerivation, base, ChasingBottoms, containers, deepseq 61370 + , doctest-exitcode-stdio, doctest-lib, guarded-allocation 61371 + , non-empty, prelude-compat, primitive, QuickCheck, semigroups 61372 + , storable-record, storablevector, tagged, transformers, utility-ht 61373 + }: 61374 + mkDerivation { 61375 + pname = "comfort-array"; 61376 + version = "0.5.1.1"; 61377 + sha256 = "07rajrpp495g17naywybkrydd67ixiav5g8rayavwabvyrybnmgy"; 61378 + libraryHaskellDepends = [ 61379 + base containers deepseq guarded-allocation non-empty prelude-compat 61380 + primitive QuickCheck semigroups storable-record storablevector 61381 + tagged transformers utility-ht 61382 + ]; 61383 + testHaskellDepends = [ 61384 + base ChasingBottoms containers doctest-exitcode-stdio doctest-lib 61385 + QuickCheck tagged 61386 + ]; 61387 + description = "Arrays where the index type is a function of the shape type"; 61388 + license = lib.licenses.bsd3; 61389 + hydraPlatforms = lib.platforms.none; 61390 + }) {}; 61391 + 61392 "comfort-array-shape" = callPackage 61393 ({ mkDerivation, base, ChasingBottoms, comfort-array, containers 61394 , doctest-exitcode-stdio, doctest-lib, fixed-length, non-empty ··· 62195 description = "Parse a Pandoc to a composite value"; 62196 license = lib.licenses.mit; 62197 hydraPlatforms = lib.platforms.none; 62198 + broken = true; 62199 }) {}; 62200 62201 "compdoc-dhall-decoder" = callPackage ··· 62440 }: 62441 mkDerivation { 62442 pname = "composite-aeson"; 62443 + version = "0.8.0.0"; 62444 + sha256 = "0j74nz3ih5hyl8ljld9m9nd1zip9ibpm55bavgzpp2wknxsrkwzg"; 62445 libraryHaskellDepends = [ 62446 aeson aeson-better-errors base composite-base containers 62447 contravariant generic-deriving hashable lens mmorph mtl profunctors ··· 62456 ]; 62457 description = "JSON for Vinyl records"; 62458 license = lib.licenses.bsd3; 62459 }) {}; 62460 62461 "composite-aeson-cofree-list" = callPackage ··· 62471 ]; 62472 description = "Print a Cofree [] as a JSON value"; 62473 license = lib.licenses.mit; 62474 }) {}; 62475 62476 "composite-aeson-path" = callPackage 62477 ({ mkDerivation, base, composite-aeson, path }: 62478 mkDerivation { 62479 pname = "composite-aeson-path"; 62480 + version = "0.8.0.0"; 62481 + sha256 = "05n7kcgxgwc06ja3yhspmidi5i4a5j5xj8ivlkh7g5plm4crrvlp"; 62482 libraryHaskellDepends = [ base composite-aeson path ]; 62483 description = "Formatting data for the path library"; 62484 license = lib.licenses.bsd3; 62485 hydraPlatforms = lib.platforms.none; 62486 + broken = true; 62487 }) {}; 62488 62489 "composite-aeson-refined" = callPackage ··· 62492 }: 62493 mkDerivation { 62494 pname = "composite-aeson-refined"; 62495 + version = "0.8.0.0"; 62496 + sha256 = "109fd2y7c0jq620rdyghkk6f4ikx8ajxxw7zia6dq3zz5rkpqj16"; 62497 libraryHaskellDepends = [ 62498 aeson-better-errors base composite-aeson mtl refined 62499 ]; 62500 description = "composite-aeson support for Refined from the refined package"; 62501 license = lib.licenses.bsd3; 62502 }) {}; 62503 62504 "composite-aeson-throw" = callPackage ··· 62514 ]; 62515 description = "MonadThrow behaviour for composite-aeson"; 62516 license = lib.licenses.mit; 62517 }) {}; 62518 62519 "composite-aeson-writeonly" = callPackage ··· 62528 ]; 62529 description = "WriteOnly indicators for composite-aeson"; 62530 license = lib.licenses.mit; 62531 }) {}; 62532 62533 "composite-base" = callPackage ··· 62537 }: 62538 mkDerivation { 62539 pname = "composite-base"; 62540 + version = "0.8.0.0"; 62541 + sha256 = "1zl2jxgsa55zkzrji4cwfrf38ijm8qby66rk7wxl3nri69914d0i"; 62542 libraryHaskellDepends = [ 62543 base deepseq exceptions lens monad-control mtl profunctors 62544 template-haskell text transformers transformers-base unliftio-core ··· 62557 ({ mkDerivation, base, binary, composite-base }: 62558 mkDerivation { 62559 pname = "composite-binary"; 62560 + version = "0.8.0.0"; 62561 + sha256 = "1qq8jslsr58kpvrbhhv27x5vn564y8fiq9djdvlqri10012v1bbm"; 62562 libraryHaskellDepends = [ base binary composite-base ]; 62563 description = "Orphan binary instances"; 62564 license = lib.licenses.bsd3; ··· 62581 ]; 62582 description = "Csv parsing functionality for composite"; 62583 license = lib.licenses.mit; 62584 + hydraPlatforms = lib.platforms.none; 62585 + broken = true; 62586 }) {}; 62587 62588 "composite-dhall" = callPackage ··· 62599 ]; 62600 description = "Dhall instances for composite records"; 62601 license = lib.licenses.mit; 62602 + hydraPlatforms = lib.platforms.none; 62603 + broken = true; 62604 }) {}; 62605 62606 "composite-ekg" = callPackage ··· 62615 ]; 62616 description = "EKG Metrics for Vinyl records"; 62617 license = lib.licenses.bsd3; 62618 + hydraPlatforms = lib.platforms.none; 62619 + broken = true; 62620 }) {}; 62621 62622 "composite-hashable" = callPackage 62623 ({ mkDerivation, base, composite-base, hashable }: 62624 mkDerivation { 62625 pname = "composite-hashable"; 62626 + version = "0.8.0.0"; 62627 + sha256 = "12rb0iaxlx1hci14pa98maw0pjghrnirxfn5z1mrn139938wdha6"; 62628 libraryHaskellDepends = [ base composite-base hashable ]; 62629 description = "Orphan hashable instances"; 62630 license = lib.licenses.bsd3; ··· 62638 pname = "composite-ix"; 62639 version = "0.0.1.0"; 62640 sha256 = "0kyy3fm1z9w2mwrhwn3gz5hpvykzsnij0rrsqi2fh3gd1dsxgc6c"; 62641 + revision = "1"; 62642 + editedCabalFile = "1ngh5b814hp64mh91h9h7qw29yz3ir7nli3nz6klpimnnddr6871"; 62643 libraryHaskellDepends = [ 62644 base composite-base containers lens nonempty-containers vector 62645 vinyl ··· 62657 libraryHaskellDepends = [ base composite-base lens vinyl ]; 62658 description = "Extra lens functions for composite"; 62659 license = lib.licenses.mit; 62660 + hydraPlatforms = lib.platforms.none; 62661 + broken = true; 62662 }) {}; 62663 62664 "composite-opaleye" = callPackage ··· 62668 }: 62669 mkDerivation { 62670 pname = "composite-opaleye"; 62671 + version = "0.8.0.0"; 62672 + sha256 = "1h0xa0x038mgpmp9chycgf9bm8w4zfnsdcfzb4zxjw1hyv8csl8s"; 62673 libraryHaskellDepends = [ 62674 base bytestring composite-base lens opaleye postgresql-simple 62675 product-profunctors profunctors template-haskell text vinyl ··· 62692 }: 62693 mkDerivation { 62694 pname = "composite-swagger"; 62695 + version = "0.8.0.0"; 62696 + sha256 = "1ikq68bnfgxa003y0q3g512h40and5l0k4qm3yb7bpbinbip9123"; 62697 libraryHaskellDepends = [ 62698 base composite-base insert-ordered-containers lens swagger2 62699 template-haskell text vinyl ··· 62704 ]; 62705 description = "Swagger for Vinyl records"; 62706 license = lib.licenses.bsd3; 62707 }) {}; 62708 62709 "composite-tuple" = callPackage ··· 63415 }: 63416 mkDerivation { 63417 pname = "concurrent-output"; 63418 + version = "1.10.16"; 63419 + sha256 = "0l4k0bkq5bddqraf14g3ngyzwff17f3ngg4axlilcl3zf3c4bamh"; 63420 libraryHaskellDepends = [ 63421 ansi-terminal async base directory exceptions process stm 63422 terminal-size text transformers unix ··· 63836 license = lib.licenses.mit; 63837 }) {}; 63838 63839 + "conduit-concurrent-map_0_1_3" = callPackage 63840 + ({ mkDerivation, base, conduit, containers, hspec, HUnit, mtl 63841 + , QuickCheck, resourcet, say, unliftio, unliftio-core, vector 63842 + }: 63843 + mkDerivation { 63844 + pname = "conduit-concurrent-map"; 63845 + version = "0.1.3"; 63846 + sha256 = "0mpbklyfqdc1wzx5z4dy2x2y5zi8bb7p83q04csybj5c5f4136yq"; 63847 + libraryHaskellDepends = [ 63848 + base conduit containers mtl resourcet unliftio unliftio-core vector 63849 + ]; 63850 + testHaskellDepends = [ base conduit hspec HUnit QuickCheck say ]; 63851 + description = "Concurrent, order-preserving mapping Conduit"; 63852 + license = lib.licenses.mit; 63853 + hydraPlatforms = lib.platforms.none; 63854 + }) {}; 63855 + 63856 "conduit-connection" = callPackage 63857 ({ mkDerivation, base, bytestring, conduit, connection, HUnit 63858 , network, resourcet, test-framework, test-framework-hunit ··· 64798 }: 64799 mkDerivation { 64800 pname = "configurator-pg"; 64801 + version = "0.2.6"; 64802 + sha256 = "0zlj733fyw0iiczjzzp9mlgywd175crp853wyp9b1gq1m2j6vxnm"; 64803 libraryHaskellDepends = [ 64804 base containers megaparsec protolude scientific text 64805 ]; ··· 65293 }: 65294 mkDerivation { 65295 pname = "constraints"; 65296 version = "0.13.4"; 65297 sha256 = "0d248szyp70k1qlivsimk0j5vz9hdx1alhismry5v35qyinr91j1"; 65298 libraryHaskellDepends = [ ··· 65303 testToolDepends = [ hspec-discover ]; 65304 description = "Constraint manipulation"; 65305 license = lib.licenses.bsd2; 65306 }) {}; 65307 65308 "constraints-deriving" = callPackage ··· 66376 license = lib.licenses.bsd3; 66377 }) {}; 66378 66379 + "convertible_1_1_1_1" = callPackage 66380 + ({ mkDerivation, base, bytestring, containers, mtl, old-time 66381 + , QuickCheck, text, time 66382 + }: 66383 + mkDerivation { 66384 + pname = "convertible"; 66385 + version = "1.1.1.1"; 66386 + sha256 = "1vwc6h1z88xkw4bq3js8x9x86jnk3amdskyksca77p0kwiqbs7lr"; 66387 + libraryHaskellDepends = [ 66388 + base bytestring containers mtl old-time text time 66389 + ]; 66390 + testHaskellDepends = [ base containers old-time QuickCheck time ]; 66391 + description = "Typeclasses and instances for converting between types"; 66392 + license = lib.licenses.bsd3; 66393 + hydraPlatforms = lib.platforms.none; 66394 + }) {}; 66395 + 66396 "convertible-ascii" = callPackage 66397 ({ mkDerivation, ascii, base, base-unicode-symbols, blaze-builder 66398 , bytestring, convertible-text, failure, text ··· 66813 }: 66814 mkDerivation { 66815 pname = "core-telemetry"; 66816 + version = "0.2.2.0"; 66817 + sha256 = "1l2h14x375v5dfamjbmknx28kyi18l2anv46887807bd3yz84552"; 66818 libraryHaskellDepends = [ 66819 async base bytestring chronologique core-data core-program 66820 core-text exceptions http-streams io-streams mtl network-info ··· 66881 }: 66882 mkDerivation { 66883 pname = "core-webserver-warp"; 66884 + version = "0.1.1.5"; 66885 + sha256 = "0i8w0fga1x2hm3hhacyi7xmi86dhglw78786wijghwpqlfgayy9w"; 66886 libraryHaskellDepends = [ 66887 async base bytestring core-data core-program core-telemetry 66888 core-text http-types http2 mtl safe-exceptions vault wai warp ··· 70234 }: 70235 mkDerivation { 70236 pname = "cue-sheet"; 70237 + version = "2.0.2"; 70238 + sha256 = "0n8a5m5qlz8dz03sphj9pybfjfkc0gngpmh56h6idj88frn1z947"; 70239 enableSeparateDataOutput = true; 70240 libraryHaskellDepends = [ 70241 base bytestring containers exceptions megaparsec mtl QuickCheck ··· 79327 }: 79328 mkDerivation { 79329 pname = "dino"; 79330 + version = "0.1.3"; 79331 + sha256 = "13p5bivvl5cicv61rnx268i4156vgxiz9cf20xfrwz4pdxffr3al"; 79332 libraryHaskellDepends = [ 79333 ansi-wl-pprint base containers errors exceptions hashable 79334 monad-loops mtl text transformers tree-view unordered-containers ··· 80910 maintainers = with lib.maintainers; [ peti ]; 80911 }) {}; 80912 80913 + "distribution-nixpkgs_1_7_0" = callPackage 80914 + ({ mkDerivation, aeson, base, bytestring, Cabal, containers 80915 + , deepseq, directory, hspec, language-nix, lens, pretty, process 80916 + }: 80917 + mkDerivation { 80918 + pname = "distribution-nixpkgs"; 80919 + version = "1.7.0"; 80920 + sha256 = "007riyq6irmzzmf3gynaa5hpz8a4khg8wl4blyz78c59bqblpw69"; 80921 + enableSeparateDataOutput = true; 80922 + libraryHaskellDepends = [ 80923 + aeson base bytestring Cabal containers deepseq language-nix lens 80924 + pretty process 80925 + ]; 80926 + testHaskellDepends = [ 80927 + aeson base Cabal deepseq directory hspec language-nix lens 80928 + ]; 80929 + description = "Types and functions to manipulate the Nixpkgs distribution"; 80930 + license = lib.licenses.bsd3; 80931 + hydraPlatforms = lib.platforms.none; 80932 + maintainers = with lib.maintainers; [ peti ]; 80933 + }) {}; 80934 + 80935 "distribution-opensuse" = callPackage 80936 ({ mkDerivation, aeson, base, binary, bytestring, containers 80937 , deepseq, Diff, extra, foldl, hashable, hsemail, mtl, parsec-class ··· 81125 ({ mkDerivation, base, containers, mtl, pretty }: 81126 mkDerivation { 81127 pname = "djinn-lib"; 81128 + version = "0.0.1.4"; 81129 + sha256 = "1s4kx6h6vj0hi2v87q95jb2wpg6hgq5qiswv0lh5qhmnb367c8w8"; 81130 libraryHaskellDepends = [ base containers mtl pretty ]; 81131 description = "Generate Haskell code from a type. Library extracted from djinn package."; 81132 license = lib.licenses.bsd3; ··· 82202 broken = true; 82203 }) {}; 82204 82205 + "doctest-parallel_0_2_3" = callPackage 82206 + ({ mkDerivation, base, base-compat, Cabal, code-page, containers 82207 + , deepseq, directory, exceptions, extra, filepath, ghc, ghc-paths 82208 + , Glob, hspec, hspec-core, hspec-discover, HUnit, mockery, pretty 82209 + , process, QuickCheck, random, setenv, silently, stringbuilder, syb 82210 + , template-haskell, transformers, unordered-containers 82211 + }: 82212 + mkDerivation { 82213 + pname = "doctest-parallel"; 82214 + version = "0.2.3"; 82215 + sha256 = "0sk1990ksqcgc13kppbh0xljakn3qsqaxi19990fixwakhzh229v"; 82216 + libraryHaskellDepends = [ 82217 + base base-compat Cabal code-page containers deepseq directory 82218 + exceptions extra filepath ghc ghc-paths Glob pretty process random 82219 + syb template-haskell transformers unordered-containers 82220 + ]; 82221 + testHaskellDepends = [ 82222 + base base-compat code-page containers deepseq directory exceptions 82223 + filepath ghc ghc-paths hspec hspec-core hspec-discover HUnit 82224 + mockery process QuickCheck setenv silently stringbuilder syb 82225 + transformers 82226 + ]; 82227 + testToolDepends = [ hspec-discover ]; 82228 + doHaddock = false; 82229 + description = "Test interactive Haskell examples"; 82230 + license = lib.licenses.mit; 82231 + hydraPlatforms = lib.platforms.none; 82232 + broken = true; 82233 + }) {}; 82234 + 82235 "doctest-prop" = callPackage 82236 ({ mkDerivation, base, doctest, HUnit, QuickCheck }: 82237 mkDerivation { ··· 82818 libraryHaskellDepends = [ base ]; 82819 description = ".NET TimeSpan"; 82820 license = lib.licenses.bsd3; 82821 + }) {}; 82822 + 82823 + "dotparse" = callPackage 82824 + ({ mkDerivation, algebraic-graphs, base, bytestring, chart-svg 82825 + , containers, flatparse, neat-interpolation, numhask, numhask-space 82826 + , optics-core, process-extras, template-haskell, text, these 82827 + }: 82828 + mkDerivation { 82829 + pname = "dotparse"; 82830 + version = "0.0.1"; 82831 + sha256 = "1nwbyra3aksllxg5dymjlsy8ikd1rjj5lgfd9gs9s1sh746gakzx"; 82832 + libraryHaskellDepends = [ 82833 + algebraic-graphs base bytestring chart-svg containers flatparse 82834 + neat-interpolation numhask numhask-space optics-core process-extras 82835 + template-haskell text these 82836 + ]; 82837 + description = "dot language parsing and printing"; 82838 + license = lib.licenses.bsd3; 82839 + hydraPlatforms = lib.platforms.none; 82840 }) {}; 82841 82842 "double-conversion" = callPackage ··· 86436 pname = "ekg-core"; 86437 version = "0.1.1.7"; 86438 sha256 = "04nv6iwzrb63fs97ixb0amj8p6zhabg3ggbrg4nbkq7xjhmkz0a5"; 86439 + revision = "2"; 86440 + editedCabalFile = "05h0jz42s1d3bjcvzbp3dv5rvil4ar244mdqdvzbf60z848ppygl"; 86441 libraryHaskellDepends = [ 86442 base containers ghc-prim text unordered-containers 86443 ]; ··· 88853 license = lib.licenses.bsd3; 88854 }) {}; 88855 88856 + "equivalence_0_4_0_1" = callPackage 88857 + ({ mkDerivation, base, containers, mtl, QuickCheck, STMonadTrans 88858 + , template-haskell, transformers, transformers-compat 88859 + }: 88860 + mkDerivation { 88861 + pname = "equivalence"; 88862 + version = "0.4.0.1"; 88863 + sha256 = "1pcv64dflv9kknz9smnq4a7pd8jmghi3g4kri1dw0cnb54g7rj7c"; 88864 + libraryHaskellDepends = [ 88865 + base containers mtl STMonadTrans transformers transformers-compat 88866 + ]; 88867 + testHaskellDepends = [ 88868 + base containers mtl QuickCheck STMonadTrans template-haskell 88869 + transformers transformers-compat 88870 + ]; 88871 + description = "Maintaining an equivalence relation implemented as union-find using STT"; 88872 + license = lib.licenses.bsd3; 88873 + hydraPlatforms = lib.platforms.none; 88874 + }) {}; 88875 + 88876 "erd" = callPackage 88877 ({ mkDerivation, base, bytestring, containers, directory, filepath 88878 , gitrev, graphviz, parsec, raw-strings-qq, tasty, tasty-hunit ··· 89221 pname = "errors"; 89222 version = "2.3.0"; 89223 sha256 = "0x8znwn31qcx6kqx99wp7bc86kckfb39ncz3zxvj1s07kxlfawk7"; 89224 + revision = "3"; 89225 + editedCabalFile = "18siil7qihpjwimvidm9xqn38wmpcsnaybdkch7nmkgzn1jxl94n"; 89226 libraryHaskellDepends = [ 89227 base exceptions safe text transformers transformers-compat 89228 ]; ··· 89283 }: 89284 mkDerivation { 89285 pname = "ersatz"; 89286 version = "0.4.11"; 89287 sha256 = "0zaw5a4za77xa1h8msg5v9hk6m215ykl3c258kgk519yvrfavyi3"; 89288 isLibrary = true; ··· 92246 }: 92247 mkDerivation { 92248 pname = "extensible"; 92249 + version = "0.9"; 92250 + sha256 = "06zmc71r4cqglkv3av38djbkakvw9zxc3901xi2h65fwxn4npvnc"; 92251 libraryHaskellDepends = [ 92252 aeson base bytestring cassava comonad constraints deepseq ghc-prim 92253 hashable incremental membership prettyprinter primitive profunctors ··· 94175 license = lib.licenses.gpl3Only; 94176 }) {}; 94177 94178 + "fedora-dists_2_1_1" = callPackage 94179 ({ mkDerivation, aeson, base, cached-json-file, pdc, text }: 94180 mkDerivation { 94181 pname = "fedora-dists"; 94182 + version = "2.1.1"; 94183 + sha256 = "0790akym2rrcch9jjky9v4qc6y22vg1w6ffi9nbx42zijkqmsm1f"; 94184 libraryHaskellDepends = [ aeson base cached-json-file pdc text ]; 94185 description = "Library for Fedora distribution versions"; 94186 license = lib.licenses.gpl3Only; ··· 96421 license = "unknown"; 96422 }) {}; 96423 96424 + "fix-whitespace_0_0_8" = callPackage 96425 + ({ mkDerivation, base, directory, extra, filepath, filepattern 96426 + , text, yaml 96427 + }: 96428 + mkDerivation { 96429 + pname = "fix-whitespace"; 96430 + version = "0.0.8"; 96431 + sha256 = "1vjbh3jx67xdzxnpyh9k2c5qv5axw07wck5jmahg0kxrj1w2nhh6"; 96432 + isLibrary = false; 96433 + isExecutable = true; 96434 + executableHaskellDepends = [ 96435 + base directory extra filepath filepattern text yaml 96436 + ]; 96437 + description = "Fixes whitespace issues"; 96438 + license = "unknown"; 96439 + hydraPlatforms = lib.platforms.none; 96440 + }) {}; 96441 + 96442 "fixed" = callPackage 96443 ({ mkDerivation, base }: 96444 mkDerivation { ··· 97123 "flatparse" = callPackage 97124 ({ mkDerivation, attoparsec, base, bytestring, containers, gauge 97125 , hspec, HUnit, integer-gmp, megaparsec, parsec, primitive 97126 + , QuickCheck, template-haskell 97127 }: 97128 mkDerivation { 97129 pname = "flatparse"; 97130 + version = "0.3.3.0"; 97131 + sha256 = "00ggikjgyb5sivj5aff328gaamxi241y6kign8l9pvrr802xmc0c"; 97132 libraryHaskellDepends = [ 97133 base bytestring containers integer-gmp template-haskell 97134 ]; 97135 + testHaskellDepends = [ base bytestring hspec HUnit QuickCheck ]; 97136 benchmarkHaskellDepends = [ 97137 attoparsec base bytestring gauge integer-gmp megaparsec parsec 97138 primitive ··· 98377 }: 98378 mkDerivation { 98379 pname = "folds"; 98380 version = "0.7.8"; 98381 sha256 = "11278546mq05rhyjfmhg0iasqjsn898l44dhp5qgaw1zwzywir2i"; 98382 configureFlags = [ "-f-test-hlint" ]; ··· 98387 ]; 98388 description = "Beautiful Folding"; 98389 license = lib.licenses.bsd3; 98390 }) {}; 98391 98392 "folds-common" = callPackage ··· 99672 }) {}; 99673 99674 "freckle-app" = callPackage 99675 + ({ mkDerivation, aeson, ansi-terminal, base, bugsnag, bytestring 99676 , case-insensitive, conduit, containers, data-default, datadog 99677 , directory, doctest, ekg-core, errors, exceptions, fast-logger 99678 , filepath, Glob, hashable, hspec, hspec-core 99679 , hspec-expectations-lifted, hspec-junit-formatter, http-client 99680 , http-conduit, http-link-header, http-types, immortal, iproute 99681 + , lens, lens-aeson, load-env, memcache, monad-control, monad-logger 99682 , MonadRandom, mtl, network, network-uri, persistent 99683 , persistent-postgresql, postgresql-simple, primitive, process 99684 + , resource-pool, retry, rio, safe, scientist, semigroupoids 99685 + , template-haskell, temporary, text, time, transformers 99686 + , transformers-base, unliftio, unliftio-core, unordered-containers 99687 + , vector, wai, wai-extra, yaml, yesod, yesod-core 99688 }: 99689 mkDerivation { 99690 pname = "freckle-app"; 99691 + version = "1.0.4.0"; 99692 + sha256 = "0snlgizlbi7izqv66izcf2s3ns5yj8h75jmh1f0ialkppzz1bh07"; 99693 libraryHaskellDepends = [ 99694 + aeson ansi-terminal base bugsnag bytestring case-insensitive 99695 + conduit containers data-default datadog doctest ekg-core errors 99696 + exceptions fast-logger filepath Glob hashable hspec hspec-core 99697 hspec-expectations-lifted hspec-junit-formatter http-client 99698 http-conduit http-link-header http-types immortal iproute lens 99699 + load-env memcache monad-control monad-logger MonadRandom mtl 99700 + network network-uri persistent persistent-postgresql 99701 + postgresql-simple primitive process resource-pool retry rio safe 99702 + scientist semigroupoids template-haskell text time transformers 99703 + transformers-base unliftio unordered-containers vector wai 99704 + wai-extra yaml yesod yesod-core 99705 ]; 99706 testHaskellDepends = [ 99707 + aeson base bytestring directory errors hspec http-types lens 99708 + lens-aeson memcache monad-logger mtl postgresql-simple process 99709 + temporary text time unliftio-core wai wai-extra 99710 ]; 99711 description = "Haskell application toolkit used at Freckle"; 99712 license = lib.licenses.mit; ··· 102278 }: 102279 mkDerivation { 102280 pname = "fuzzyset"; 102281 version = "0.2.3"; 102282 sha256 = "02rc846kfrkd0gd3j37gkmf87z09rzfa9bz2f0i2b83mh8ppk1sl"; 102283 libraryHaskellDepends = [ ··· 102289 ]; 102290 description = "Fuzzy set for approximate string matching"; 102291 license = lib.licenses.bsd3; 102292 }) {}; 102293 102294 "fuzzytime" = callPackage ··· 106306 license = lib.licenses.bsd3; 106307 }) {}; 106308 106309 + "ghc-lib_9_2_3_20220527" = callPackage 106310 ({ mkDerivation, alex, array, base, binary, bytestring, containers 106311 , deepseq, directory, exceptions, filepath, ghc-lib-parser 106312 , ghc-prim, happy, hpc, parsec, pretty, process, rts, time ··· 106314 }: 106315 mkDerivation { 106316 pname = "ghc-lib"; 106317 + version = "9.2.3.20220527"; 106318 + sha256 = "0ldafrp5j91cjqgh78vfqjmf1ywj1cjhjyxch9yqlj6yz4r6gqi4"; 106319 enableSeparateDataOutput = true; 106320 libraryHaskellDepends = [ 106321 array base binary bytestring containers deepseq directory ··· 106368 license = lib.licenses.bsd3; 106369 }) {}; 106370 106371 + "ghc-lib-parser_9_2_3_20220527" = callPackage 106372 ({ mkDerivation, alex, array, base, binary, bytestring, containers 106373 , deepseq, directory, exceptions, filepath, ghc-prim, happy, parsec 106374 , pretty, process, time, transformers, unix 106375 }: 106376 mkDerivation { 106377 pname = "ghc-lib-parser"; 106378 + version = "9.2.3.20220527"; 106379 + sha256 = "0w7rnpjyrl8h8rxplfwqdsj9g4q8y8fz9rs8mshil1f4wxnc6nmx"; 106380 enableSeparateDataOutput = true; 106381 libraryHaskellDepends = [ 106382 array base binary bytestring containers deepseq directory ··· 106429 license = lib.licenses.bsd3; 106430 }) {}; 106431 106432 + "ghc-lib-parser-ex_9_2_0_4" = callPackage 106433 ({ mkDerivation, base, bytestring, containers, directory, extra 106434 , filepath, ghc-lib-parser, tasty, tasty-hunit, uniplate 106435 }: 106436 mkDerivation { 106437 pname = "ghc-lib-parser-ex"; 106438 + version = "9.2.0.4"; 106439 + sha256 = "138wkpy7qpdkp07028flab3lwq4b3mns0qcrkfrhclixlz8pi74v"; 106440 libraryHaskellDepends = [ 106441 base bytestring containers ghc-lib-parser uniplate 106442 ]; ··· 106691 }: 106692 mkDerivation { 106693 pname = "ghc-prof"; 106694 version = "1.4.1.11"; 106695 sha256 = "1i6a3dx9ml8r4q8rvap7rw3qhvksgaws1hzna34ldpkwh6b7kfxy"; 106696 isLibrary = true; ··· 109453 }: 109454 mkDerivation { 109455 pname = "git-annex"; 109456 + version = "10.20220525"; 109457 + sha256 = "1nrwa4qm3xkr11x0b0c1mx052zhd7lz9w97xf0ycdkhsyc6vbiy6"; 109458 configureFlags = [ 109459 "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" 109460 "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" ··· 110015 pname = "github"; 110016 version = "0.28"; 110017 sha256 = "142l0zff852606hkpvkhvagp6h3ziq2z2x7x2pa77q5ymyq48089"; 110018 + revision = "3"; 110019 + editedCabalFile = "03cn567jgkgd8a78ymm9zws8fp8881kmpj6jkb7cj3kbq05062jv"; 110020 libraryHaskellDepends = [ 110021 aeson base base-compat base16-bytestring binary binary-instances 110022 bytestring containers cryptohash-sha1 deepseq deepseq-generics ··· 110766 description = "Binding to the glade library"; 110767 license = lib.licenses.lgpl21Only; 110768 hydraPlatforms = lib.platforms.none; 110769 + broken = true; 110770 }) {inherit (pkgs.gnome2) libglade;}; 110771 110772 "gladexml-accessor" = callPackage ··· 110778 libraryHaskellDepends = [ base glade HaXml template-haskell ]; 110779 description = "Automagically declares getters for widget handles in specified interface file"; 110780 license = lib.licenses.bsd3; 110781 + hydraPlatforms = lib.platforms.none; 110782 }) {}; 110783 110784 "glambda" = callPackage ··· 111045 "glirc" = callPackage 111046 ({ mkDerivation, async, attoparsec, base, base64-bytestring 111047 , bytestring, Cabal, config-schema, config-value, containers 111048 + , directory, filepath, free, gitrev, hashable, hookup, HsOpenSSL 111049 + , HUnit, irc-core, kan-extensions, lens, network, process, psqueues 111050 + , random, regex-tdfa, split, stm, template-haskell, text, time 111051 + , transformers, unix, unordered-containers, vector, vty 111052 + }: 111053 + mkDerivation { 111054 + pname = "glirc"; 111055 + version = "2.38"; 111056 + sha256 = "1azykkb9rc4q97v9xiqfjv0iys0wswa3nsy10smdkpp7yvv4mca7"; 111057 + revision = "2"; 111058 + editedCabalFile = "082ndcgp9z1w5pa3s5ss7kqhg66y01lbj57k14zq6zs6c54s4b5i"; 111059 + isLibrary = true; 111060 + isExecutable = true; 111061 + setupHaskellDepends = [ base Cabal filepath ]; 111062 + libraryHaskellDepends = [ 111063 + async attoparsec base base64-bytestring bytestring config-schema 111064 + config-value containers directory filepath free gitrev hashable 111065 + hookup HsOpenSSL irc-core kan-extensions lens network process 111066 + psqueues random regex-tdfa split stm template-haskell text time 111067 + transformers unix unordered-containers vector vty 111068 + ]; 111069 + executableHaskellDepends = [ base lens text vty ]; 111070 + testHaskellDepends = [ base HUnit ]; 111071 + description = "Console IRC client"; 111072 + license = lib.licenses.isc; 111073 + maintainers = with lib.maintainers; [ kiwi ]; 111074 + }) {}; 111075 + 111076 + "glirc_2_39" = callPackage 111077 + ({ mkDerivation, async, attoparsec, base, base64-bytestring 111078 + , bytestring, Cabal, config-schema, config-value, containers 111079 , curve25519, directory, filepath, free, githash, hashable, hookup 111080 , HsOpenSSL, HUnit, irc-core, kan-extensions, lens, network 111081 , process, psqueues, random, regex-tdfa, split, stm ··· 111102 license = lib.licenses.isc; 111103 hydraPlatforms = lib.platforms.none; 111104 maintainers = with lib.maintainers; [ kiwi ]; 111105 }) {}; 111106 111107 "gll" = callPackage ··· 117114 }) {}; 117115 117116 "grow-vector" = callPackage 117117 + ({ mkDerivation, base, hspec, primitive, quickcheck-instances 117118 + , tasty, tasty-discover, tasty-hspec, tasty-quickcheck, vector 117119 }: 117120 mkDerivation { 117121 pname = "grow-vector"; 117122 + version = "0.1.5.0"; 117123 + sha256 = "1dn6gabmndhi56v3nsapxm9qbf54dp2blhgn8ibza0lnv8hwn15b"; 117124 enableSeparateDataOutput = true; 117125 libraryHaskellDepends = [ base primitive vector ]; 117126 testHaskellDepends = [ 117127 + base hspec primitive quickcheck-instances tasty tasty-discover 117128 tasty-hspec tasty-quickcheck 117129 ]; 117130 testToolDepends = [ tasty-discover ]; ··· 117363 }: 117364 mkDerivation { 117365 pname = "gsmenu"; 117366 + version = "3.1"; 117367 + sha256 = "0pyz5rhkmdl002f80jc8zksv8jff8bv99hvwg7g6ijfy68yibwsh"; 117368 isLibrary = false; 117369 isExecutable = true; 117370 executableHaskellDepends = [ ··· 117716 ]; 117717 description = "A type class for cast functions of Gtk2hs: glade package"; 117718 license = "unknown"; 117719 + hydraPlatforms = lib.platforms.none; 117720 }) {}; 117721 117722 "gtk2hs-cast-glib" = callPackage ··· 119433 pname = "hackage-security"; 119434 version = "0.6.2.1"; 119435 sha256 = "1a349ma9ijypjzgj7xgkkr6rd8k49crdgx330h9vgmp7vlbcs8mz"; 119436 + revision = "2"; 119437 + editedCabalFile = "1r7jaf7vq90xlcsdq9snlz3d52zqcpijlby7abpzfw09v4mjjjqx"; 119438 libraryHaskellDepends = [ 119439 base base16-bytestring base64-bytestring bytestring Cabal 119440 Cabal-syntax containers cryptohash-sha256 directory ed25519 ··· 120945 license = lib.licenses.bsd3; 120946 }) {}; 120947 120948 + "hal_1_0_0" = callPackage 120949 + ({ mkDerivation, aeson, base, base64-bytestring, bytestring 120950 + , case-insensitive, conduit, conduit-extra, containers, exceptions 120951 + , hashable, hedgehog, hspec, hspec-hedgehog, http-client 120952 + , http-types, mtl, raw-strings-qq, scientific, text, time 120953 + , transformers, unordered-containers, vector 120954 + }: 120955 + mkDerivation { 120956 + pname = "hal"; 120957 + version = "1.0.0"; 120958 + sha256 = "0mfdxjlypb1sj2kcsqks6anh80xy1azcg9lvlpkgz7dgdpjfygaq"; 120959 + revision = "1"; 120960 + editedCabalFile = "0chjhs3vnzmlwhjlkg24vnpx4baavkj42ldbz25li1r24naw5bsd"; 120961 + libraryHaskellDepends = [ 120962 + aeson base base64-bytestring bytestring case-insensitive conduit 120963 + conduit-extra containers exceptions hashable http-client http-types 120964 + mtl scientific text time unordered-containers 120965 + ]; 120966 + testHaskellDepends = [ 120967 + aeson base base64-bytestring bytestring case-insensitive containers 120968 + hedgehog hspec hspec-hedgehog http-client http-types raw-strings-qq 120969 + scientific text time transformers unordered-containers vector 120970 + ]; 120971 + description = "A runtime environment for Haskell applications running on AWS Lambda"; 120972 + license = lib.licenses.bsd3; 120973 + hydraPlatforms = lib.platforms.none; 120974 + }) {}; 120975 + 120976 "halberd" = callPackage 120977 ({ mkDerivation, base, Cabal, containers, haskell-names 120978 , haskell-packages, haskell-src-exts, HUnit, mtl, safe, split, syb ··· 125151 pname = "haskell-src"; 125152 version = "1.0.4"; 125153 sha256 = "1spkhv83hy5v1lxs44l3w53vk8zj7gnx42c40hrkj4fcz6apdiwb"; 125154 + revision = "1"; 125155 + editedCabalFile = "0dfjzq0sxxcalqxygp2svx4890qx8b4amad0xldwy1f4xrp3lsnb"; 125156 libraryHaskellDepends = [ array base pretty syb ]; 125157 libraryToolDepends = [ happy ]; 125158 description = "Support for manipulating Haskell source code"; ··· 125296 }: 125297 mkDerivation { 125298 pname = "haskell-src-meta"; 125299 + version = "0.8.10"; 125300 + sha256 = "0hzwrmv9157wcym1qwy9pxkb8mz5b428nzqf455n6qlrjjjmqpi1"; 125301 libraryHaskellDepends = [ 125302 base haskell-src-exts pretty syb template-haskell th-orphans 125303 ]; ··· 125852 }: 125853 mkDerivation { 125854 pname = "haskell-xmpp"; 125855 + version = "2.0.4"; 125856 + sha256 = "1nj0n5qxp56vxg9npklkji63y627rypv3gz307785qpcin0vflpw"; 125857 isLibrary = true; 125858 isExecutable = true; 125859 libraryHaskellDepends = [ ··· 129228 platforms = [ 129229 "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 129230 ]; 129231 + hydraPlatforms = lib.platforms.none; 129232 }) {}; 129233 129234 base bytestring containers data-accessor MissingH polyparse text ··· 129264 platforms = [ 129265 "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 129266 ]; 129267 + hydraPlatforms = lib.platforms.none; 129268 }) {}; 129269 129270 base bytestring containers data-accessor MissingH polyparse text ··· 129485 ({ mkDerivation }: 129486 mkDerivation { 129487 base bytestring containers data-accessor MissingH polyparse text 129488 + version = "0.0.0.4"; 129489 + sha256 = "1xvl0p58q8l7yq90hfydgy2h5644xxjai99frli719l2mg7s1ndm"; 129490 + revision = "3"; 129491 + editedCabalFile = "0dzyhd2gjpv7182s1pjvwxwnxa19pva1x94837my57hmnrs7iskh"; 129492 doHaddock = false; 129493 description = "Haskell COM support library"; 129494 license = lib.licenses.bsd3; ··· 130536 base bytestring containers data-accessor MissingH polyparse text 130537 version = "1.1.1"; 130538 base bytestring containers data-accessor MissingH polyparse text 130539 + revision = "2"; 130540 + editedCabalFile = "06i998jic83qpihcv7xhc2ny1z3b4k0p22ds79l5l9hfbf0la6rh"; 130541 libraryHaskellDepends = [ 130542 base bytestring containers data-accessor MissingH polyparse text 130543 base bytestring containers data-accessor MissingH polyparse text ··· 130747 base bytestring containers data-accessor MissingH polyparse text 130748 version = "0.1.1"; 130749 base bytestring containers data-accessor MissingH polyparse text 130750 + revision = "3"; 130751 + editedCabalFile = "0mfpgn46126y1y2k3i2r5nqxcrsa16il3vyf7ir0w471nmks7n54"; 130752 base bytestring containers data-accessor MissingH polyparse text 130753 base bytestring containers data-accessor MissingH polyparse text 130754 license = lib.licenses.bsd3; ··· 131099 base bytestring containers data-accessor MissingH polyparse text 131100 base bytestring containers data-accessor MissingH polyparse text 131101 base bytestring containers data-accessor MissingH polyparse text 131102 + , hashable, HUnit, indexed-traversable, lens, lifted-base 131103 + , map-syntax, monad-control, mtl, process, QuickCheck, random 131104 + , statistics, test-framework, test-framework-hunit 131105 + , test-framework-quickcheck2, text, time, transformers 131106 + , transformers-base, unordered-containers, vector, xmlhtml 131107 }: 131108 mkDerivation { 131109 base bytestring containers data-accessor MissingH polyparse text 131110 + version = "1.2.1.0"; 131111 + sha256 = "0xrcgh9g0207zr60r0g5aqzjf0j240zwx6wlwl0jamwjzg45x3ka"; 131112 libraryHaskellDepends = [ 131113 base bytestring containers data-accessor MissingH polyparse text 131114 base bytestring containers data-accessor MissingH polyparse text 131115 + indexed-traversable lifted-base map-syntax monad-control mtl 131116 + process random text time transformers transformers-base 131117 base bytestring containers data-accessor MissingH polyparse text 131118 ]; 131119 testHaskellDepends = [ 131120 base bytestring containers data-accessor MissingH polyparse text 131121 base bytestring containers data-accessor MissingH polyparse text 131122 + hashable HUnit indexed-traversable lens lifted-base map-syntax 131123 + monad-control mtl process QuickCheck random test-framework 131124 + test-framework-hunit test-framework-quickcheck2 text time 131125 base bytestring containers data-accessor MissingH polyparse text 131126 ]; 131127 benchmarkHaskellDepends = [ 131128 base bytestring containers data-accessor MissingH polyparse text 131129 base bytestring containers data-accessor MissingH polyparse text 131130 + dlist filepath hashable HUnit indexed-traversable lifted-base 131131 + map-syntax monad-control mtl process random statistics 131132 + test-framework test-framework-hunit text time transformers 131133 + transformers-base unordered-containers vector xmlhtml 131134 ]; 131135 base bytestring containers data-accessor MissingH polyparse text 131136 license = lib.licenses.bsd3; ··· 133527 pname = "hi-file-parser"; 133528 version = "0.1.2.0"; 133529 sha256 = "1jm3gbibafkw3ninvsz7f1x89xdyk6wml45mq9zb85p6m9xqlpv9"; 133530 + revision = "1"; 133531 + editedCabalFile = "1q53g0h4xnq0fsjbwg1fclnw0kxpzz58p8jrczhmgb4z5wn8g292"; 133532 libraryHaskellDepends = [ base binary bytestring mtl rio vector ]; 133533 testHaskellDepends = [ 133534 base binary bytestring hspec mtl rio vector ··· 134102 134103 "highlight" = callPackage 134104 ({ mkDerivation, ansi-terminal, base, base-compat, bytestring 134105 + , containers, criterion, directory, filepath, lens, mtl, mtl-compat 134106 + , optparse-applicative, pipes, pipes-bytestring, pipes-group 134107 + , pipes-safe, process, regex, regex-with-pcre, semigroups 134108 + , system-filepath, tasty, tasty-golden, text, transformers 134109 + , transformers-compat, unix 134110 }: 134111 mkDerivation { 134112 pname = "highlight"; 134113 + version = "1.0.0.2"; 134114 + sha256 = "019chfvi85cjcb6minkf5cgxdr6y9m8izw9rf37iq0swawc4icm9"; 134115 isLibrary = true; 134116 isExecutable = true; 134117 libraryHaskellDepends = [ ··· 134123 ]; 134124 executableHaskellDepends = [ base ]; 134125 testHaskellDepends = [ 134126 + base base-compat bytestring directory lens pipes process tasty 134127 + tasty-golden transformers transformers-compat unix 134128 ]; 134129 benchmarkHaskellDepends = [ base criterion ]; 134130 description = "Command line tool for highlighting parts of files matching a regex"; ··· 138825 }: 138826 mkDerivation { 138827 pname = "hookup"; 138828 + version = "0.6"; 138829 + sha256 = "09rhsq0j2m1j87qsbsd3l1q3dv2zs4wrhcz2jhn4a6dx273w5528"; 138830 + revision = "1"; 138831 + editedCabalFile = "0dm7i3g8hlrg0rzfhfcryypgqlil2p8ny12bn49yir2b1qfd47dc"; 138832 + libraryHaskellDepends = [ 138833 + async attoparsec base bytestring HsOpenSSL HsOpenSSL-x509-system 138834 + network stm 138835 + ]; 138836 + description = "Abstraction over creating network connections with SOCKS5 and TLS"; 138837 + license = lib.licenses.isc; 138838 + }) {}; 138839 + 138840 + "hookup_0_7" = callPackage 138841 + ({ mkDerivation, async, attoparsec, base, bytestring, HsOpenSSL 138842 + , HsOpenSSL-x509-system, network, stm 138843 + }: 138844 + mkDerivation { 138845 + pname = "hookup"; 138846 version = "0.7"; 138847 sha256 = "02prkwj4rj8g330z17bpjh7hpwfdvasaxsk74mcvbi03gjpydrib"; 138848 libraryHaskellDepends = [ ··· 138851 ]; 138852 description = "Abstraction over creating network connections with SOCKS5 and TLS"; 138853 license = lib.licenses.isc; 138854 + hydraPlatforms = lib.platforms.none; 138855 }) {}; 138856 138857 "hoop" = callPackage ··· 140262 }: 140263 mkDerivation { 140264 pname = "hpqtypes"; 140265 version = "1.9.4.0"; 140266 sha256 = "0m0jpv0d2zynhn53gbjb50sb91lxss71qnzhcy30agxvf29qpi0w"; 140267 setupHaskellDepends = [ base Cabal directory filepath ]; ··· 143379 }: 143380 mkDerivation { 143381 pname = "hsexif"; 143382 + version = "0.6.1.9"; 143383 + sha256 = "1k6zq1jjzl7y38yh9cris096i5bba24rwwizdr8a2cyqqxz2g8jf"; 143384 libraryHaskellDepends = [ 143385 base binary bytestring containers iconv text time 143386 ]; ··· 143603 pname = "hsini"; 143604 version = "0.5.1.2"; 143605 sha256 = "1r6qksnrmk18ndxs5zaga8b7kvmk34kp0kh5hwqmq797qrlax9pa"; 143606 + revision = "2"; 143607 + editedCabalFile = "1b83g6jk9hcm2h17f1h9vyzm34bmr7w4j5888rbv9k8gpi97f8i7"; 143608 libraryHaskellDepends = [ base bytestring containers mtl parsec ]; 143609 testHaskellDepends = [ 143610 base bytestring containers mtl parsec tasty tasty-hunit ··· 144742 pname = "hspec-core"; 144743 version = "2.7.10"; 144744 sha256 = "12k9yp5gznrda449ir60d5wv3xl7nnyffkb5mhfc0svw9f8lxlv1"; 144745 + revision = "1"; 144746 + editedCabalFile = "0g6x70fqwblf2dzjgq6hp4nj5vqrbfvzphl3j8a73h1966zhrxy9"; 144747 libraryHaskellDepends = [ 144748 ansi-terminal array base call-stack clock deepseq directory 144749 filepath hspec-expectations HUnit QuickCheck quickcheck-io random ··· 144773 pname = "hspec-core"; 144774 version = "2.8.5"; 144775 sha256 = "0hy3qw7qvix5899hkq96mqda2ridif2g3mwdn8sxg2wlhbcvzfjm"; 144776 + revision = "1"; 144777 + editedCabalFile = "1nwki2mb64akmc7585cmjhiizwm090j7gqx5js1h9rmvl7z2zfbx"; 144778 libraryHaskellDepends = [ 144779 ansi-terminal array base call-stack clock deepseq directory 144780 filepath hspec-expectations HUnit QuickCheck quickcheck-io random ··· 146359 ]; 146360 description = "A two player abstract strategy game"; 146361 license = lib.licenses.bsd3; 146362 + hydraPlatforms = lib.platforms.none; 146363 }) {}; 146364 146365 "hsubconvert" = callPackage ··· 153671 pname = "imperative-edsl"; 153672 version = "0.9"; 153673 sha256 = "0qzk3kjmjv3357dlc4fa43k4xn7xhyavmbnni0cd86zrilgxha6h"; 153674 + revision = "1"; 153675 + editedCabalFile = "11spl74xarqx3pcag1j2i72m4k9gv5lkv6g7zy658yg4ibywwkdx"; 153676 libraryHaskellDepends = [ 153677 array base BoundedChan containers data-default-class deepseq 153678 directory exception-transformers ghc-prim language-c-quote ··· 155035 }: 155036 mkDerivation { 155037 pname = "inline-c"; 155038 version = "0.9.1.6"; 155039 sha256 = "06az494fp2nh6fnibq28yw8jsrpj4jq1swyx53a328qv04cbhrym"; 155040 isLibrary = true; ··· 155050 ]; 155051 description = "Write Haskell source files including C code inline. No FFI required."; 155052 license = lib.licenses.mit; 155053 maintainers = with lib.maintainers; [ roberth ]; 155054 }) {}; 155055 ··· 155264 }: 155265 mkDerivation { 155266 pname = "inspection-testing"; 155267 version = "0.4.6.1"; 155268 sha256 = "0mxff0v3ciccbk4b8kxnh4752fzbwn7213qd8xji0csv6gi2w83y"; 155269 libraryHaskellDepends = [ ··· 155272 testHaskellDepends = [ base ]; 155273 description = "GHC plugin to do inspection testing"; 155274 license = lib.licenses.mit; 155275 }) {}; 155276 155277 "inspector-wrecker" = callPackage ··· 156191 }: 156192 mkDerivation { 156193 pname = "interval-algebra"; 156194 + version = "2.0.2"; 156195 + sha256 = "1fsz0grgk4iq457zqvhnsqbrphgg62d46h5rzxffmy5zlvpzhq8g"; 156196 libraryHaskellDepends = [ 156197 base binary containers deepseq foldl nonempty-containers 156198 prettyprinter QuickCheck safe text time witch witherable ··· 160963 broken = true; 160964 }) {}; 160965 160966 + "json-stream_0_4_4_0" = callPackage 160967 + ({ mkDerivation, aeson, base, bytestring, directory, hspec 160968 + , primitive, QuickCheck, quickcheck-unicode, scientific, text 160969 + , unordered-containers, vector 160970 + }: 160971 + mkDerivation { 160972 + pname = "json-stream"; 160973 + version = "0.4.4.0"; 160974 + sha256 = "1rjvrkrjmh5kvrajd6n2q3h68dkh1m5jhm7f6hq723zvxzl98wij"; 160975 + libraryHaskellDepends = [ 160976 + aeson base bytestring primitive scientific text 160977 + unordered-containers vector 160978 + ]; 160979 + testHaskellDepends = [ 160980 + aeson base bytestring directory hspec primitive QuickCheck 160981 + quickcheck-unicode scientific text unordered-containers vector 160982 + ]; 160983 + description = "Incremental applicative JSON parser"; 160984 + license = lib.licenses.bsd3; 160985 + hydraPlatforms = lib.platforms.none; 160986 + broken = true; 160987 + }) {}; 160988 + 160989 "json-syntax" = callPackage 160990 ({ mkDerivation, aeson, array-builder, array-chunks, base 160991 , bytebuild, byteslice, bytesmith, bytestring, contiguous, gauge ··· 162449 }: 162450 mkDerivation { 162451 pname = "katip"; 162452 + version = "0.8.7.2"; 162453 + sha256 = "02h7mgprmqy219i4ph9qg5pwgdzrxkzkgckbcaizmny84c87b46r"; 162454 libraryHaskellDepends = [ 162455 aeson async auto-update base bytestring containers either hostname 162456 microlens microlens-th monad-control mtl old-locale resourcet ··· 164447 }: 164448 mkDerivation { 164449 pname = "koji-tool"; 164450 + version = "0.9.1"; 164451 + sha256 = "0njjrxqycyl7vh46rmx2b3i0467nkppbx20xc3j1jxn7s3dc884x"; 164452 isLibrary = false; 164453 isExecutable = true; 164454 executableHaskellDepends = [ ··· 164934 }: 164935 mkDerivation { 164936 pname = "kvitable"; 164937 + version = "1.0.1.0"; 164938 + sha256 = "0j0sl1bdx174w79xz80j89r3nmllics1h72mslsivnqv04l519l9"; 164939 + revision = "1"; 164940 + editedCabalFile = "0f801w2jgadc53nxxkgzdmfy90im0vvqh5i36r68cfx0ycywkcgn"; 164941 libraryHaskellDepends = [ 164942 base containers lucid microlens prettyprinter text 164943 ]; ··· 166320 ({ mkDerivation, base, pretty }: 166321 mkDerivation { 166322 pname = "language-c99"; 166323 + version = "0.2.0"; 166324 + sha256 = "02fcgf5sqg35nkviqjl04f6dhkkbxy4shlkvfxpk220k73xx0qkh"; 166325 libraryHaskellDepends = [ base pretty ]; 166326 description = "An implementation of the C99 AST that strictly follows the standard"; 166327 license = lib.licenses.mit; ··· 166331 ({ mkDerivation, base, language-c99, language-c99-util, mtl }: 166332 mkDerivation { 166333 pname = "language-c99-simple"; 166334 + version = "0.2.0"; 166335 + sha256 = "0sm85abxp3ia9450mxwnqbz00hcmafdbzsj0ynp4l95rxw11j0q6"; 166336 libraryHaskellDepends = [ 166337 base language-c99 language-c99-util mtl 166338 ]; ··· 166341 }) {}; 166342 166343 "language-c99-util" = callPackage 166344 + ({ mkDerivation, base, ieee754, language-c99 }: 166345 mkDerivation { 166346 pname = "language-c99-util"; 166347 + version = "0.2.0"; 166348 + sha256 = "0cs68wz6vimy5lbjy3ks8qvx3ih49n0j4bdrn3p495rkwzy4y6r4"; 166349 + libraryHaskellDepends = [ base ieee754 language-c99 ]; 166350 description = "Utilities for language-c99"; 166351 license = lib.licenses.mit; 166352 }) {}; ··· 171912 }) {}; 171913 171914 "linear" = callPackage 171915 ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes 171916 , bytestring, cereal, containers, deepseq, distributive, ghc-prim 171917 , hashable, HUnit, indexed-traversable, lens, random, reflection ··· 171936 ]; 171937 description = "Linear Algebra"; 171938 license = lib.licenses.bsd3; 171939 }) {}; 171940 171941 "linear-accelerate" = callPackage ··· 173737 }: 173738 mkDerivation { 173739 pname = "little-logger"; 173740 + version = "1.0.1"; 173741 + sha256 = "110yk385dss8hyyzkf2hpaxvrd39hgfhyv6sjf0pxqbxa4bqv51f"; 173742 libraryHaskellDepends = [ 173743 base microlens monad-logger mtl text unliftio-core 173744 ]; ··· 173746 base directory microlens monad-logger mtl tasty tasty-hunit 173747 temporary text unliftio-core 173748 ]; 173749 + description = "Basic logging based on monad-logger"; 173750 license = lib.licenses.bsd3; 173751 hydraPlatforms = lib.platforms.none; 173752 broken = true; ··· 173768 license = lib.licenses.bsd3; 173769 }) {}; 173770 173771 + "little-rio_1_0_1" = callPackage 173772 ({ mkDerivation, base, deepseq, exceptions, little-logger 173773 , microlens, microlens-mtl, mtl, primitive, resourcet 173774 , unliftio-core 173775 }: 173776 mkDerivation { 173777 pname = "little-rio"; 173778 + version = "1.0.1"; 173779 + sha256 = "0l505nimjwg9i8kkj2ndp5i4mh0mhxnhssxsvgmd5qnzxw4i0rd3"; 173780 libraryHaskellDepends = [ 173781 base deepseq exceptions little-logger microlens microlens-mtl mtl 173782 primitive resourcet unliftio-core ··· 176791 testHaskellDepends = [ base lucid servant text ]; 176792 description = "Use htmx in your lucid templates"; 176793 license = lib.licenses.bsd3; 176794 }) {}; 176795 176796 "lucid-hyperscript" = callPackage ··· 176829 }: 176830 mkDerivation { 176831 pname = "lucid2"; 176832 + version = "0.0.20220526"; 176833 + sha256 = "004bmzwzxfq2pmp7wn1mrdwkw9fnyfnmvzymnwn8fczkq17w4csd"; 176834 libraryHaskellDepends = [ 176835 base blaze-builder bytestring containers mtl text transformers 176836 ]; ··· 177610 }: 177611 mkDerivation { 177612 pname = "machines"; 177613 version = "0.7.3"; 177614 sha256 = "1cmflvd0xphs15ip61347ph9w4hnhmsa4nlp425i53x1ld99l23c"; 177615 libraryHaskellDepends = [ ··· 177622 ]; 177623 description = "Networked stream transducers"; 177624 license = lib.licenses.bsd3; 177625 }) {}; 177626 177627 "machines-amazonka" = callPackage ··· 180825 maintainers = with lib.maintainers; [ dschrempf ]; 180826 }) {}; 180827 180828 + "mcmc_0_6_2_5" = callPackage 180829 ({ mkDerivation, aeson, async, base, bytestring, circular 180830 , containers, covariance, criterion, data-default, deepseq 180831 , directory, dirichlet, double-conversion, hmatrix, hspec 180832 + , log-domain, math-functions, microlens, mwc-random, parallel 180833 + , pretty-show, primitive, statistics, time, transformers, vector 180834 + , zlib 180835 }: 180836 mkDerivation { 180837 pname = "mcmc"; 180838 + version = "0.6.2.5"; 180839 + sha256 = "1yx72if0411pxxxqipz7dpmmn8hwmhgh9vsmw0a0za0niq8lmsm0"; 180840 libraryHaskellDepends = [ 180841 aeson async base bytestring circular containers covariance 180842 data-default deepseq directory dirichlet double-conversion hmatrix 180843 + log-domain math-functions microlens mwc-random parallel pretty-show 180844 primitive statistics time transformers vector zlib 180845 ]; 180846 testHaskellDepends = [ base hspec mwc-random statistics ]; ··· 182754 182755 "microaeson" = callPackage 182756 ({ mkDerivation, aeson, alex, array, base, bytestring, containers 182757 + , deepseq, fail, QuickCheck, quickcheck-instances, tasty 182758 , tasty-quickcheck, text, unordered-containers, vector 182759 }: 182760 mkDerivation { 182761 pname = "microaeson"; 182762 + version = "0.1.0.1"; 182763 + sha256 = "0rx5gm7apazc0sm65v687ab5106ximka9khizxq1lbckd2x0cq3q"; 182764 libraryHaskellDepends = [ 182765 + array base bytestring containers deepseq fail text 182766 ]; 182767 libraryToolDepends = [ alex ]; 182768 testHaskellDepends = [ ··· 182976 }: 182977 mkDerivation { 182978 pname = "microlens-ghc"; 182979 + version = "0.4.13.2"; 182980 + sha256 = "1258p84jj4kv6l71ijwjzpvzvqxxsqbvs5vrksi24mlf29gaxqi0"; 182981 libraryHaskellDepends = [ 182982 array base bytestring containers microlens transformers 182983 ]; ··· 183007 }: 183008 mkDerivation { 183009 pname = "microlens-mtl"; 183010 version = "0.2.0.2"; 183011 sha256 = "0y1jli9379l8sgv5a4xl8v3qkz9fkp4qlfsywzdpywbnydl1d5v6"; 183012 libraryHaskellDepends = [ ··· 183014 ]; 183015 description = "microlens support for Reader/Writer/State from mtl"; 183016 license = lib.licenses.bsd3; 183017 }) {}; 183018 183019 "microlens-platform" = callPackage ··· 183032 license = lib.licenses.bsd3; 183033 }) {}; 183034 183035 + "microlens-platform_0_4_3_1" = callPackage 183036 ({ mkDerivation, base, hashable, microlens, microlens-ghc 183037 , microlens-mtl, microlens-th, text, unordered-containers, vector 183038 }: 183039 mkDerivation { 183040 pname = "microlens-platform"; 183041 + version = "0.4.3.1"; 183042 + sha256 = "0kix9j6k1yp09102fsliqaynamgwbi31l4hwswcp90flw2v9ah35"; 183043 libraryHaskellDepends = [ 183044 base hashable microlens microlens-ghc microlens-mtl microlens-th 183045 text unordered-containers vector ··· 183138 }: 183139 mkDerivation { 183140 pname = "microstache"; 183141 version = "1.0.2.1"; 183142 sha256 = "12i2sx2rv2ai77m95gvfm93jcjk6q5i4cgfyxjrhyx3ll94z775v"; 183143 libraryHaskellDepends = [ ··· 183149 ]; 183150 description = "Mustache templates for Haskell"; 183151 license = lib.licenses.bsd3; 183152 }) {}; 183153 183154 "microtimer" = callPackage ··· 183213 }: 183214 mkDerivation { 183215 pname = "midi"; 183216 version = "0.2.2.3"; 183217 sha256 = "12vj9h7vdklzn5dglypjsw1bs9rdacdg9fmxhnbd89jv89dyn4km"; 183218 libraryHaskellDepends = [ ··· 183226 ]; 183227 description = "Handling of MIDI messages and files"; 183228 license = "GPL"; 183229 }) {}; 183230 183231 "midi-alsa" = callPackage ··· 183775 ]; 183776 description = "Minesweeper game which is always solvable without guessing"; 183777 license = lib.licenses.bsd3; 183778 + hydraPlatforms = lib.platforms.none; 183779 }) {}; 183780 183781 "mini-egison" = callPackage ··· 183951 , case-insensitive, conduit, conduit-extra, connection, cryptonite 183952 , cryptonite-conduit, digest, directory, exceptions, filepath 183953 , http-client, http-client-tls, http-conduit, http-types, ini 183954 + , memory, network-uri, QuickCheck, raw-strings-qq, relude 183955 + , resourcet, retry, tasty, tasty-hunit, tasty-quickcheck 183956 + , tasty-smallcheck, text, time, transformers, unliftio 183957 + , unliftio-core, unordered-containers, xml-conduit 183958 }: 183959 mkDerivation { 183960 pname = "minio-hs"; 183961 + version = "1.6.0"; 183962 + sha256 = "1pf1m02iz7lw4k53dac2rqnv84fcwcvx690y65h1mh2ip31abkp7"; 183963 isLibrary = true; 183964 isExecutable = true; 183965 libraryHaskellDepends = [ 183966 aeson base base64-bytestring binary bytestring case-insensitive 183967 conduit conduit-extra connection cryptonite cryptonite-conduit 183968 digest directory exceptions filepath http-client http-client-tls 183969 + http-conduit http-types ini memory network-uri raw-strings-qq 183970 + relude resourcet retry text time transformers unliftio 183971 + unliftio-core unordered-containers xml-conduit 183972 ]; 183973 testHaskellDepends = [ 183974 aeson base base64-bytestring binary bytestring case-insensitive 183975 conduit conduit-extra connection cryptonite cryptonite-conduit 183976 digest directory exceptions filepath http-client http-client-tls 183977 + http-conduit http-types ini memory network-uri QuickCheck 183978 + raw-strings-qq relude resourcet retry tasty tasty-hunit 183979 + tasty-quickcheck tasty-smallcheck text time transformers unliftio 183980 + unliftio-core unordered-containers xml-conduit 183981 ]; 183982 description = "A MinIO Haskell Library for Amazon S3 compatible cloud storage"; 183983 license = lib.licenses.asl20; ··· 185821 }: 185822 mkDerivation { 185823 pname = "monad-chronicle"; 185824 version = "1.0.1"; 185825 sha256 = "13f1qwylpj7wss2h5g69zlmn6k6qg5r3aqd9zhvjspg1a85m91kq"; 185826 libraryHaskellDepends = [ ··· 185829 ]; 185830 description = "These as a transformer, ChronicleT"; 185831 license = lib.licenses.bsd3; 185832 }) {}; 185833 185834 "monad-classes" = callPackage ··· 187675 }: 187676 mkDerivation { 187677 pname = "monoid-statistics"; 187678 + version = "1.1.1"; 187679 + sha256 = "13vncdylaazcyfsdylxxnfkywyzw7ydmacisjhx6qhq12c87375q"; 187680 libraryHaskellDepends = [ 187681 base exceptions math-functions vector vector-th-unbox 187682 ]; ··· 188722 }: 188723 mkDerivation { 188724 pname = "moss"; 188725 version = "0.2.0.1"; 188726 sha256 = "1az701j6gx6ra9j6yz4qib7g5irmd5pjcaj9xqmsc4pwljx8yrzs"; 188727 libraryHaskellDepends = [ ··· 188730 ]; 188731 description = "Haskell client for Moss"; 188732 license = lib.licenses.mit; 188733 }) {}; 188734 188735 "moto" = callPackage ··· 192267 license = lib.licenses.bsd3; 192268 }) {}; 192269 192270 + "mysql-simple_0_4_8" = callPackage 192271 + ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder 192272 + , bytestring, containers, hspec, mysql, old-locale, pcre-light 192273 + , text, time, vector 192274 + }: 192275 + mkDerivation { 192276 + pname = "mysql-simple"; 192277 + version = "0.4.8"; 192278 + sha256 = "077psr65rszk06bxx67bhvfk8ajmsr56bwynx7d57lqdvzvm4691"; 192279 + libraryHaskellDepends = [ 192280 + attoparsec base base16-bytestring blaze-builder bytestring 192281 + containers mysql old-locale pcre-light text time vector 192282 + ]; 192283 + testHaskellDepends = [ 192284 + base blaze-builder bytestring hspec mysql text time 192285 + ]; 192286 + description = "A mid-level MySQL client library"; 192287 + license = lib.licenses.bsd3; 192288 + hydraPlatforms = lib.platforms.none; 192289 + }) {}; 192290 + 192291 "mysql-simple-quasi" = callPackage 192292 ({ mkDerivation, base, haskell-src-meta, mysql-simple 192293 , template-haskell ··· 193266 license = lib.licenses.bsd3; 193267 }) {}; 193268 193269 + "natural-arithmetic_0_1_3_0" = callPackage 193270 + ({ mkDerivation, base }: 193271 + mkDerivation { 193272 + pname = "natural-arithmetic"; 193273 + version = "0.1.3.0"; 193274 + sha256 = "13ihizfvkl5bjy5rn966y22lgs8f1dgwyqky3k9gjsqxczlg44xa"; 193275 + libraryHaskellDepends = [ base ]; 193276 + description = "Arithmetic of natural numbers"; 193277 + license = lib.licenses.bsd3; 193278 + hydraPlatforms = lib.platforms.none; 193279 + }) {}; 193280 + 193281 "natural-induction" = callPackage 193282 ({ mkDerivation, base, peano }: 193283 mkDerivation { ··· 196045 pname = "newtype"; 196046 version = "0.2.2.0"; 196047 sha256 = "1b7bamnd0p8vmxvlg39g5d4a2av49kx10rdyz04ixa28pg8zy01s"; 196048 + revision = "3"; 196049 + editedCabalFile = "0yll88ydchd2gqcvdk28fchf2vygpd42ky2bigg4ga08jan2nacx"; 196050 libraryHaskellDepends = [ base ]; 196051 description = "A typeclass and set of functions for working with newtypes"; 196052 license = lib.licenses.bsd3; ··· 196071 }) {}; 196072 196073 "newtype-generics" = callPackage 196074 ({ mkDerivation, base, gauge, hspec, hspec-discover, semigroups }: 196075 mkDerivation { 196076 pname = "newtype-generics"; ··· 196082 benchmarkHaskellDepends = [ base gauge semigroups ]; 196083 description = "A typeclass and set of functions for working with newtypes"; 196084 license = lib.licenses.bsd3; 196085 }) {}; 196086 196087 "newtype-th" = callPackage ··· 196678 pname = "nix-graph"; 196679 version = "1.0.2.0"; 196680 sha256 = "0g6kay7j4klgpnd4qq1b0drfc17m4nkip3sks6fn4528r0i95xll"; 196681 + revision = "1"; 196682 + editedCabalFile = "1dy379gajvs3846csb9j560avvsdzrxzh9sg93rmbcwdyv72lj6h"; 196683 isLibrary = true; 196684 isExecutable = true; 196685 libraryHaskellDepends = [ ··· 198078 }: 198079 mkDerivation { 198080 pname = "nqe"; 198081 version = "0.6.4"; 198082 sha256 = "17ymmb0sy95yf5abdgq60j9bi9pdr746ap7x0byakd3gi7kciijg"; 198083 libraryHaskellDepends = [ ··· 198089 ]; 198090 description = "Concurrency library in the style of Erlang/OTP"; 198091 license = lib.licenses.mit; 198092 }) {}; 198093 198094 "nri-env-parser" = callPackage ··· 198714 license = lib.licenses.bsd3; 198715 }) {}; 198716 198717 + "numeric-prelude_0_4_4" = callPackage 198718 + ({ mkDerivation, array, base, containers, deepseq 198719 + , doctest-exitcode-stdio, doctest-lib, non-negative, parsec 198720 + , QuickCheck, random, semigroups, storable-record, utility-ht 198721 + }: 198722 + mkDerivation { 198723 + pname = "numeric-prelude"; 198724 + version = "0.4.4"; 198725 + sha256 = "04x6ry2sxr5hsiz4098dn2gqyjqywiq2xk0anf6wc4xrvasgccjs"; 198726 + isLibrary = true; 198727 + isExecutable = true; 198728 + libraryHaskellDepends = [ 198729 + array base containers deepseq non-negative parsec QuickCheck random 198730 + semigroups storable-record utility-ht 198731 + ]; 198732 + testHaskellDepends = [ 198733 + base doctest-exitcode-stdio doctest-lib QuickCheck random 198734 + utility-ht 198735 + ]; 198736 + description = "An experimental alternative hierarchy of numeric type classes"; 198737 + license = lib.licenses.bsd3; 198738 + hydraPlatforms = lib.platforms.none; 198739 + }) {}; 198740 + 198741 "numeric-qq" = callPackage 198742 ({ mkDerivation, base, directory, doctest, filepath, loch-th 198743 , placeholders, template-haskell ··· 198842 license = lib.licenses.bsd3; 198843 }) {}; 198844 198845 + "numhask_0_10_1_0" = callPackage 198846 + ({ mkDerivation, base, QuickCheck }: 198847 + mkDerivation { 198848 + pname = "numhask"; 198849 + version = "0.10.1.0"; 198850 + sha256 = "1zxp98svs872qpc0d8pycdbnf47phw4xbrvpi4vrzwyri5wahsxb"; 198851 + libraryHaskellDepends = [ base ]; 198852 + testHaskellDepends = [ base QuickCheck ]; 198853 + description = "A numeric class hierarchy"; 198854 + license = lib.licenses.bsd3; 198855 + hydraPlatforms = lib.platforms.none; 198856 + }) {}; 198857 + 198858 "numhask-array" = callPackage 198859 ({ mkDerivation, adjunctions, base, distributive, numhask, vector 198860 }: ··· 199325 ]; 199326 description = "An interactive GUI for manipulating L-systems"; 199327 license = lib.licenses.bsd3; 199328 + hydraPlatforms = lib.platforms.none; 199329 }) {}; 199330 199331 "nyx-game" = callPackage ··· 200001 pname = "oeis2"; 200002 version = "1.0.7"; 200003 sha256 = "1nywxada76zqzraadwbmz3v6dpwbd997393ksrprci5n6myrakng"; 200004 + revision = "1"; 200005 + editedCabalFile = "1fxg13qd5rniidin08yjywgfk8dvwfc3y5n582z3x0x86b2ifxy6"; 200006 libraryHaskellDepends = [ 200007 aeson base containers http-conduit lens lens-aeson text vector 200008 ]; ··· 200490 pname = "one-liner"; 200491 version = "2.0"; 200492 sha256 = "0al9wavxx23xbalqw0cdlhq01kx8kyhg33fipwmn5617z3ddir6v"; 200493 + revision = "1"; 200494 + editedCabalFile = "19iwyb3jx7bwybmmmamyzf4lxiwik7wdl8k1crikzmxn016pnybz"; 200495 libraryHaskellDepends = [ 200496 base bifunctors contravariant ghc-prim linear-base profunctors 200497 tagged transformers ··· 200499 testHaskellDepends = [ base contravariant HUnit ]; 200500 description = "Constraint-based generics"; 200501 license = lib.licenses.bsd3; 200502 + }) {}; 200503 + 200504 + "one-liner_2_1" = callPackage 200505 + ({ mkDerivation, base, bifunctors, contravariant, ghc-prim, HUnit 200506 + , linear-base, profunctors, tagged, transformers 200507 + }: 200508 + mkDerivation { 200509 + pname = "one-liner"; 200510 + version = "2.1"; 200511 + sha256 = "09gdivd38disddxs42179vmgca0yzk5dfm6ygicgl5l25qbizrfh"; 200512 + libraryHaskellDepends = [ 200513 + base bifunctors contravariant ghc-prim linear-base profunctors 200514 + tagged transformers 200515 + ]; 200516 + testHaskellDepends = [ base contravariant HUnit ]; 200517 + description = "Constraint-based generics"; 200518 + license = lib.licenses.bsd3; 200519 + hydraPlatforms = lib.platforms.none; 200520 }) {}; 200521 200522 "one-liner-instances" = callPackage ··· 201409 }) {}; 201410 201411 "openid-connect" = callPackage 201412 + ({ mkDerivation, aeson, base, bytestring, case-insensitive 201413 + , containers, cookie, cryptonite, http-client, http-types, jose 201414 + , lens, memory, mtl, network-uri, tasty, tasty-hunit, text, time 201415 + , unordered-containers 201416 }: 201417 mkDerivation { 201418 pname = "openid-connect"; 201419 + version = "0.1.2"; 201420 + sha256 = "1h14m0zs5smvl0fcn6anksj94qviy8k9zkhlvdnj7flk4bbi3q2b"; 201421 isLibrary = true; 201422 isExecutable = true; 201423 libraryHaskellDepends = [ 201424 + aeson base bytestring case-insensitive containers cookie cryptonite 201425 http-client http-types jose lens memory mtl network-uri text time 201426 unordered-containers 201427 ]; 201428 testHaskellDepends = [ 201429 + aeson base bytestring case-insensitive containers cookie cryptonite 201430 http-client http-types jose lens memory mtl network-uri tasty 201431 tasty-hunit text time unordered-containers 201432 ]; ··· 202265 pname = "operational-alacarte"; 202266 version = "0.3.1"; 202267 sha256 = "0n4xjv0li4z5lvkx8z0y72dyv9aa0hc315cvpwqcfsh5wvp7fanm"; 202268 + revision = "1"; 202269 + editedCabalFile = "1ca9fms1gpqmw0q6d22smkif19avkdd629w2hgylp942f6icpmhq"; 202270 libraryHaskellDepends = [ base mtl ]; 202271 testHaskellDepends = [ base ]; 202272 description = "A version of Operational suitable for extensible EDSLs"; ··· 202388 }: 202389 mkDerivation { 202390 pname = "optics"; 202391 version = "0.4.2"; 202392 sha256 = "1irk0m3194vmrqwm29p5gjwd8w7i5hmg1ikxfw11yjfk0hvmbrzb"; 202393 libraryHaskellDepends = [ ··· 202405 ]; 202406 description = "Optics as an abstract interface"; 202407 license = lib.licenses.bsd3; 202408 maintainers = with lib.maintainers; [ maralorn ]; 202409 }) {}; 202410 ··· 202433 }: 202434 mkDerivation { 202435 pname = "optics-extra"; 202436 version = "0.4.2.1"; 202437 sha256 = "0hfa5yb7l3l310lfxkii13fjzb69g619agadc5a86i734nisf8vy"; 202438 libraryHaskellDepends = [ ··· 202442 ]; 202443 description = "Extra utilities and instances for optics-core"; 202444 license = lib.licenses.bsd3; 202445 }) {}; 202446 202447 "optics-th" = callPackage ··· 204767 ({ mkDerivation, base, containers, criterion, data-default, deepseq 204768 , directory, filepath, gitrev, hspec, microlens, microlens-mtl 204769 , microlens-th, mtl, open-browser, optparse-applicative, pandoc 204770 + , pandoc-types, syb, template-haskell, temporary, text, utility-ht 204771 }: 204772 mkDerivation { 204773 pname = "pandoc-crossref"; 204774 + version = "0.3.13.0"; 204775 + sha256 = "0fn5xrsh1x1rk74vd30yvg4ha9aicqbm7r1w0nrq9fkgcmz1q01x"; 204776 isLibrary = true; 204777 isExecutable = true; 204778 enableSeparateDataOutput = true; 204779 libraryHaskellDepends = [ 204780 base containers data-default directory filepath microlens 204781 + microlens-mtl microlens-th mtl pandoc pandoc-types syb 204782 + template-haskell text utility-ht 204783 ]; 204784 executableHaskellDepends = [ 204785 base deepseq gitrev open-browser optparse-applicative pandoc ··· 205003 ({ mkDerivation, base, containers, pandoc-types, relude, text }: 205004 mkDerivation { 205005 pname = "pandoc-link-context"; 205006 + version = "1.4.0.0"; 205007 + sha256 = "002q0kdw3686s7yhsk1p8i6srz1wvs42pzvz7ajgnsdqcnyqh93g"; 205008 libraryHaskellDepends = [ 205009 base containers pandoc-types relude text 205010 ]; ··· 205333 ({ mkDerivation }: 205334 mkDerivation { 205335 pname = "pandora"; 205336 + version = "0.5.6"; 205337 + sha256 = "05x4ihcs6j380r9g5rh6afy9zadfnrlg9si8ia4aaa7kh2jc20p9"; 205338 description = "A box of patterns and paradigms"; 205339 license = lib.licenses.mit; 205340 hydraPlatforms = lib.platforms.none; ··· 208481 }: 208482 mkDerivation { 208483 pname = "pcre2"; 208484 + version = "2.1.1.1"; 208485 + sha256 = "1593grzraqpam646s08fi3wgwnaib3lcgyj5m7xqpbfrzyil8wsq"; 208486 + libraryHaskellDepends = [ 208487 + base containers microlens mtl template-haskell text 208488 + ]; 208489 + testHaskellDepends = [ 208490 + base containers hspec microlens microlens-platform mtl 208491 + template-haskell text 208492 + ]; 208493 + benchmarkHaskellDepends = [ 208494 + base containers criterion microlens microlens-platform mtl 208495 + pcre-light regex-pcre-builtin template-haskell text 208496 + ]; 208497 + description = "Regular expressions via the PCRE2 C library (included)"; 208498 + license = lib.licenses.asl20; 208499 + }) {}; 208500 + 208501 + "pcre2_2_2_1" = callPackage 208502 + ({ mkDerivation, base, containers, criterion, hspec, microlens 208503 + , microlens-platform, mtl, pcre-light, regex-pcre-builtin 208504 + , template-haskell, text 208505 + }: 208506 + mkDerivation { 208507 + pname = "pcre2"; 208508 + version = "2.2.1"; 208509 + sha256 = "0w08a4gzsll0wwwkn2abjvnrxd7y1irv627v4pc5ha4gsrlqd3fl"; 208510 libraryHaskellDepends = [ 208511 base containers microlens mtl template-haskell text 208512 ]; ··· 208520 ]; 208521 description = "Regular expressions via the PCRE2 C library (included)"; 208522 license = lib.licenses.asl20; 208523 + hydraPlatforms = lib.platforms.none; 208524 }) {}; 208525 208526 "pdc" = callPackage ··· 209316 license = lib.licenses.bsd3; 209317 }) {}; 209318 209319 + "perf_0_10_0" = callPackage 209320 + ({ mkDerivation, attoparsec, base, box, box-csv, chart-svg 209321 + , containers, deepseq, formatn, gauge, mtl, numhask-space 209322 + , optics-core, optparse-applicative, rdtsc, recursion-schemes, text 209323 + , time, vector 209324 + }: 209325 + mkDerivation { 209326 + pname = "perf"; 209327 + version = "0.10.0"; 209328 + sha256 = "1igdghqn80dxgx182yb89zm685wi6xka7gjcwqws1bq8p36v7i5j"; 209329 + isLibrary = true; 209330 + isExecutable = true; 209331 + libraryHaskellDepends = [ 209332 + attoparsec base box box-csv chart-svg containers deepseq formatn 209333 + mtl numhask-space optics-core optparse-applicative rdtsc 209334 + recursion-schemes text time vector 209335 + ]; 209336 + executableHaskellDepends = [ 209337 + base containers deepseq formatn gauge mtl optparse-applicative text 209338 + ]; 209339 + description = "Low-level run time measurement"; 209340 + license = lib.licenses.bsd3; 209341 + hydraPlatforms = lib.platforms.none; 209342 + }) {}; 209343 + 209344 "perf-analysis" = callPackage 209345 ({ mkDerivation, base, containers, deepseq, optparse-generic, perf 209346 , protolude, readme-lhs, scientific, tdigest, text, text-format ··· 211122 pname = "phatsort"; 211123 version = "0.5.0.1"; 211124 sha256 = "14czx4s3ywfcxbw8lr60i3cdk62rcfr7m1v98mx3qm1gjinll5js"; 211125 + revision = "1"; 211126 + editedCabalFile = "06s8xg07za1d23wai8pb7gvbcri2vmbv0jks7as8d8mf82giqvz8"; 211127 isLibrary = true; 211128 isExecutable = true; 211129 libraryHaskellDepends = [ ··· 213583 }: 213584 mkDerivation { 213585 pname = "pipes-text"; 213586 + version = "1.0.1"; 213587 + sha256 = "1q91jsqlikrp2dj21nik5b3j8b1y996gy8rjkx8hlzrps11vrc2w"; 213588 libraryHaskellDepends = [ 213589 base bytestring pipes pipes-bytestring pipes-group pipes-parse 213590 pipes-safe streaming-commons text transformers ··· 215452 pname = "poly-rec"; 215453 version = "0.7.0.0"; 215454 sha256 = "0ayaz87l2rgpm4ddc7bidss042xhfcwa3sk7685ypssqvp02k5r0"; 215455 + revision = "2"; 215456 + editedCabalFile = "12cgm587k27mmjkix58qs4ihdcx1axlkp17bq7f3fhw80j64imk7"; 215457 libraryHaskellDepends = [ base requirements ]; 215458 description = "Polykinded extensible records"; 215459 license = lib.licenses.gpl3Only; ··· 222166 libraryHaskellDepends = [ base glade glib gtk ]; 222167 description = "A library for functional GUI development"; 222168 license = lib.licenses.bsd3; 222169 + hydraPlatforms = lib.platforms.none; 222170 }) {}; 222171 222172 "props" = callPackage ··· 223002 ]; 223003 description = "Language support for the PureScript programming language"; 223004 license = lib.licenses.mit; 223005 + hydraPlatforms = lib.platforms.none; 223006 }) {}; 223007 223008 "pseudo-boolean" = callPackage ··· 223849 license = lib.licenses.bsd3; 223850 hydraPlatforms = lib.platforms.none; 223851 maintainers = with lib.maintainers; [ cdepillabout ]; 223852 + broken = true; 223853 }) {}; 223854 223855 "purescheme-wai-routing-core" = callPackage ··· 223957 ]; 223958 description = "PureScript Programming Language Abstract Syntax Tree"; 223959 license = lib.licenses.bsd3; 223960 }) {}; 223961 223962 "purescript-bridge" = callPackage ··· 224013 libraryToolDepends = [ happy ]; 224014 description = "PureScript Programming Language Concrete Syntax Tree"; 224015 license = lib.licenses.bsd3; 224016 }) {}; 224017 224018 "purescript-iso" = callPackage ··· 224065 ]; 224066 description = "TypeScript Declaration File (.d.ts) generator for PureScript"; 224067 license = lib.licenses.bsd3; 224068 + hydraPlatforms = lib.platforms.none; 224069 }) {}; 224070 224071 "pursuit-client" = callPackage ··· 226908 226909 "radixtree" = callPackage 226910 ({ mkDerivation, attoparsec, base, containers, criterion, deepseq 226911 + , ghc-compact, microlens, mtl, parsers, QuasiText, smallcheck 226912 + , tasty, tasty-smallcheck, text, vector 226913 }: 226914 mkDerivation { 226915 pname = "radixtree"; 226916 + version = "0.6.0.0"; 226917 + sha256 = "0l6abb72r36ihzyjw5nsnf393qhaxsvi2732h4w4brs4jhqk85hz"; 226918 libraryHaskellDepends = [ 226919 + base containers deepseq microlens mtl parsers text vector 226920 ]; 226921 testHaskellDepends = [ 226922 attoparsec base smallcheck tasty tasty-smallcheck text 226923 ]; 226924 benchmarkHaskellDepends = [ 226925 + attoparsec base criterion deepseq ghc-compact QuasiText text vector 226926 ]; 226927 license = lib.licenses.bsd3; 226928 hydraPlatforms = lib.platforms.none; ··· 227000 "rails-session" = callPackage 227001 ({ mkDerivation, base, base-compat, base16-bytestring 227002 , base64-bytestring, bytestring, containers, cryptonite, filepath 227003 + , hspec, http-types, pbkdf, ruby-marshal, semigroups, string-conv 227004 + , tasty, tasty-hspec, transformers, vector 227005 }: 227006 mkDerivation { 227007 pname = "rails-session"; 227008 + version = "0.1.3.0"; 227009 + sha256 = "0fybpyg5si9rizifxdghilffvqmszm8h7w5v8b7xdmsw1i5gv56m"; 227010 libraryHaskellDepends = [ 227011 base base-compat base16-bytestring base64-bytestring bytestring 227012 containers cryptonite http-types pbkdf ruby-marshal string-conv 227013 vector 227014 ]; 227015 testHaskellDepends = [ 227016 + base bytestring filepath hspec ruby-marshal semigroups tasty 227017 + tasty-hspec transformers vector 227018 ]; 227019 description = "Decrypt Ruby on Rails sessions in Haskell"; 227020 license = lib.licenses.bsd3; ··· 227547 pname = "random-source"; 227548 version = "0.3.0.11"; 227549 sha256 = "0lwqbd0h495srgi2p8fsmsfk5hv5m3f6cxm12j61xx94fdyn98sv"; 227550 + revision = "2"; 227551 + editedCabalFile = "1bxw5mrrzyhd74jclgn1b6x78rsh301ys86m2jrkcy4zsxhaqr99"; 227552 libraryHaskellDepends = [ 227553 base flexible-defaults mersenne-random-pure64 mtl mwc-random 227554 primitive random stateref syb template-haskell th-extras ··· 227739 ({ mkDerivation, base, doctest, typecheck-plugin-nat-simple }: 227740 mkDerivation { 227741 pname = "ranged-list"; 227742 + version = "0.1.2.0"; 227743 + sha256 = "0ry2l6379g1q8y22hziqscsxv134k26a28aqvlxjyliqkx707b9i"; 227744 enableSeparateDataOutput = true; 227745 libraryHaskellDepends = [ base typecheck-plugin-nat-simple ]; 227746 testHaskellDepends = [ base doctest typecheck-plugin-nat-simple ]; ··· 228310 broken = true; 228311 }) {}; 228312 228313 + "rattletrap_11_2_10" = callPackage 228314 ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring 228315 , containers, filepath, http-client, http-client-tls, text 228316 }: 228317 mkDerivation { 228318 pname = "rattletrap"; 228319 + version = "11.2.10"; 228320 + sha256 = "1iy0nkqpnwhscs98b277q6ykk7mph5a5ah8gqf4dxz58q7lwk47z"; 228321 isLibrary = true; 228322 isExecutable = true; 228323 libraryHaskellDepends = [ ··· 228378 }: 228379 mkDerivation { 228380 pname = "raw-feldspar"; 228381 + version = "0.4.1"; 228382 + sha256 = "04n6rhw6llgp4p53d8djwbs7qqk0yip5ml48sjx2ibswvz9ihdsb"; 228383 libraryHaskellDepends = [ 228384 array base constraints containers data-default-class data-hash 228385 imperative-edsl language-c-quote mtl operational-alacarte ··· 228593 }: 228594 mkDerivation { 228595 pname = "rcu"; 228596 version = "0.2.6"; 228597 sha256 = "14kg45ycx5wa3k9xn7glp4kdy8xz119m4gs91114qx0rkbix2f5h"; 228598 isLibrary = true; ··· 228607 ]; 228608 description = "Read-Copy-Update for Haskell"; 228609 license = lib.licenses.bsd3; 228610 }) {}; 228611 228612 "rdf" = callPackage ··· 230615 pname = "reflex"; 230616 version = "0.8.2.0"; 230617 sha256 = "1hvagxcs413bqairxf77vp19484mxnbfckhd44wv22ncwfh5mq6d"; 230618 + revision = "1"; 230619 + editedCabalFile = "194c0y2asv8z64hxs6cppjrg0m1r3ipp9565aj6dac63dqf8j29l"; 230620 libraryHaskellDepends = [ 230621 base bifunctors comonad constraints constraints-extras containers 230622 data-default dependent-map dependent-sum exception-transformers ··· 230659 230660 "reflex-backend-socket" = callPackage 230661 ({ mkDerivation, base, bytestring, containers, lens, mtl, network 230662 + , reflex, semialign, semigroupoids, stm, these, witherable 230663 }: 230664 mkDerivation { 230665 pname = "reflex-backend-socket"; 230666 + version = "0.2.0.1"; 230667 + sha256 = "1p4rzhc4c8rk4c75hdxmzjpsmfvinnvmszqzmb9a4fpw55fdwy8z"; 230668 isLibrary = true; 230669 isExecutable = true; 230670 libraryHaskellDepends = [ ··· 230672 these 230673 ]; 230674 executableHaskellDepends = [ 230675 + base bytestring containers lens network reflex witherable 230676 ]; 230677 description = "Reflex bindings for TCP sockets"; 230678 license = lib.licenses.bsd3; 230679 }) {}; 230680 230681 "reflex-backend-wai" = callPackage ··· 231189 }) {}; 231190 231191 "reflex-libtelnet" = callPackage 231192 + ({ mkDerivation, base, bytestring, dependent-map, dependent-sum 231193 + , dependent-sum-template, libtelnet, reflex 231194 }: 231195 mkDerivation { 231196 pname = "reflex-libtelnet"; 231197 + version = "0.2.0.0"; 231198 + sha256 = "0kwcd001lg9fadqf4zd6z9351qrlk74fk4i8cysgkmay59n2fy85"; 231199 libraryHaskellDepends = [ 231200 + base bytestring dependent-map dependent-sum dependent-sum-template 231201 + libtelnet reflex 231202 ]; 231203 description = "Reflex bindings for libtelnet"; 231204 license = lib.licenses.gpl3Plus; ··· 231673 pname = "regex-base"; 231674 version = "0.94.0.2"; 231675 sha256 = "1w9fxad1dwi040r3db9i2cjhhrl86p3hngj13ixbcnqgb27l16bv"; 231676 + revision = "1"; 231677 + editedCabalFile = "1k2gzjm7xz69f7zr08wh2wzb5dhb659cvimsvx0g9p8cf5f45x2g"; 231678 libraryHaskellDepends = [ array base bytestring containers text ]; 231679 description = "Common \"Text.Regex.*\" API for Regex matching"; 231680 license = lib.licenses.bsd3; ··· 231686 pname = "regex-compat"; 231687 version = "0.95.2.1"; 231688 sha256 = "0ivrdrcphrz3g6nr5wbsmfiv8i82caw0kf6z5qlmlq7xf9n3hywg"; 231689 + revision = "2"; 231690 + editedCabalFile = "0ldqpdxikm17ydrkfmichflkdqdrkspv4r0qy3zbdgqf5033pj4n"; 231691 libraryHaskellDepends = [ array base regex-base regex-posix ]; 231692 description = "Replaces/enhances \"Text.Regex\""; 231693 license = lib.licenses.bsd3; ··· 231869 pname = "regex-pcre"; 231870 version = "0.95.0.0"; 231871 sha256 = "0nn76q4bsjnxim0j0d01jifmh36as9jdpcvm001a851vvq86zb8n"; 231872 + revision = "4"; 231873 + editedCabalFile = "07fqy6pj7zz2vqbj8y4s5npc7vk9ggzayiy31hy4ss91lys74d1j"; 231874 libraryHaskellDepends = [ 231875 array base bytestring containers regex-base 231876 ]; ··· 231936 pname = "regex-posix"; 231937 version = "0.96.0.1"; 231938 sha256 = "1715b57z67q4hg0jz44wkxrxi3v7n5iagw6gw48pf8hr34wpr0n7"; 231939 + revision = "1"; 231940 + editedCabalFile = "1x5xkfddn3llxk4fngqbd8njssrwb7jlp0a0jxfrgdivbava9fwx"; 231941 libraryHaskellDepends = [ 231942 array base bytestring containers regex-base 231943 ]; ··· 232002 pname = "regex-tdfa"; 232003 version = "1.3.1.2"; 232004 sha256 = "0qka53m4xirlb2cjzr68rhybm31i4x2f78b8724a0askvb4phyn4"; 232005 + revision = "1"; 232006 + editedCabalFile = "02hq7zymsybnmm9qmlsj7fdh02dch6001nm348ymabvlwjndxbwv"; 232007 libraryHaskellDepends = [ 232008 array base bytestring containers mtl parsec regex-base text 232009 ]; ··· 232392 }: 232393 mkDerivation { 232394 pname = "registry"; 232395 + version = "0.3.0.5"; 232396 + sha256 = "0q2dk0hyq6rdnvvldic4xzp0c28ky5jv7p994qhfbra8a1qkr08z"; 232397 libraryHaskellDepends = [ 232398 base containers exceptions hashable mmorph mtl protolude resourcet 232399 semigroupoids semigroups template-haskell text transformers-base ··· 232420 }: 232421 mkDerivation { 232422 pname = "registry-hedgehog"; 232423 + version = "0.7.0.0"; 232424 + sha256 = "00k2qsiavi3l5ksgd9xh05lachvhhm7vp7z0cmsy6y5saz5l44hh"; 232425 libraryHaskellDepends = [ 232426 base containers hedgehog mmorph multimap protolude registry tasty 232427 tasty-discover tasty-hedgehog tasty-th template-haskell text ··· 232473 }: 232474 mkDerivation { 232475 pname = "registry-messagepack"; 232476 + version = "0.2.0.0"; 232477 + sha256 = "0hkz80kbsmvlcvy4py1vwsr4z5blmkcp6b24ay9qzayqdjx03r2w"; 232478 libraryHaskellDepends = [ 232479 base containers msgpack protolude registry template-haskell text 232480 transformers vector ··· 233767 }: 233768 mkDerivation { 233769 pname = "repline"; 233770 version = "0.4.2.0"; 233771 sha256 = "0nldn02yqqmrxkzwzrx3v6hkb4y2hch48jkcr2qrw1dl0vqv70b1"; 233772 libraryHaskellDepends = [ ··· 233775 testHaskellDepends = [ base containers mtl process ]; 233776 description = "Haskeline wrapper for GHCi-like REPL interfaces"; 233777 license = lib.licenses.mit; 233778 }) {}; 233779 233780 "repo-based-blog" = callPackage ··· 234127 ({ mkDerivation, base }: 234128 mkDerivation { 234129 pname = "requirements"; 234130 + version = "0.7.0.1"; 234131 + sha256 = "0nikl4ga2jap95yf29z87wnazfhz7k272phjwajn1yk22shv308z"; 234132 libraryHaskellDepends = [ base ]; 234133 description = "Abstraction to manage user defined Type Errors"; 234134 license = lib.licenses.gpl3Only; ··· 235029 ({ mkDerivation, barbies, base, clash-ghc, clash-lib, clash-prelude 235030 , containers, ghc-typelits-extra, ghc-typelits-knownnat 235031 , ghc-typelits-natnormalise, lens, lift-type, monoidal-containers 235032 + , mtl, template-haskell, th-orphans, transformers 235033 }: 235034 mkDerivation { 235035 pname = "retroclash-lib"; 235036 + version = "0.1.2.1"; 235037 + sha256 = "0xf1prvgh41iilghi5ilr5c490xxj9b0mk1xz9is6w0c34wcppr9"; 235038 libraryHaskellDepends = [ 235039 barbies base clash-ghc clash-lib clash-prelude containers 235040 ghc-typelits-extra ghc-typelits-knownnat ghc-typelits-natnormalise 235041 + lens lift-type monoidal-containers mtl template-haskell th-orphans 235042 transformers 235043 ]; 235044 description = "Code shared across the code samples in the book \"Retrocomputing with Clash\""; ··· 235073 }: 235074 mkDerivation { 235075 pname = "retry"; 235076 + version = "0.9.2.1"; 235077 + sha256 = "0x6aa0mrj7m68wrbnml6bv852xxy5992qc69c2v5ipbjli560ak5"; 235078 libraryHaskellDepends = [ 235079 base exceptions ghc-prim mtl mtl-compat random transformers 235080 ]; ··· 238193 238194 "ruby-marshal" = callPackage 238195 ({ mkDerivation, base, bytestring, cereal, containers, fail, hspec 238196 + , hspec-discover, mtl, string-conv, vector 238197 }: 238198 mkDerivation { 238199 pname = "ruby-marshal"; 238200 + version = "0.2.1"; 238201 + sha256 = "18kdagf0lyghpaffzgw42ql1wrqkh13rfqjpj23i09i67pqrv3lk"; 238202 libraryHaskellDepends = [ 238203 base bytestring cereal containers fail mtl string-conv vector 238204 ]; 238205 testHaskellDepends = [ 238206 base bytestring cereal containers fail hspec mtl string-conv vector 238207 ]; 238208 + testToolDepends = [ hspec-discover ]; 238209 description = "Parse a subset of Ruby objects serialised with Marshal.dump."; 238210 license = lib.licenses.mit; 238211 hydraPlatforms = lib.platforms.none; ··· 238454 }: 238455 mkDerivation { 238456 pname = "rvar"; 238457 + version = "0.3.0.1"; 238458 + sha256 = "1wa5nxlsfm1la5s70xv3swrmidxy0h6kv9ilicwkls12gwdc2a95"; 238459 libraryHaskellDepends = [ 238460 base bytestring MonadPrompt mtl random transformers 238461 ]; ··· 238763 }: 238764 mkDerivation { 238765 pname = "safe-exceptions"; 238766 + version = "0.1.7.3"; 238767 + sha256 = "1gxm61mccivrdz2qcfh5sim596nbrpapx0nli0bx7vx6z3c2ikli"; 238768 libraryHaskellDepends = [ base deepseq exceptions transformers ]; 238769 testHaskellDepends = [ base hspec transformers void ]; 238770 description = "Safe, consistent, and easy exception handling"; ··· 240240 license = lib.licenses.mit; 240241 }) {}; 240242 240243 + "sbp_4_3_0" = callPackage 240244 ({ mkDerivation, aeson, aeson-pretty, array, base 240245 , base64-bytestring, basic-prelude, binary, binary-conduit 240246 , bytestring, cmdargs, conduit, conduit-extra, data-binary-ieee754 ··· 240249 }: 240250 mkDerivation { 240251 pname = "sbp"; 240252 + version = "4.3.0"; 240253 + sha256 = "0fr9pc4y5wmyvw3ybyl1r7ypqgz5ngki4i0qh8d6qdsqy1m0vckg"; 240254 isLibrary = true; 240255 isExecutable = true; 240256 libraryHaskellDepends = [ ··· 245889 }: 245890 mkDerivation { 245891 pname = "servant-openapi3"; 245892 version = "2.0.1.5"; 245893 sha256 = "0zcyqga4hbdyk34368108vv9vavzdhv26xphas7yppada2sshfay"; 245894 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 245905 testToolDepends = [ hspec-discover ]; 245906 description = "Generate a Swagger/OpenAPI/OAS 3.0 specification for your servant API."; 245907 license = lib.licenses.bsd3; 245908 }) {}; 245909 245910 "servant-options" = callPackage ··· 248672 maintainers = with lib.maintainers; [ psibi ]; 248673 }) {}; 248674 248675 + "shakespeare_2_0_29" = callPackage 248676 + ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring 248677 + , containers, directory, exceptions, file-embed, ghc-prim, hspec 248678 + , HUnit, parsec, process, scientific, template-haskell, text 248679 + , th-lift, time, transformers, unordered-containers, vector 248680 + }: 248681 + mkDerivation { 248682 + pname = "shakespeare"; 248683 + version = "2.0.29"; 248684 + sha256 = "016vkhn2g91cip5w06kh0z577s90sd768rmx044n4b5sa135c89j"; 248685 + libraryHaskellDepends = [ 248686 + aeson base blaze-html blaze-markup bytestring containers directory 248687 + exceptions file-embed ghc-prim parsec process scientific 248688 + template-haskell text th-lift time transformers 248689 + unordered-containers vector 248690 + ]; 248691 + testHaskellDepends = [ 248692 + aeson base blaze-html blaze-markup bytestring containers directory 248693 + exceptions ghc-prim hspec HUnit parsec process template-haskell 248694 + text time transformers 248695 + ]; 248696 + description = "A toolkit for making compile-time interpolated templates"; 248697 + license = lib.licenses.mit; 248698 + hydraPlatforms = lib.platforms.none; 248699 + maintainers = with lib.maintainers; [ psibi ]; 248700 + }) {}; 248701 + 248702 "shakespeare-babel" = callPackage 248703 ({ mkDerivation, base, classy-prelude, data-default, directory 248704 , process, shakespeare, template-haskell ··· 249018 ]; 249019 description = "Spreadsheet type for composite"; 249020 license = lib.licenses.bsd3; 249021 + hydraPlatforms = lib.platforms.none; 249022 }) {}; 249023 249024 "shelduck" = callPackage ··· 249253 pname = "shelly"; 249254 version = "1.10.0"; 249255 sha256 = "0hgzh0rrhipir8378civ5mwvkvcsd063jm2pyx8dqngdynph0h65"; 249256 + revision = "1"; 249257 + editedCabalFile = "07c1rjwvg2ldam6yaksvrr9f703b7d1rcw0482ns5yi2f7y1kczp"; 249258 isLibrary = true; 249259 isExecutable = true; 249260 libraryHaskellDepends = [ ··· 249732 executableHaskellDepends = [ base glade gtk random ]; 249733 description = "A simple gtk based Russian Roulette game"; 249734 license = lib.licenses.bsd3; 249735 + hydraPlatforms = lib.platforms.none; 249736 }) {}; 249737 249738 "shower" = callPackage ··· 250219 broken = true; 250220 }) {}; 250221 250222 + "simfin" = callPackage 250223 + ({ mkDerivation, aeson, base, bytestring, Chart, Chart-diagrams 250224 + , composition-extra, containers, exceptions, http-client 250225 + , http-client-tls, http-types, multi-containers, SVGFonts, tasty 250226 + , tasty-hunit, text, time, unordered-containers, utf8-string 250227 + }: 250228 + mkDerivation { 250229 + pname = "simfin"; 250230 + version = "1.0.0"; 250231 + sha256 = "1axrwkxa93igwr737xi98cni5s99kd29hxn3y7xbvh89wri7xcza"; 250232 + isLibrary = true; 250233 + isExecutable = true; 250234 + libraryHaskellDepends = [ 250235 + aeson base bytestring composition-extra exceptions http-client 250236 + http-client-tls http-types text time unordered-containers 250237 + utf8-string 250238 + ]; 250239 + executableHaskellDepends = [ 250240 + base Chart Chart-diagrams containers multi-containers SVGFonts text 250241 + time 250242 + ]; 250243 + testHaskellDepends = [ aeson base tasty tasty-hunit text ]; 250244 + description = "A library to fetch and parse financial data from the SimFin(+) API"; 250245 + license = lib.licenses.mit; 250246 + hydraPlatforms = lib.platforms.none; 250247 + broken = true; 250248 + }) {}; 250249 + 250250 "simgi" = callPackage 250251 ({ mkDerivation, base, containers, haskell98 250252 , mersenne-random-pure64, mtl, parsec, random ··· 250424 }: 250425 mkDerivation { 250426 pname = "simple-cmd"; 250427 version = "0.2.6"; 250428 sha256 = "0x5r4i1ckswrs0060blr6zx1n8zbdqc977nq9n5gmwcfznsrhc67"; 250429 libraryHaskellDepends = [ ··· 250432 testHaskellDepends = [ base hspec ]; 250433 description = "Simple String-based process commands"; 250434 license = lib.licenses.bsd3; 250435 }) {}; 250436 250437 "simple-cmd-args" = callPackage ··· 251551 "sindre" = callPackage 251552 ({ mkDerivation, array, attoparsec, base, bytestring, containers 251553 , libXft, mtl, parsec, permute, process, regex-pcre, setlocale 251554 + , text, unix, utf8-string, X11, X11-rm, x11-xim, X11-xshape, xext 251555 }: 251556 mkDerivation { 251557 pname = "sindre"; 251558 + version = "0.6"; 251559 + sha256 = "0pp000cabdjphgb0panyg9nw0zgfzklkg4ink8swyxcix3r84mj9"; 251560 isLibrary = true; 251561 isExecutable = true; 251562 libraryHaskellDepends = [ ··· 251564 process regex-pcre setlocale text unix utf8-string X11 X11-rm 251565 x11-xim X11-xshape 251566 ]; 251567 + libraryPkgconfigDepends = [ libXft xext ]; 251568 executableHaskellDepends = [ 251569 array attoparsec base bytestring containers mtl parsec permute 251570 process regex-pcre setlocale text unix utf8-string X11 X11-rm 251571 x11-xim X11-xshape 251572 ]; 251573 + executablePkgconfigDepends = [ libXft xext ]; 251574 description = "A programming language for simple GUIs"; 251575 license = lib.licenses.bsd3; 251576 + }) {inherit (pkgs.xorg) libXft; xext = null;}; 251577 251578 "single-tuple" = callPackage 251579 ({ mkDerivation, base, ghc-prim, hspec, hspec-discover, OneTuple ··· 251743 pname = "singletons-th"; 251744 version = "3.0"; 251745 sha256 = "1c0w7sg0lbpizrzns4g55wxsk5jm8wlqw0w9rz4jzqwy15byb572"; 251746 + revision = "1"; 251747 + editedCabalFile = "11mmccdqxplqz7mp1brxpr9hqnkqkhbwnp32mihz4ird0k8gwqij"; 251748 libraryHaskellDepends = [ 251749 base containers ghc-boot-th mtl singletons syb template-haskell 251750 th-desugar th-orphans transformers ··· 251761 pname = "singletons-th"; 251762 version = "3.1"; 251763 sha256 = "1mhx7sadw7zxaf7qhryrhi4fiyf9v3jcaplkh1syaa7b4725dm7a"; 251764 + revision = "2"; 251765 + editedCabalFile = "19ac6s4k6yv0lfrhkmgpf000k32rpm91lngs4955158792pa6fi6"; 251766 libraryHaskellDepends = [ 251767 base containers ghc-boot-th mtl singletons syb template-haskell 251768 th-desugar th-orphans transformers ··· 252392 }: 252393 mkDerivation { 252394 pname = "skylighting"; 252395 version = "0.12.3.1"; 252396 sha256 = "08wml20cphj5idv5f20cz0jx7n8f037gy7x5axak83sbd98k71nw"; 252397 configureFlags = [ "-fexecutable" ]; ··· 252405 ]; 252406 description = "syntax highlighting library"; 252407 license = lib.licenses.gpl2Only; 252408 }) {}; 252409 252410 "skylighting-core" = callPackage ··· 252417 }: 252418 mkDerivation { 252419 pname = "skylighting-core"; 252420 version = "0.12.3.1"; 252421 sha256 = "08svbbfw27zhlblglagxqvsppkdfibqjnx331jdbfrlj0a9pi5h8"; 252422 isLibrary = true; ··· 252436 ]; 252437 description = "syntax highlighting library"; 252438 license = lib.licenses.bsd3; 252439 }) {}; 252440 252441 "skylighting-extensions" = callPackage ··· 252459 ({ mkDerivation, base, containers, lucid, skylighting-core, text }: 252460 mkDerivation { 252461 pname = "skylighting-lucid"; 252462 + version = "1.0.2"; 252463 + sha256 = "06gvc5d23aiah5yq4b9gks7x26iz6xcx0k4mfsmjv5v2ic2zrbzb"; 252464 libraryHaskellDepends = [ 252465 base containers lucid skylighting-core text 252466 ]; ··· 256790 license = lib.licenses.gpl3Only; 256791 }) {}; 256792 256793 + "sparse-merkle-trees" = callPackage 256794 + ({ mkDerivation, base, bytestring, containers, criterion 256795 + , cryptonite, deepseq, memory, QuickCheck, smallcheck, tasty 256796 + , tasty-hunit, tasty-quickcheck, tasty-smallcheck 256797 + }: 256798 + mkDerivation { 256799 + pname = "sparse-merkle-trees"; 256800 + version = "0.2.0.0"; 256801 + sha256 = "0jcysnm95kv7xw36yi02n2jp3xrbyp1g3pr141hj5zkc90ng5ds7"; 256802 + libraryHaskellDepends = [ 256803 + base bytestring containers cryptonite memory 256804 + ]; 256805 + testHaskellDepends = [ 256806 + base bytestring containers cryptonite memory smallcheck tasty 256807 + tasty-hunit tasty-quickcheck tasty-smallcheck 256808 + ]; 256809 + benchmarkHaskellDepends = [ 256810 + base bytestring containers criterion cryptonite deepseq memory 256811 + QuickCheck 256812 + ]; 256813 + description = "Sparse Merkle trees with proofs of inclusion and exclusion"; 256814 + license = lib.licenses.bsd3; 256815 + }) {}; 256816 + 256817 "sparse-tensor" = callPackage 256818 ({ mkDerivation, ad, base, bytestring, Cabal, cereal, containers 256819 , deepseq, ghc-typelits-knownnat, ghc-typelits-natnormalise ··· 258798 }: 258799 mkDerivation { 258800 pname = "stache"; 258801 + version = "2.3.2"; 258802 + sha256 = "1ya9hnxvwqh1qhlci7aqpbj9abmsi2n13251b8nffmpvlpls6lk8"; 258803 isLibrary = true; 258804 isExecutable = true; 258805 enableSeparateDataOutput = true; ··· 261359 license = lib.licenses.bsd3; 261360 }) {}; 261361 261362 + "storable-offset" = callPackage 261363 + ({ mkDerivation, base }: 261364 + mkDerivation { 261365 + pname = "storable-offset"; 261366 + version = "0.1.0.0"; 261367 + sha256 = "0m0qmnnb07vhzs1ds7h4cfhba4rzb3abpijk8vjwncanfgg2g4pj"; 261368 + libraryHaskellDepends = [ base ]; 261369 + description = "Storable offsets for record fields"; 261370 + license = lib.licenses.bsd3; 261371 + }) {}; 261372 + 261373 "storable-record" = callPackage 261374 ({ mkDerivation, base, QuickCheck, semigroups, transformers 261375 , utility-ht ··· 261945 }: 261946 mkDerivation { 261947 pname = "streaming-bytestring"; 261948 version = "0.2.2"; 261949 sha256 = "01iw8d3lxb72cv6gp6k8w966g9q485zmd5akri2x1n5xdd26lv9h"; 261950 libraryHaskellDepends = [ ··· 261957 ]; 261958 description = "Fast, effectful byte streams"; 261959 license = lib.licenses.bsd3; 261960 }) {}; 261961 261962 "streaming-cassava" = callPackage ··· 262630 }: 262631 mkDerivation { 262632 pname = "streamt"; 262633 version = "0.5.0.1"; 262634 sha256 = "0adbn5kh2wqgvwzjgrhcd94abch7if6qz26ihpbm4igwbmwirzgw"; 262635 libraryHaskellDepends = [ base logict mtl ]; ··· 262638 ]; 262639 description = "Simple, Fair and Terminating Backtracking Monad Transformer"; 262640 license = lib.licenses.bsd3; 262641 }) {}; 262642 262643 "strelka" = callPackage ··· 263132 }: 263133 mkDerivation { 263134 pname = "string-interpolate"; 263135 version = "0.3.1.2"; 263136 sha256 = "0gmph9mikqq8hch9wjyyx6dxfxwhmdfrwsrxkvbk7i24lvi19hhp"; 263137 libraryHaskellDepends = [ ··· 263149 ]; 263150 description = "Haskell string/text/bytestring interpolation that just works"; 263151 license = lib.licenses.bsd3; 263152 }) {}; 263153 263154 "string-interpreter" = callPackage ··· 266890 }: 266891 mkDerivation { 266892 pname = "syntactic"; 266893 + version = "3.8.4"; 266894 + sha256 = "13hsv7yr35jaimag4v0c0l56clcdcny4b1m0q6h83qcidcrqxcfc"; 266895 libraryHaskellDepends = [ 266896 base constraints containers data-hash deepseq mtl syb 266897 template-haskell tree-view ··· 268663 pname = "talash"; 268664 version = "0.1.1.1"; 268665 sha256 = "0sa4ay2dc4srh5wbk72iznjwr5bjjhggafhf27zyyxjhnjvfgsq1"; 268666 + revision = "1"; 268667 + editedCabalFile = "0p635l2dr0wdfmqpx85wd6x2wq7n50m2n59rjin9fk1jg9qd869m"; 268668 isLibrary = true; 268669 isExecutable = true; 268670 libraryHaskellDepends = [ ··· 269104 pname = "taskwarrior"; 269105 version = "0.6.0.2"; 269106 sha256 = "16m4578ybwawiza4fg8gc6ndfc8hpvdkh5bv3ghamwpqyw0aq766"; 269107 + revision = "1"; 269108 + editedCabalFile = "10yyjis1crs60h00z0nlrq8p4hqzafjjn63fqnwf7wjq1yqmg5h5"; 269109 libraryHaskellDepends = [ 269110 aeson base bytestring containers process random text time uuid 269111 ]; ··· 269244 }) {}; 269245 269246 "tasty-discover" = callPackage 269247 + ({ mkDerivation, base, bytestring, containers, directory, filepath 269248 + , Glob, hedgehog, hspec, hspec-core, tasty, tasty-golden 269249 + , tasty-hedgehog, tasty-hspec, tasty-hunit, tasty-quickcheck 269250 + , tasty-smallcheck 269251 }: 269252 mkDerivation { 269253 pname = "tasty-discover"; 269254 + version = "4.2.4"; 269255 + sha256 = "1v6ndsvz9f04gv3m41a2yqprpa7xz8d00vkws25a9n7b7h3wvj4x"; 269256 isLibrary = true; 269257 isExecutable = true; 269258 libraryHaskellDepends = [ 269259 + base containers directory filepath Glob tasty 269260 ]; 269261 executableHaskellDepends = [ 269262 base containers directory filepath Glob 269263 ]; 269264 testHaskellDepends = [ 269265 + base bytestring containers directory filepath Glob hedgehog hspec 269266 + hspec-core tasty tasty-golden tasty-hedgehog tasty-hspec 269267 + tasty-hunit tasty-quickcheck tasty-smallcheck 269268 ]; 269269 description = "Test discovery for the tasty framework"; 269270 license = lib.licenses.mit; ··· 269481 }: 269482 mkDerivation { 269483 pname = "tasty-hspec"; 269484 version = "1.2.0.1"; 269485 sha256 = "0ibl2xi6mmqad2mriz67nb7pjwwvjik385amp24j9kc7a7zkx091"; 269486 libraryHaskellDepends = [ ··· 269489 ]; 269490 description = "Hspec support for the Tasty test framework"; 269491 license = lib.licenses.bsd3; 269492 }) {}; 269493 269494 "tasty-html" = callPackage ··· 269548 }: 269549 mkDerivation { 269550 pname = "tasty-inspection-testing"; 269551 + version = "0.1.0.1"; 269552 + sha256 = "0p46w44f19w7lvdzyg3vq6qzix0rjp8p23ilxz82dviq38lgmifp"; 269553 libraryHaskellDepends = [ 269554 base ghc inspection-testing tasty template-haskell 269555 ]; ··· 270241 pname = "tdigest"; 270242 version = "0.2.1.1"; 270243 sha256 = "1dvkf7cs8dcr13wza5iyq2qgvz75r33mzgfmhdihw62xzxsqb6d3"; 270244 + revision = "3"; 270245 + editedCabalFile = "0a39vwf37hkh06rn79blr3bw7ij05pgpxrkc9cldgdd5p4gvn1qn"; 270246 libraryHaskellDepends = [ 270247 base base-compat binary deepseq reducers semigroupoids transformers 270248 vector vector-algorithms ··· 272890 license = lib.licenses.mit; 272891 }) {}; 272892 272893 + "text-builder-dev_0_3_2" = callPackage 272894 ({ mkDerivation, base, bytestring, criterion, deferred-folds 272895 , QuickCheck, quickcheck-instances, rerebase, split, tasty 272896 , tasty-hunit, tasty-quickcheck, text, transformers 272897 }: 272898 mkDerivation { 272899 pname = "text-builder-dev"; 272900 + version = "0.3.2"; 272901 + sha256 = "0x77y8vrsxdrmx2d6y8wxw7qmdnxdjh4rzbs3lwmharxvrqdwnxs"; 272902 libraryHaskellDepends = [ 272903 base bytestring deferred-folds split text transformers 272904 ]; ··· 272910 description = "Edge of developments for \"text-builder\""; 272911 license = lib.licenses.mit; 272912 hydraPlatforms = lib.platforms.none; 272913 + }) {}; 272914 + 272915 + "text-builder-linear" = callPackage 272916 + ({ mkDerivation, base, bytestring, quote-quot, tasty, tasty-bench 272917 + , tasty-quickcheck, text 272918 + }: 272919 + mkDerivation { 272920 + pname = "text-builder-linear"; 272921 + version = "0.1"; 272922 + sha256 = "0smhph72l0wzri8rn30sq46f53ghs6srib34w8m7350rksdwm3fc"; 272923 + libraryHaskellDepends = [ base bytestring quote-quot text ]; 272924 + testHaskellDepends = [ base tasty tasty-quickcheck text ]; 272925 + benchmarkHaskellDepends = [ base tasty tasty-bench text ]; 272926 + description = "Builder for Text based on linear types"; 272927 + license = lib.licenses.bsd3; 272928 + hydraPlatforms = lib.platforms.none; 272929 + broken = true; 272930 }) {}; 272931 272932 "text-containers" = callPackage ··· 273522 license = lib.licenses.bsd3; 273523 }) {}; 273524 273525 + "text-rope_0_2" = callPackage 273526 + ({ mkDerivation, base, deepseq, random, tasty, tasty-bench 273527 + , tasty-quickcheck, text, vector 273528 + }: 273529 + mkDerivation { 273530 + pname = "text-rope"; 273531 + version = "0.2"; 273532 + sha256 = "12z7radm15mlfz5nrpii2dkjkiis05a88x923jipbhwwbs2j4i5i"; 273533 + enableSeparateDataOutput = true; 273534 + libraryHaskellDepends = [ base deepseq text vector ]; 273535 + testHaskellDepends = [ base tasty tasty-quickcheck text ]; 273536 + benchmarkHaskellDepends = [ base random tasty-bench text ]; 273537 + description = "Text lines and ropes"; 273538 + license = lib.licenses.bsd3; 273539 + hydraPlatforms = lib.platforms.none; 273540 + }) {}; 273541 + 273542 "text-short" = callPackage 273543 ({ mkDerivation, base, binary, bytestring, deepseq, ghc-prim 273544 , hashable, tasty, tasty-hunit, tasty-quickcheck, template-haskell ··· 273590 license = lib.licenses.bsd3; 273591 }) {}; 273592 273593 + "text-show_3_9_7" = callPackage 273594 + ({ mkDerivation, array, base, base-compat-batteries, base-orphans 273595 + , bifunctors, bytestring, bytestring-builder, containers, criterion 273596 + , deepseq, deriving-compat, generic-deriving, ghc-boot-th, ghc-prim 273597 + , hspec, hspec-discover, QuickCheck, quickcheck-instances 273598 + , template-haskell, text, th-abstraction, th-lift, transformers 273599 + , transformers-compat 273600 + }: 273601 + mkDerivation { 273602 + pname = "text-show"; 273603 + version = "3.9.7"; 273604 + sha256 = "1zc47qh38jmg19fdki9isjcq4v115w2q61dnmxkypahhgiaqgkb3"; 273605 + libraryHaskellDepends = [ 273606 + array base base-compat-batteries bifunctors bytestring 273607 + bytestring-builder containers generic-deriving ghc-boot-th ghc-prim 273608 + template-haskell text th-abstraction th-lift transformers 273609 + transformers-compat 273610 + ]; 273611 + testHaskellDepends = [ 273612 + array base base-compat-batteries base-orphans bytestring 273613 + bytestring-builder deriving-compat generic-deriving ghc-prim hspec 273614 + QuickCheck quickcheck-instances template-haskell text transformers 273615 + transformers-compat 273616 + ]; 273617 + testToolDepends = [ hspec-discover ]; 273618 + benchmarkHaskellDepends = [ base criterion deepseq ghc-prim text ]; 273619 + description = "Efficient conversion of values into Text"; 273620 + license = lib.licenses.bsd3; 273621 + hydraPlatforms = lib.platforms.none; 273622 + }) {}; 273623 + 273624 "text-show-instances" = callPackage 273625 ({ mkDerivation, base, base-compat-batteries, bifunctors, binary 273626 , containers, directory, generic-deriving, ghc-boot-th, ghc-prim ··· 273654 testToolDepends = [ hspec-discover ]; 273655 description = "Additional instances for text-show"; 273656 license = lib.licenses.bsd3; 273657 + }) {}; 273658 + 273659 + "text-show-instances_3_9" = callPackage 273660 + ({ mkDerivation, base, base-compat-batteries, bifunctors, binary 273661 + , containers, directory, generic-deriving, ghc-boot-th, ghc-prim 273662 + , haskeline, hpc, hspec, hspec-discover, old-locale, old-time 273663 + , pretty, QuickCheck, quickcheck-instances, random, scientific 273664 + , semigroups, tagged, template-haskell, terminfo, text, text-short 273665 + , text-show, th-orphans, time, transformers, transformers-compat 273666 + , unix, unordered-containers, vector, xhtml 273667 + }: 273668 + mkDerivation { 273669 + pname = "text-show-instances"; 273670 + version = "3.9"; 273671 + sha256 = "1bfangk4ys6pvhrv3j7i2c29xnhgin5lma2ndw051hnmmc7v2j7l"; 273672 + libraryHaskellDepends = [ 273673 + base base-compat-batteries bifunctors binary containers directory 273674 + ghc-boot-th haskeline hpc old-locale old-time pretty random 273675 + scientific semigroups tagged template-haskell terminfo text 273676 + text-short text-show time transformers transformers-compat unix 273677 + unordered-containers vector xhtml 273678 + ]; 273679 + testHaskellDepends = [ 273680 + base base-compat-batteries bifunctors binary containers directory 273681 + generic-deriving ghc-boot-th ghc-prim haskeline hpc hspec 273682 + old-locale old-time pretty QuickCheck quickcheck-instances random 273683 + scientific tagged template-haskell terminfo text-short text-show 273684 + th-orphans time transformers transformers-compat unix 273685 + unordered-containers vector xhtml 273686 + ]; 273687 + testToolDepends = [ hspec-discover ]; 273688 + description = "Additional instances for text-show"; 273689 + license = lib.licenses.bsd3; 273690 + hydraPlatforms = lib.platforms.none; 273691 }) {}; 273692 273693 "text-stream-decode" = callPackage ··· 274198 license = lib.licenses.bsd3; 274199 }) {}; 274200 274201 + "th-desugar_1_13_1" = callPackage 274202 ({ mkDerivation, base, containers, ghc-prim, hspec, HUnit, mtl 274203 , ordered-containers, syb, template-haskell, th-abstraction 274204 , th-lift, th-orphans, transformers-compat 274205 }: 274206 mkDerivation { 274207 pname = "th-desugar"; 274208 + version = "1.13.1"; 274209 + sha256 = "03k2kfbzfc87kibzbpp3s1l5xb0ww2vvwj9ngh0qapxm28a01rz3"; 274210 libraryHaskellDepends = [ 274211 base containers ghc-prim mtl ordered-containers syb 274212 template-haskell th-abstraction th-lift th-orphans ··· 274248 license = lib.licenses.bsd3; 274249 }) {}; 274250 274251 + "th-env_0_1_1" = callPackage 274252 + ({ mkDerivation, base, markdown-unlit, template-haskell, th-compat 274253 + }: 274254 + mkDerivation { 274255 + pname = "th-env"; 274256 + version = "0.1.1"; 274257 + sha256 = "01gmycna12sg2f0zslhjnjx8s86shsvmw5jpw5n5z93bvxkb20gw"; 274258 + libraryHaskellDepends = [ base template-haskell th-compat ]; 274259 + testHaskellDepends = [ base markdown-unlit ]; 274260 + testToolDepends = [ markdown-unlit ]; 274261 + description = "Template Haskell splices that expand to an environment variable"; 274262 + license = lib.licenses.bsd3; 274263 + hydraPlatforms = lib.platforms.none; 274264 + }) {}; 274265 + 274266 "th-expand-syns" = callPackage 274267 ({ mkDerivation, base, containers, syb, template-haskell 274268 , th-abstraction ··· 274489 274490 "th-orphans" = callPackage 274491 ({ mkDerivation, base, bytestring, ghc-prim, hspec, hspec-discover 274492 , mtl, template-haskell, th-compat, th-lift, th-lift-instances 274493 , th-reify-many 274494 }: ··· 274506 testToolDepends = [ hspec-discover ]; 274507 description = "Orphan instances for TH datatypes"; 274508 license = lib.licenses.bsd3; 274509 }) {}; 274510 274511 "th-pprint" = callPackage ··· 274530 pname = "th-printf"; 274531 version = "0.7"; 274532 sha256 = "1f9lw0scm2bpnhmhgvywzphxn85ln3xcn8cjyvy8h4cn2ymw4aza"; 274533 + revision = "1"; 274534 + editedCabalFile = "0q9b8xv6qf8yg5c6rn1jgmgwr4ckf4yzd9qv9ysr3c363cgnccyv"; 274535 libraryHaskellDepends = [ 274536 base charset containers dlist integer-logarithms microlens-platform 274537 mtl parsec semigroups template-haskell text th-lift transformers ··· 279001 pname = "trackit"; 279002 version = "0.7.2"; 279003 sha256 = "1ha28wdc4dabr9qxkbpg9fasfnplicb2pyrn9zmija204nigbcdj"; 279004 + revision = "3"; 279005 + editedCabalFile = "07ak29br452qssj5kik8izmny24qw1icz84dq82b5g6xhy31vdrf"; 279006 isLibrary = false; 279007 isExecutable = true; 279008 executableHaskellDepends = [ ··· 284308 }: 284309 mkDerivation { 284310 pname = "ulid"; 284311 + version = "0.3.2.0"; 284312 + sha256 = "1zhw1n5pqmb74b4120vcg4bdpdl78qwmc3j0815c7h9s9q8kik87"; 284313 isLibrary = true; 284314 isExecutable = true; 284315 libraryHaskellDepends = [ ··· 284474 }: 284475 mkDerivation { 284476 pname = "unbound-generics"; 284477 version = "0.4.2"; 284478 sha256 = "1pbpcvkkn360l0f5m7q5piyagvxznghknzjpxc7znb35i3xqywl1"; 284479 libraryHaskellDepends = [ ··· 284486 benchmarkHaskellDepends = [ base criterion deepseq ]; 284487 description = "Support for programming with names and binders using GHC Generics"; 284488 license = lib.licenses.bsd3; 284489 }) {}; 284490 284491 "unbound-kind-generics" = callPackage ··· 284903 }: 284904 mkDerivation { 284905 pname = "unicode-collation"; 284906 version = "0.1.3.2"; 284907 sha256 = "0rnb22h8w42c74l0jl5ygzh4pkpw3x8d9ayrvgapkfx844i9am7c"; 284908 isLibrary = true; ··· 284920 ]; 284921 description = "Haskell implementation of the Unicode Collation Algorithm"; 284922 license = lib.licenses.bsd2; 284923 }) {}; 284924 284925 "unicode-data" = callPackage ··· 285121 libraryHaskellDepends = [ base containers logict mtl ]; 285122 description = "Simple generic unification algorithms"; 285123 license = lib.licenses.bsd3; 285124 + }) {}; 285125 + 285126 + "unification-fd_0_11_2" = callPackage 285127 + ({ mkDerivation, base, containers, logict, mtl }: 285128 + mkDerivation { 285129 + pname = "unification-fd"; 285130 + version = "0.11.2"; 285131 + sha256 = "1lyx3g10llkr7vl7c2j15ddlqrkz2r684d1laza7nvq97amrqnqv"; 285132 + libraryHaskellDepends = [ base containers logict mtl ]; 285133 + description = "Simple generic unification algorithms"; 285134 + license = lib.licenses.bsd3; 285135 + hydraPlatforms = lib.platforms.none; 285136 }) {}; 285137 285138 "uniform-algebras" = callPackage ··· 286042 license = lib.licenses.bsd3; 286043 }) {}; 286044 286045 + "unix-bytestring_0_3_7_7" = callPackage 286046 + ({ mkDerivation, base, bytestring }: 286047 + mkDerivation { 286048 + pname = "unix-bytestring"; 286049 + version = "0.3.7.7"; 286050 + sha256 = "1fpv8f6x2z0qncdjxpg3v3qjjs747bf3vw319c9hlygrhg5pnkx6"; 286051 + libraryHaskellDepends = [ base bytestring ]; 286052 + description = "Unix/Posix-specific functions for ByteStrings"; 286053 + license = lib.licenses.bsd3; 286054 + hydraPlatforms = lib.platforms.none; 286055 + }) {}; 286056 + 286057 "unix-compat" = callPackage 286058 ({ mkDerivation, base, unix }: 286059 mkDerivation { ··· 286067 license = lib.licenses.bsd3; 286068 }) {}; 286069 286070 + "unix-compat_0_6" = callPackage 286071 + ({ mkDerivation, base, directory, extra, hspec, HUnit 286072 + , monad-parallel, temporary, unix 286073 + }: 286074 + mkDerivation { 286075 + pname = "unix-compat"; 286076 + version = "0.6"; 286077 + sha256 = "1y6m8ix8np6vambabdaj2h7ydgda8igwy3kliv53mba3clx85kdl"; 286078 + libraryHaskellDepends = [ base unix ]; 286079 + testHaskellDepends = [ 286080 + base directory extra hspec HUnit monad-parallel temporary 286081 + ]; 286082 + description = "Portable POSIX-compatibility layer"; 286083 + license = lib.licenses.bsd3; 286084 + hydraPlatforms = lib.platforms.none; 286085 + }) {}; 286086 + 286087 "unix-fcntl" = callPackage 286088 ({ mkDerivation, base, foreign-var }: 286089 mkDerivation { ··· 286625 }: 286626 mkDerivation { 286627 pname = "unpacked-maybe-numeric"; 286628 + version = "0.1.2.0"; 286629 + sha256 = "08cm7121c2ddj2fqfjhqjs3y1yskzcsxjq2q8pbq1ndicmlrw1b0"; 286630 libraryHaskellDepends = [ base primitive wide-word ]; 286631 testHaskellDepends = [ base QuickCheck quickcheck-classes ]; 286632 description = "maybes of numeric values with fewer indirections"; ··· 289623 pname = "vector"; 289624 version = "0.12.3.1"; 289625 sha256 = "0dczbcisxhhix859dng5zhxkn3xvlnllsq60apqzvmyl5g056jpv"; 289626 + revision = "2"; 289627 + editedCabalFile = "0gkzrqcx5fymkxm92gy47qj0spj79ygv1vn7kfzdg7nn284x1yzz"; 289628 libraryHaskellDepends = [ base deepseq ghc-prim primitive ]; 289629 testHaskellDepends = [ 289630 base base-orphans doctest HUnit primitive QuickCheck random tasty ··· 292637 broken = true; 292638 }) {}; 292639 292640 + "wai-middleware-bearer" = callPackage 292641 + ({ mkDerivation, base, bytestring, hspec, hspec-wai, http-types 292642 + , wai, word8 292643 + }: 292644 + mkDerivation { 292645 + pname = "wai-middleware-bearer"; 292646 + version = "1.0.3"; 292647 + sha256 = "17vqvr9f8n4zgxhhanndkpywjmzffm06f2nbsq1wxq79qpghc44j"; 292648 + libraryHaskellDepends = [ base bytestring http-types wai word8 ]; 292649 + testHaskellDepends = [ 292650 + base bytestring hspec hspec-wai http-types wai word8 292651 + ]; 292652 + description = "WAI Middleware for Bearer Token Authentication"; 292653 + license = lib.licenses.mit; 292654 + }) {}; 292655 + 292656 "wai-middleware-brotli" = callPackage 292657 ({ mkDerivation, base, binary, bytestring, directory, filepath 292658 , hs-brotli, http-types, mtl, tasty, tasty-hspec, tasty-hunit, unix ··· 295550 description = "Binding to the Webkit library"; 295551 license = lib.licenses.lgpl21Only; 295552 hydraPlatforms = lib.platforms.none; 295553 + broken = true; 295554 }) {inherit (pkgs) webkitgtk;}; 295555 295556 "webkitgtk3-javascriptcore" = callPackage ··· 295881 maintainers = with lib.maintainers; [ maralorn ]; 295882 }) {}; 295883 295884 + "weeder_2_3_1" = callPackage 295885 + ({ mkDerivation, algebraic-graphs, base, bytestring, containers 295886 + , dhall, directory, filepath, generic-lens, ghc, lens, mtl 295887 + , optparse-applicative, regex-tdfa, text, transformers 295888 + }: 295889 + mkDerivation { 295890 + pname = "weeder"; 295891 + version = "2.3.1"; 295892 + sha256 = "16hgfhchmnp32wvcx9r464azycvdq1gsjmnjmnw995y9cp27ayy1"; 295893 + isLibrary = true; 295894 + isExecutable = true; 295895 + libraryHaskellDepends = [ 295896 + algebraic-graphs base bytestring containers dhall directory 295897 + filepath generic-lens ghc lens mtl optparse-applicative regex-tdfa 295898 + text transformers 295899 + ]; 295900 + executableHaskellDepends = [ 295901 + base bytestring containers directory filepath ghc 295902 + optparse-applicative transformers 295903 + ]; 295904 + description = "Detect dead code"; 295905 + license = lib.licenses.bsd3; 295906 + hydraPlatforms = lib.platforms.none; 295907 + maintainers = with lib.maintainers; [ maralorn ]; 295908 + }) {}; 295909 + 295910 "weeder" = callPackage 295911 ({ mkDerivation, algebraic-graphs, base, bytestring, containers 295912 , dhall, directory, filepath, generic-lens, ghc, lens, mtl ··· 295914 }: 295915 mkDerivation { 295916 pname = "weeder"; 295917 + version = "2.4.0"; 295918 + sha256 = "1lwg1a4i7gb0l58bsyn1sg2q31ns79ldw4nv6hbnh4rqq1rv7vx4"; 295919 isLibrary = true; 295920 isExecutable = true; 295921 libraryHaskellDepends = [ ··· 295970 pname = "weigh"; 295971 version = "0.0.16"; 295972 sha256 = "13pbjr7fzqy3s9c1nd2jhfwzbpccmpfwdn7y46z9k2bfkch1jam9"; 295973 + revision = "1"; 295974 + editedCabalFile = "0y71p1fg2q9ig955b21fhfaipdamdrlzfl302prqz8g0sfcxvmfg"; 295975 libraryHaskellDepends = [ 295976 base deepseq ghc mtl process split temporary 295977 ]; ··· 298223 pname = "writer-cps-mtl"; 298224 version = "0.1.1.6"; 298225 sha256 = "0dnx2h4pqmvbkg2hh9c6vhayn6hyzyvs12c0s7rjdba1vihgpy86"; 298226 + revision = "1"; 298227 + editedCabalFile = "0j0qmb3r1xiva0q0vh8qi0l56py1n0cj1ikd44ivdmbadm5krs92"; 298228 libraryHaskellDepends = [ 298229 base mtl transformers writer-cps-transformers 298230 ]; ··· 299155 pname = "xeno"; 299156 version = "0.5"; 299157 sha256 = "1i7snivbl0xby5p1wgai1g44qphj91n8chhkfg6vajcf05fr964l"; 299158 + revision = "1"; 299159 + editedCabalFile = "1f3gkprlqddvkch2qylj02xwsjjhbpgnbiira0dpvgg9hv6qxkhm"; 299160 enableSeparateDataOutput = true; 299161 libraryHaskellDepends = [ 299162 array base bytestring deepseq mtl mutable-containers vector ··· 299675 pname = "xml-conduit"; 299676 version = "1.9.1.1"; 299677 sha256 = "1zzh7xnmbm68dab1vqsjkr6ghxqgnla5nik4amrwlmhbdih1gcdx"; 299678 + revision = "1"; 299679 + editedCabalFile = "0x4is0956lfpxnxf2hqv5yvl1v8r1d41h3a22qqkvbqi13xz2hzv"; 299680 setupHaskellDepends = [ base Cabal cabal-doctest ]; 299681 libraryHaskellDepends = [ 299682 attoparsec base blaze-html blaze-markup bytestring conduit ··· 304057 }: 304058 mkDerivation { 304059 pname = "yesod-page-cursor"; 304060 version = "2.0.1.0"; 304061 sha256 = "1isgw7299nc656aqdk4blraz9kh1raki2nngz1jaddjbd6x56b40"; 304062 libraryHaskellDepends = [ ··· 304070 time unliftio unliftio-core wai-extra yesod yesod-core yesod-test 304071 ]; 304072 license = lib.licenses.mit; 304073 }) {}; 304074 304075 "yesod-paginate" = callPackage ··· 306128 testToolDepends = [ purescript ]; 306129 description = "Zephyr, tree-shaking for the PureScript language"; 306130 license = lib.licenses.mpl20; 306131 + hydraPlatforms = lib.platforms.none; 306132 }) {}; 306133 306134 "zephyr-copilot" = callPackage ··· 307413 }: 307414 mkDerivation { 307415 pname = "zxcvbn-hs"; 307416 + version = "0.3.1"; 307417 + sha256 = "1x32gzgv56l6l14b5k3wa1nzs5b4wgm8a0vn6y49ks6pgi7bdzim"; 307418 isLibrary = true; 307419 isExecutable = true; 307420 libraryHaskellDepends = [
+2 -2
pkgs/development/python-modules/approvaltests/default.nix
··· 16 }: 17 18 buildPythonPackage rec { 19 - version = "5.0.2"; 20 pname = "approvaltests"; 21 format = "setuptools"; 22 ··· 27 owner = "approvals"; 28 repo = "ApprovalTests.Python"; 29 rev = "refs/tags/v${version}"; 30 - sha256 = "sha256-yEzfDbYHGm3Za4+yIk5lIWM4I+5TnqfluZj8OLN9oK0="; 31 }; 32 33 propagatedBuildInputs = [
··· 16 }: 17 18 buildPythonPackage rec { 19 + version = "5.2.0"; 20 pname = "approvaltests"; 21 format = "setuptools"; 22 ··· 27 owner = "approvals"; 28 repo = "ApprovalTests.Python"; 29 rev = "refs/tags/v${version}"; 30 + sha256 = "sha256-PrO6NC+ARv0o1KHv+ekPwkEi4VpBIj+YjWRrCSFMHI8="; 31 }; 32 33 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/globus-sdk/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "globus-sdk"; 16 - version = "3.8.0"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.6"; ··· 22 owner = "globus"; 23 repo = "globus-sdk-python"; 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-JaAiAAf0zIJDXXl3zb4UE9XpmjZ8KQiEcZJm1ps+efA="; 26 }; 27 28 propagatedBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "globus-sdk"; 16 + version = "3.9.0"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.6"; ··· 22 owner = "globus"; 23 repo = "globus-sdk-python"; 24 rev = "refs/tags/${version}"; 25 + hash = "sha256-Cz4BvtdncHnl53L+5U2gsm9wTNNmAj8ZXjGOk70yKlo="; 26 }; 27 28 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/hahomematic/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "hahomematic"; 17 - version = "1.8.0"; 18 format = "pyproject"; 19 20 disabled = pythonOlder "3.9"; ··· 23 owner = "danielperna84"; 24 repo = pname; 25 rev = "refs/tags/${version}"; 26 - sha256 = "sha256-5nW+IOjBkbgEn1VGHwny1iT771UqWA4BhDLamqS/xAM="; 27 }; 28 29 propagatedBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "hahomematic"; 17 + version = "1.8.3"; 18 format = "pyproject"; 19 20 disabled = pythonOlder "3.9"; ··· 23 owner = "danielperna84"; 24 repo = pname; 25 rev = "refs/tags/${version}"; 26 + sha256 = "sha256-TWXJGl0LAoQkqs49u2Z5a+sGV2QiDtbGPhQEn/qDqDQ="; 27 }; 28 29 propagatedBuildInputs = [
+52
pkgs/development/python-modules/messagebird/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , requests 5 + , pyjwt 6 + , mock 7 + , python-dateutil 8 + , pytestCheckHook 9 + , pythonOlder 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "messagebird"; 14 + version = "2.1.0"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.7"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "messagebird"; 21 + repo = "python-rest-api"; 22 + rev = version; 23 + hash = "sha256-2KVAxdHT5+Ie3ZRxXZhU0hLOtHWjIiJi+ferkYTlSn0="; 24 + }; 25 + 26 + propagatedBuildInputs = [ 27 + pyjwt 28 + python-dateutil 29 + requests 30 + ]; 31 + 32 + checkInputs = [ 33 + mock 34 + pytestCheckHook 35 + ]; 36 + 37 + pythonImportsCheck = [ 38 + "messagebird" 39 + ]; 40 + 41 + disabledTestPaths = [ 42 + # ValueError: not enough values to unpack (expected 6, got 0) 43 + "tests/test_request_validator.py" 44 + ]; 45 + 46 + meta = with lib; { 47 + description = "Client for MessageBird's REST API"; 48 + homepage = "https://github.com/messagebird/python-rest-api"; 49 + license = with licenses; [ bsd2 ]; 50 + maintainers = with maintainers; [ fab ]; 51 + }; 52 + }
+37
pkgs/development/python-modules/pykwb/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pyserial 5 + , pythonOlder 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "pykwb"; 10 + version = "0.0.10"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 14 + 15 + src = fetchPypi { 16 + inherit pname version; 17 + hash = "sha256-mor2TKhq08w4HzaUaspWOMEFwJaAKjXKoNAaoZJqWPQ="; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + pyserial 22 + ]; 23 + 24 + # Module has no tests 25 + doCheck = false; 26 + 27 + pythonImportsCheck = [ 28 + "pykwb" 29 + ]; 30 + 31 + meta = with lib; { 32 + description = "Library for interacting with KWB Easyfire Pellet Central Heating Units"; 33 + homepage = "https://github.com/bimbar/pykwb"; 34 + license = with licenses; [ mit ]; 35 + maintainers = with maintainers; [ fab ]; 36 + }; 37 + }
+39
pkgs/development/python-modules/pymailgunner/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , requests 5 + , pythonOlder 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "pymailgunner"; 10 + version = "1.5"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "pschmitt"; 17 + repo = pname; 18 + rev = version; 19 + hash = "sha256-QKwpW1aeN6OI76Kocow1Zhghq4/fl/cMPexny0MTwQs="; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + requests 24 + ]; 25 + 26 + # Module has no tests 27 + doCheck = false; 28 + 29 + pythonImportsCheck = [ 30 + "pymailgunner" 31 + ]; 32 + 33 + meta = with lib; { 34 + description = "Library for interacting with Mailgun e-mail service"; 35 + homepage = "https://github.com/pschmitt/pymailgunner"; 36 + license = with licenses; [ asl20 ]; 37 + maintainers = with maintainers; [ fab ]; 38 + }; 39 + }
+13 -7
pkgs/development/python-modules/pyunifiprotect/default.nix
··· 3 , aioshutil 4 , buildPythonPackage 5 , fetchFromGitHub 6 , packaging 7 , pillow 8 , poetry-core ··· 17 , python-dotenv 18 , pythonOlder 19 , pytz 20 , typer 21 }: 22 23 buildPythonPackage rec { 24 pname = "pyunifiprotect"; 25 - version = "3.7.0"; 26 format = "pyproject"; 27 28 disabled = pythonOlder "3.9"; ··· 30 src = fetchFromGitHub { 31 owner = "briis"; 32 repo = pname; 33 - rev = "v${version}"; 34 - hash = "sha256-0adbUKTkbgA4pKrIVFGowD4Wf8brjfkLpfCT/+Mw6vs="; 35 }; 36 37 propagatedBuildInputs = [ ··· 41 pillow 42 pydantic 43 pyjwt 44 - python-dotenv 45 pytz 46 typer 47 ]; 48 49 checkInputs = [ 50 pytest-aiohttp 51 pytest-asyncio ··· 56 ]; 57 58 postPatch = '' 59 - # https://github.com/briis/pyunifiprotect/pull/176 60 - substituteInPlace setup.cfg \ 61 - --replace "asyncio" "aiohttp" 62 substituteInPlace pyproject.toml \ 63 --replace "--cov=pyunifiprotect --cov-append" "" 64 '';
··· 3 , aioshutil 4 , buildPythonPackage 5 , fetchFromGitHub 6 + , ipython 7 , packaging 8 , pillow 9 , poetry-core ··· 18 , python-dotenv 19 , pythonOlder 20 , pytz 21 + , termcolor 22 , typer 23 }: 24 25 buildPythonPackage rec { 26 pname = "pyunifiprotect"; 27 + version = "3.8.0"; 28 format = "pyproject"; 29 30 disabled = pythonOlder "3.9"; ··· 32 src = fetchFromGitHub { 33 owner = "briis"; 34 repo = pname; 35 + rev = "refs/tags/v${version}"; 36 + hash = "sha256-YFdGWGm+DUi/0l9YBliQH1VgpYEVcHVgLirJTrNmNP4="; 37 }; 38 39 propagatedBuildInputs = [ ··· 43 pillow 44 pydantic 45 pyjwt 46 pytz 47 typer 48 ]; 49 50 + passthru.optional-dependencies = { 51 + shell = [ 52 + ipython 53 + python-dotenv 54 + termcolor 55 + ]; 56 + }; 57 + 58 checkInputs = [ 59 pytest-aiohttp 60 pytest-asyncio ··· 65 ]; 66 67 postPatch = '' 68 substituteInPlace pyproject.toml \ 69 --replace "--cov=pyunifiprotect --cov-append" "" 70 '';
+2 -2
pkgs/development/python-modules/r2pipe/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "r2pipe"; 12 - version = "1.6.5"; 13 14 postPatch = let 15 r2lib = "${lib.getOutput "lib" radare2}/lib"; ··· 27 28 src = fetchPypi { 29 inherit pname version; 30 - sha256 = "512d2aca27c4515e55743852e0ab227190739d9595d2c4b6ae97b23d1a2bdd26"; 31 }; 32 33 # Tiny sanity check to make sure r2pipe finds radare2 (since r2pipe doesn't
··· 9 10 buildPythonPackage rec { 11 pname = "r2pipe"; 12 + version = "1.7.0"; 13 14 postPatch = let 15 r2lib = "${lib.getOutput "lib" radare2}/lib"; ··· 27 28 src = fetchPypi { 29 inherit pname version; 30 + sha256 = "sha256-VUYJm3tFyv/ws4nDHLuDgPQSGbB09hi8zrpAPDqoVbA="; 31 }; 32 33 # Tiny sanity check to make sure r2pipe finds radare2 (since r2pipe doesn't
+2 -2
pkgs/development/python-modules/sagemaker/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "sagemaker"; 20 - version = "2.91.1"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.7"; 24 25 src = fetchPypi { 26 inherit pname version; 27 - hash = "sha256-DP6bdakmOX2qiqbkz/D4Q/aexjy7dTDXlDKvnCf3SaA="; 28 }; 29 30 propagatedBuildInputs = [
··· 17 18 buildPythonPackage rec { 19 pname = "sagemaker"; 20 + version = "2.93.0"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.7"; 24 25 src = fetchPypi { 26 inherit pname version; 27 + hash = "sha256-rVEYiX0e7dP2CQK4ceEPZu395vas69aZkQzJCana53c="; 28 }; 29 30 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/skodaconnect/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "skodaconnect"; 15 - version = "1.1.19"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.8"; ··· 20 src = fetchFromGitHub { 21 owner = "lendy007"; 22 repo = pname; 23 - rev = version; 24 - hash = "sha256-IbCGveRcn6Kn0kGw+/kWTBTqCdWqsPTv6aPq71vc1mw="; 25 }; 26 27 SETUPTOOLS_SCM_PRETEND_VERSION = version;
··· 12 13 buildPythonPackage rec { 14 pname = "skodaconnect"; 15 + version = "1.1.20"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.8"; ··· 20 src = fetchFromGitHub { 21 owner = "lendy007"; 22 repo = pname; 23 + rev = "refs/tags/${version}"; 24 + hash = "sha256-VFbU4KbF/Z8/EiRYZIBXSIfByY5nc84y6YBSOuknqyg="; 25 }; 26 27 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+26 -8
pkgs/development/python-modules/skytemple-dtef/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, skytemple-files }: 2 3 buildPythonPackage rec { 4 pname = "skytemple-dtef"; 5 - version = "1.1.4"; 6 7 src = fetchFromGitHub { 8 owner = "SkyTemple"; 9 repo = pname; 10 rev = version; 11 - sha256 = "0l2b66z5ngyas3ijbzwz2wizw46kz47f8jr729pzbg4wbqbqjihr"; 12 }; 13 14 - propagatedBuildInputs = [ skytemple-files ]; 15 16 - doCheck = false; # there are no tests 17 - pythonImportsCheck = [ "skytemple_dtef" ]; 18 19 meta = with lib; { 20 - homepage = "https://github.com/SkyTemple/skytemple-dtef"; 21 description = "A format for standardized rule-based tilesets with 256 adjacency combinations"; 22 license = licenses.gpl3Plus; 23 - maintainers = with maintainers; [ xfix ]; 24 }; 25 }
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pillow 5 + , pytestCheckHook 6 + , pythonOlder 7 + , skytemple-files 8 + }: 9 10 buildPythonPackage rec { 11 pname = "skytemple-dtef"; 12 + version = "1.1.5"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 16 17 src = fetchFromGitHub { 18 owner = "SkyTemple"; 19 repo = pname; 20 rev = version; 21 + hash = "sha256-QL+nLmjz0wCED2RjidIDK0tB6mAPnoaSJWpyLFu0pP4="; 22 }; 23 24 + propagatedBuildInputs = [ 25 + pillow 26 + skytemple-files 27 + ]; 28 29 + checkInputs = [ 30 + pytestCheckHook 31 + ]; 32 + 33 + pythonImportsCheck = [ 34 + "skytemple_dtef" 35 + ]; 36 37 meta = with lib; { 38 description = "A format for standardized rule-based tilesets with 256 adjacency combinations"; 39 + homepage = "https://github.com/SkyTemple/skytemple-dtef"; 40 license = licenses.gpl3Plus; 41 + maintainers = with maintainers; [ marius851000 xfix ]; 42 }; 43 }
+2 -2
pkgs/development/python-modules/sqlmap/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "sqlmap"; 10 - version = "1.6.5"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "sha256-EdiLTzjRigJLsslWSymLNajvUDimBt4d4EBugxVYueg="; 15 }; 16 17 postPatch = ''
··· 7 8 buildPythonPackage rec { 9 pname = "sqlmap"; 10 + version = "1.6.6"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "sha256-eXQ3sddIDHJ/pc6n5pmJoi3FvA8j2GMyWtToiKVIaVg="; 15 }; 16 17 postPatch = ''
+2 -2
pkgs/development/python-modules/trytond/default.nix
··· 24 25 buildPythonPackage rec { 26 pname = "trytond"; 27 - version = "6.4.0"; 28 format = "setuptools"; 29 30 disabled = pythonOlder "3.7"; 31 32 src = fetchPypi { 33 inherit pname version; 34 - sha256 = "3c04d75c2a779b88b8c7ab6dd252cf4fc51f9546bf42760d10dbd1a17f61b288"; 35 }; 36 37 propagatedBuildInputs = [
··· 24 25 buildPythonPackage rec { 26 pname = "trytond"; 27 + version = "6.4.1"; 28 format = "setuptools"; 29 30 disabled = pythonOlder "3.7"; 31 32 src = fetchPypi { 33 inherit pname version; 34 + sha256 = "sha256-8Ah1zNQzcVgYSqCIGRN+6o8qzVPd3WzygGtVnyojHuk="; 35 }; 36 37 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/yte/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "yte"; 14 - version = "1.4.0"; 15 format = "pyproject"; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "koesterlab"; 21 repo = pname; 22 rev = "refs/tags/v${version}"; 23 - sha256 = "sha256-G3TjIs/EeCqpNuFdb/WZ7PaPtnUdTvbH41OtRypfptg="; 24 }; 25 26 nativeBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "yte"; 14 + version = "1.5.1"; 15 format = "pyproject"; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "koesterlab"; 21 repo = pname; 22 rev = "refs/tags/v${version}"; 23 + sha256 = "sha256-7erT5UpejPMIoyqhpYNEON3YWE2l5SdP2olOVpkbNkY="; 24 }; 25 26 nativeBuildInputs = [
+2 -2
pkgs/development/tools/analysis/radare2/default.nix
··· 44 in 45 stdenv.mkDerivation rec { 46 pname = "radare2"; 47 - version = "5.6.8"; 48 49 src = fetchFromGitHub { 50 owner = "radare"; 51 repo = "radare2"; 52 rev = version; 53 - sha256 = "0fpz63dfac1i6wwf5wp3v1vs3r5yzh05g95m5vidx56h0g4dcp44"; 54 }; 55 56 preBuild = ''
··· 44 in 45 stdenv.mkDerivation rec { 46 pname = "radare2"; 47 + version = "5.7.0"; 48 49 src = fetchFromGitHub { 50 owner = "radare"; 51 repo = "radare2"; 52 rev = version; 53 + sha256 = "sha256-tCFi1m3xyQlG+8FijjQh8PMwg6CIfIxvLkd5xCIZHHo="; 54 }; 55 56 preBuild = ''
+2 -2
pkgs/development/tools/haskell/haskell-language-server/withWrapper.nix
··· 1 { lib 2 , stdenv 3 - , supportedGhcVersions ? [ "884" "8107" "902" "922" ] 4 , dynamic ? false 5 , haskellPackages 6 , haskell ··· 8 # 9 # The recommended way to override this package is 10 # 11 - # pkgs.haskell-language-server.override { supportedGhcVersions = [ "901" ]; } 12 # 13 # for example. Read more about this in the haskell-language-server section of the nixpkgs manual. 14 #
··· 1 { lib 2 , stdenv 3 + , supportedGhcVersions ? [ "884" "8107" "902" "923" ] 4 , dynamic ? false 5 , haskellPackages 6 , haskell ··· 8 # 9 # The recommended way to override this package is 10 # 11 + # pkgs.haskell-language-server.override { supportedGhcVersions = [ "902" ]; } 12 # 13 # for example. Read more about this in the haskell-language-server section of the nixpkgs manual. 14 #
+21 -4
pkgs/misc/arm-trusted-firmware/default.nix
··· 1 { lib, stdenv, fetchFromGitHub, openssl, pkgsCross, buildPackages 2 3 - # Warning: this blob runs on the main CPU (not the GPU) at privilege 4 - # level EL3, which is above both the kernel and the hypervisor. 5 , unfreeIncludeHDCPBlob ? true 6 }: 7 ··· 9 buildArmTrustedFirmware = { filesToInstall 10 , installDir ? "$out" 11 , platform ? null 12 , extraMakeFlags ? [] 13 , extraMeta ? {} 14 , version ? "2.6" 15 , ... } @ args: 16 stdenv.mkDerivation ({ 17 18 pname = "arm-trusted-firmware${lib.optionalString (platform != null) "-${platform}"}"; ··· 25 sha256 = "sha256-qT9DdTvMcUrvRzgmVf2qmKB+Rb1WOB4p1rM+fsewGcg="; 26 }; 27 28 - patches = lib.optionals (!unfreeIncludeHDCPBlob) [ 29 # this is a rebased version of https://gitlab.com/vicencb/kevinboot/-/blob/master/atf.patch 30 ./remove-hdcp-blob.patch 31 ]; 32 33 depsBuildBuild = [ buildPackages.stdenv.cc ]; 34 35 # For Cortex-M0 firmware in RK3399 ··· 60 meta = with lib; { 61 homepage = "https://github.com/ARM-software/arm-trusted-firmware"; 62 description = "A reference implementation of secure world software for ARMv8-A"; 63 - license = (if unfreeIncludeHDCPBlob then [ licenses.unfreeRedistributable ] else []) ++ [ licenses.bsd3 ]; 64 maintainers = with maintainers; [ lopsided98 ]; 65 } // extraMeta; 66 } // builtins.removeAttrs args [ "extraMeta" ]); ··· 111 platform = "rk3328"; 112 extraMeta.platforms = ["aarch64-linux"]; 113 filesToInstall = [ "build/${platform}/release/bl31/bl31.elf"]; 114 }; 115 116 armTrustedFirmwareRK3399 = buildArmTrustedFirmware rec { ··· 118 platform = "rk3399"; 119 extraMeta.platforms = ["aarch64-linux"]; 120 filesToInstall = [ "build/${platform}/release/bl31/bl31.elf"]; 121 }; 122 123 armTrustedFirmwareS905 = buildArmTrustedFirmware rec {
··· 1 { lib, stdenv, fetchFromGitHub, openssl, pkgsCross, buildPackages 2 3 + # Warning: this blob (hdcp.bin) runs on the main CPU (not the GPU) at 4 + # privilege level EL3, which is above both the kernel and the 5 + # hypervisor. 6 + # 7 + # This parameter applies only to platforms which are believed to use 8 + # hdcp.bin. On all other platforms, or if unfreeIncludeHDCPBlob=false, 9 + # hdcp.bin will be deleted before building. 10 , unfreeIncludeHDCPBlob ? true 11 }: 12 ··· 14 buildArmTrustedFirmware = { filesToInstall 15 , installDir ? "$out" 16 , platform ? null 17 + , platformCanUseHDCPBlob ? false # set this to true if the platform is able to use hdcp.bin 18 , extraMakeFlags ? [] 19 , extraMeta ? {} 20 , version ? "2.6" 21 , ... } @ args: 22 + 23 + # delete hdcp.bin if either: the platform is thought to 24 + # not need it or unfreeIncludeHDCPBlob is false 25 + let deleteHDCPBlobBeforeBuild = !platformCanUseHDCPBlob || !unfreeIncludeHDCPBlob; in 26 + 27 stdenv.mkDerivation ({ 28 29 pname = "arm-trusted-firmware${lib.optionalString (platform != null) "-${platform}"}"; ··· 36 sha256 = "sha256-qT9DdTvMcUrvRzgmVf2qmKB+Rb1WOB4p1rM+fsewGcg="; 37 }; 38 39 + patches = lib.optionals deleteHDCPBlobBeforeBuild [ 40 # this is a rebased version of https://gitlab.com/vicencb/kevinboot/-/blob/master/atf.patch 41 ./remove-hdcp-blob.patch 42 ]; 43 44 + postPatch = lib.optionalString deleteHDCPBlobBeforeBuild '' 45 + rm plat/rockchip/rk3399/drivers/dp/hdcp.bin 46 + ''; 47 + 48 depsBuildBuild = [ buildPackages.stdenv.cc ]; 49 50 # For Cortex-M0 firmware in RK3399 ··· 75 meta = with lib; { 76 homepage = "https://github.com/ARM-software/arm-trusted-firmware"; 77 description = "A reference implementation of secure world software for ARMv8-A"; 78 + license = [ licenses.bsd3 ] ++ lib.optionals (!deleteHDCPBlobBeforeBuild) [ licenses.unfreeRedistributable ]; 79 maintainers = with maintainers; [ lopsided98 ]; 80 } // extraMeta; 81 } // builtins.removeAttrs args [ "extraMeta" ]); ··· 126 platform = "rk3328"; 127 extraMeta.platforms = ["aarch64-linux"]; 128 filesToInstall = [ "build/${platform}/release/bl31/bl31.elf"]; 129 + platformCanUseHDCPBlob = true; 130 }; 131 132 armTrustedFirmwareRK3399 = buildArmTrustedFirmware rec { ··· 134 platform = "rk3399"; 135 extraMeta.platforms = ["aarch64-linux"]; 136 filesToInstall = [ "build/${platform}/release/bl31/bl31.elf"]; 137 + platformCanUseHDCPBlob = true; 138 }; 139 140 armTrustedFirmwareS905 = buildArmTrustedFirmware rec {
+2 -2
pkgs/servers/atlassian/confluence.nix
··· 8 9 stdenvNoCC.mkDerivation rec { 10 pname = "atlassian-confluence"; 11 - version = "7.17.1"; 12 13 src = fetchurl { 14 url = "https://product-downloads.atlassian.com/software/confluence/downloads/${pname}-${version}.tar.gz"; 15 - sha256 = "sha256-TFtWuJR/t3MMbs8Gd818ByOnMtiT4QxbcpgBxYXzFYY="; 16 }; 17 18 buildPhase = ''
··· 8 9 stdenvNoCC.mkDerivation rec { 10 pname = "atlassian-confluence"; 11 + version = "7.18.1"; 12 13 src = fetchurl { 14 url = "https://product-downloads.atlassian.com/software/confluence/downloads/${pname}-${version}.tar.gz"; 15 + sha256 = "sha256-MEq1ASnJUYWPvt7Z30+fUTv+QrDI+Xsb5e9K0c8ZtdQ="; 16 }; 17 18 buildPhase = ''
+7 -3
pkgs/servers/home-assistant/component-packages.nix
··· 1386 pykulersky 1387 ]; 1388 "kwb" = ps: with ps; [ 1389 - ]; # missing inputs: pykwb 1390 "lacrosse" = ps: with ps; [ 1391 pylacrosse 1392 ]; ··· 1514 ]; 1515 "mailgun" = ps: with ps; [ 1516 aiohttp-cors 1517 - ]; # missing inputs: pymailgunner 1518 "manual" = ps: with ps; [ 1519 ]; 1520 "manual_mqtt" = ps: with ps; [ ··· 1568 aiohttp-cors 1569 ]; 1570 "message_bird" = ps: with ps; [ 1571 - ]; # missing inputs: messagebird 1572 "met" = ps: with ps; [ 1573 pymetno 1574 ]; ··· 3512 "lutron_caseta" 3513 "lyric" 3514 "mailbox" 3515 "manual" 3516 "manual_mqtt" 3517 "maxcube"
··· 1386 pykulersky 1387 ]; 1388 "kwb" = ps: with ps; [ 1389 + pykwb 1390 + ]; 1391 "lacrosse" = ps: with ps; [ 1392 pylacrosse 1393 ]; ··· 1515 ]; 1516 "mailgun" = ps: with ps; [ 1517 aiohttp-cors 1518 + pymailgunner 1519 + ]; 1520 "manual" = ps: with ps; [ 1521 ]; 1522 "manual_mqtt" = ps: with ps; [ ··· 1570 aiohttp-cors 1571 ]; 1572 "message_bird" = ps: with ps; [ 1573 + messagebird 1574 + ]; 1575 "met" = ps: with ps; [ 1576 pymetno 1577 ]; ··· 3515 "lutron_caseta" 3516 "lyric" 3517 "mailbox" 3518 + "mailgun" 3519 "manual" 3520 "manual_mqtt" 3521 "maxcube"
+2 -2
pkgs/shells/yash/default.nix
··· 6 7 src = fetchurl { 8 url = "https://osdn.net/dl/yash/yash-${version}.tar.xz"; 9 - sha256 = "sha256:1jdmj4cyzwxxyyqf20y1zi578h7md860ryffp02qi143zpppn4sm"; 10 }; 11 12 strictDeps = true; 13 buildInputs = [ gettext ncurses ]; 14 15 meta = with lib; { 16 - description = "Yet another POSIX-compliant shell"; 17 homepage = "https://yash.osdn.jp/index.html.en"; 18 license = licenses.gpl2Plus; 19 maintainers = with maintainers; [ qbit ]; 20 platforms = platforms.all;
··· 6 7 src = fetchurl { 8 url = "https://osdn.net/dl/yash/yash-${version}.tar.xz"; 9 + hash = "sha256-VRN77/2DhIgFuM75DAxq9UB0SvzBA+Gw973z7xmRtck="; 10 }; 11 12 strictDeps = true; 13 buildInputs = [ gettext ncurses ]; 14 15 meta = with lib; { 16 homepage = "https://yash.osdn.jp/index.html.en"; 17 + description = "Yet another POSIX-compliant shell"; 18 license = licenses.gpl2Plus; 19 maintainers = with maintainers; [ qbit ]; 20 platforms = platforms.all;
+6 -10
pkgs/test/cuda/cuda-samples/generic.nix
··· 1 - { addOpenGLRunpath 2 - , cudatoolkit 3 , fetchFromGitHub 4 , fetchpatch 5 - , lib 6 , pkg-config 7 , sha256 8 - , stdenv 9 }: 10 11 - let 12 pname = "cuda-samples"; 13 version = lib.versions.majorMinor cudatoolkit.version; 14 - in 15 - 16 - stdenv.mkDerivation { 17 - inherit pname version; 18 19 src = fetchFromGitHub { 20 owner = "NVIDIA"; ··· 31 patches = lib.optionals (version == "11.3") [ 32 (fetchpatch { 33 url = "https://github.com/NVIDIA/cuda-samples/commit/5c3ec60faeb7a3c4ad9372c99114d7bb922fda8d.patch"; 34 - sha256 = "sha256:15bydf59scmfnldz5yawbjacdxafi50ahgpzq93zlc5xsac5sz6i"; 35 }) 36 ]; 37
··· 1 + { lib 2 + , stdenv 3 , fetchFromGitHub 4 , fetchpatch 5 + , addOpenGLRunpath 6 + , cudatoolkit 7 , pkg-config 8 , sha256 9 }: 10 11 + stdenv.mkDerivation rec { 12 pname = "cuda-samples"; 13 version = lib.versions.majorMinor cudatoolkit.version; 14 15 src = fetchFromGitHub { 16 owner = "NVIDIA"; ··· 27 patches = lib.optionals (version == "11.3") [ 28 (fetchpatch { 29 url = "https://github.com/NVIDIA/cuda-samples/commit/5c3ec60faeb7a3c4ad9372c99114d7bb922fda8d.patch"; 30 + sha256 = "sha256-0XxdmNK9MPpHwv8+qECJTvXGlFxc+fIbta4ynYprfpU="; 31 }) 32 ]; 33
+1 -1
pkgs/test/dhall/buildDhallUrl/default.nix
··· 9 dhallPackages.buildDhallUrl { 10 url = "https://raw.githubusercontent.com/cdepillabout/example-dhall-nix/e6a675c72ecd4dd23d254a02aea8181fe875747f/mydhallfile.dhall"; 11 hash = "sha256-434x+QjHRzuprBdw0h6wmwB1Zj6yZqQb533me8XdO4c="; 12 - dhallHash = "sha256:e37e31f908c7473ba9ac1770d21eb09b0075663eb266a41be77de67bc5dd3b87"; 13 source = true; 14 }
··· 9 dhallPackages.buildDhallUrl { 10 url = "https://raw.githubusercontent.com/cdepillabout/example-dhall-nix/e6a675c72ecd4dd23d254a02aea8181fe875747f/mydhallfile.dhall"; 11 hash = "sha256-434x+QjHRzuprBdw0h6wmwB1Zj6yZqQb533me8XdO4c="; 12 + dhallHash = "sha256-434x+QjHRzuprBdw0h6wmwB1Zj6yZqQb533me8XdO4c="; 13 source = true; 14 }
+2 -2
pkgs/tools/graphics/asymptote/default.nix
··· 16 owner = "vectorgraphics"; 17 repo = pname; 18 rev = version; 19 - sha256 = "sha256:1lawj2gf0985clzbyym26s5mxxp2syl1dqqxfzk0sq9s30l2rj3l"; 20 }; 21 22 patches = 23 (lib.optional (lib.versionOlder version "2.68") 24 (fetchpatch { 25 url = "https://github.com/vectorgraphics/asymptote/commit/3361214340d58235f4dbb8f24017d0cd5d94da72.patch"; 26 - sha256 = "sha256:1z2b41x8v7683myd45lq6niixpdjy0b185x0xl61130vrijhq5nm"; 27 })) 28 ; 29
··· 16 owner = "vectorgraphics"; 17 repo = pname; 18 rev = version; 19 + hash = "sha256-dMgsKBg6YQ3mdx3jFqjX4vZeizaier8+ZQUl4J6QXNE="; 20 }; 21 22 patches = 23 (lib.optional (lib.versionOlder version "2.68") 24 (fetchpatch { 25 url = "https://github.com/vectorgraphics/asymptote/commit/3361214340d58235f4dbb8f24017d0cd5d94da72.patch"; 26 + hash = "sha256-1RYMZcwbjBAM7aAXFBbwst0eozWYFtJ8HcicjXogS/w="; 27 })) 28 ; 29
+2 -2
pkgs/tools/misc/flexoptix-app/default.nix
··· 6 src = fetchurl { 7 name = "${name}.AppImage"; 8 url = "https://flexbox.reconfigure.me/download/electron/linux/x64/FLEXOPTIX%20App.${version}.AppImage"; 9 - sha256 = "sha256:1hzdb2fbkwpsf0d3ws4z32blk6549jwhf1lrlqmcxhzqfvkr4gin"; 10 }; 11 12 udevRules = fetchurl { 13 url = "https://www.flexoptix.net/skin/udev_rules/99-tprogrammer.rules"; 14 - sha256 = "0mr1bhgvavq1ax4206z1vr2y64s3r676w9jjl9ysziklbrsvk5rr"; 15 }; 16 17 appimageContents = (appimageTools.extract { inherit name src; }).overrideAttrs (oA: {
··· 6 src = fetchurl { 7 name = "${name}.AppImage"; 8 url = "https://flexbox.reconfigure.me/download/electron/linux/x64/FLEXOPTIX%20App.${version}.AppImage"; 9 + hash = "sha256-Nj6S53b4w84qppkGB7lMpJhJlxifaD4acPryuZxY7cM="; 10 }; 11 12 udevRules = fetchurl { 13 url = "https://www.flexoptix.net/skin/udev_rules/99-tprogrammer.rules"; 14 + hash = "sha256-OZe5dV50xq99olImbo7JQxPjRd7hGyBIVwFvtR9cIVc="; 15 }; 16 17 appimageContents = (appimageTools.extract { inherit name src; }).overrideAttrs (oA: {
+5 -4
pkgs/tools/misc/octofetch/default.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 - , rustPlatform 5 - , pkg-config 6 , openssl 7 , Security 8 }: 9 ··· 18 sha256 = "sha256-/AXE1e02NfxQzJZd0QX6gJDjmFFmuUTOndulZElgIMI="; 19 }; 20 21 - cargoSha256 = "sha256:1ddyzbpsiy54r13nb9yrm64cbbifixnhkskwg5fvhhzj4ri4ks4a"; 22 23 nativeBuildInputs = [ pkg-config ]; 24 buildInputs = lib.optionals stdenv.isLinux [ openssl ] 25 ++ lib.optionals stdenv.isDarwin [ Security ]; 26 27 meta = with lib; { 28 - description = "Github user information on terminal"; 29 homepage = "https://github.com/azur1s/octofetch"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ jyooru ]; 32 };
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , openssl 5 + , pkg-config 6 + , rustPlatform 7 , Security 8 }: 9 ··· 18 sha256 = "sha256-/AXE1e02NfxQzJZd0QX6gJDjmFFmuUTOndulZElgIMI="; 19 }; 20 21 + cargoSha256 = "sha256-iuhJYibyQ7hdeXzqCW2PLq7FiKnZp2VHyKT4qO/6vrU="; 22 23 nativeBuildInputs = [ pkg-config ]; 24 + 25 buildInputs = lib.optionals stdenv.isLinux [ openssl ] 26 ++ lib.optionals stdenv.isDarwin [ Security ]; 27 28 meta = with lib; { 29 homepage = "https://github.com/azur1s/octofetch"; 30 + description = "Github user information on terminal"; 31 license = licenses.mit; 32 maintainers = with maintainers; [ jyooru ]; 33 };
+7 -3
pkgs/tools/misc/precice-config-visualizer/default.nix
··· 1 - { lib, python3Packages, fetchFromGitHub}: 2 3 python3Packages.buildPythonApplication rec { 4 pname = "config-visualizer"; ··· 8 owner = "precice"; 9 repo = pname; 10 rev = "60f2165f25352c8261f370dc4ceb64a8b422d4ec"; 11 - sha256 = "sha256:0mqzp2qdvbqbxaczlvc9xxxdz6hclraznbmc08ldx11xwy8yknfr"; 12 }; 13 14 propagatedBuildInputs = with python3Packages; [ lxml pydot ]; 15 doCheck = false; 16 17 meta = with lib; { 18 - description = "Small python tool for visualizing the preCICE xml configuration "; 19 homepage = "https://github.com/precice/config-visualizer"; 20 license = licenses.gpl3Only; 21 maintainers = with maintainers; [ Scriptkiddi ]; 22 };
··· 1 + { lib 2 + , python3Packages 3 + , fetchFromGitHub 4 + }: 5 6 python3Packages.buildPythonApplication rec { 7 pname = "config-visualizer"; ··· 11 owner = "precice"; 12 repo = pname; 13 rev = "60f2165f25352c8261f370dc4ceb64a8b422d4ec"; 14 + hash = "sha256-2dnpkec9hN4oAqwu+1WmDJrfeu+JbfqZ6guv3bC4H1c="; 15 }; 16 17 propagatedBuildInputs = with python3Packages; [ lxml pydot ]; 18 + 19 doCheck = false; 20 21 meta = with lib; { 22 homepage = "https://github.com/precice/config-visualizer"; 23 + description = "Small python tool for visualizing the preCICE xml configuration "; 24 license = licenses.gpl3Only; 25 maintainers = with maintainers; [ Scriptkiddi ]; 26 };
+1 -1
pkgs/tools/networking/openapi-generator-cli/example.nix
··· 4 nativeBuildInputs = [ openapi-generator-cli ]; 5 petstore = fetchurl { 6 url = "https://raw.githubusercontent.com/OAI/OpenAPI-Specification/14c0908becbccd78252be49bd92be8c53cd2b9e3/examples/v3.0/petstore.yaml"; 7 - sha256 = "sha256:1mgdbzv42alv0b1a18dqbabqyvyhrg3brynr5hqsrm3qljfzaq5b"; 8 }; 9 config = builtins.toJSON { 10 elmVersion = "0.19";
··· 4 nativeBuildInputs = [ openapi-generator-cli ]; 5 petstore = fetchurl { 6 url = "https://raw.githubusercontent.com/OAI/OpenAPI-Specification/14c0908becbccd78252be49bd92be8c53cd2b9e3/examples/v3.0/petstore.yaml"; 7 + hash = "sha256-q2D1naR41KwxLNn6vMbL0G+Pl1q4oaDCApsqQfZf7dU="; 8 }; 9 config = builtins.toJSON { 10 elmVersion = "0.19";
+13 -4
pkgs/tools/networking/vpnc-scripts/default.nix
··· 1 - { lib, stdenv, fetchgit 2 , makeWrapper 3 - , nettools, gawk, systemd, openresolv, coreutils, gnugrep, iproute2 4 }: 5 6 stdenv.mkDerivation { 7 pname = "vpnc-scripts"; 8 version = "unstable-2021-09-24"; 9 src = fetchgit { 10 url = "https://gitlab.com/openconnect/vpnc-scripts.git"; 11 rev = "b749c2cadc2f32e2efffa69302861f9a7d4a4e5f"; 12 - sha256 = "sha256:19aj6mfkclbkx6ycyd4xm7id1bq78ismw0y6z23f6s016k3sjc8c"; 13 }; 14 15 nativeBuildInputs = [ makeWrapper ]; ··· 32 ''; 33 34 meta = with lib; { 35 - description = "script for vpnc to configure the network routing and name service"; 36 homepage = "https://www.infradead.org/openconnect/"; 37 license = licenses.gpl2Only; 38 maintainers = with maintainers; [ jerith666 ]; 39 platforms = platforms.linux ++ platforms.darwin;
··· 1 + { lib 2 + , stdenv 3 + , fetchgit 4 + , coreutils 5 + , gawk 6 + , gnugrep 7 + , iproute2 8 , makeWrapper 9 + , nettools 10 + , openresolv 11 + , systemd 12 }: 13 14 stdenv.mkDerivation { 15 pname = "vpnc-scripts"; 16 version = "unstable-2021-09-24"; 17 + 18 src = fetchgit { 19 url = "https://gitlab.com/openconnect/vpnc-scripts.git"; 20 rev = "b749c2cadc2f32e2efffa69302861f9a7d4a4e5f"; 21 + sha256 = "sha256-DDGpxzQBaOOG+MYDXnVEB6/Q4qmdNM+86XNRNl01UqU="; 22 }; 23 24 nativeBuildInputs = [ makeWrapper ]; ··· 41 ''; 42 43 meta = with lib; { 44 homepage = "https://www.infradead.org/openconnect/"; 45 + description = "Script for vpnc to configure the network routing and name service"; 46 license = licenses.gpl2Only; 47 maintainers = with maintainers; [ jerith666 ]; 48 platforms = platforms.linux ++ platforms.darwin;
+14 -1
pkgs/tools/security/crackxls/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config, autoconf, automake, openssl, libgsf, gmp }: 2 3 stdenv.mkDerivation rec { 4 ··· 12 sha256 = "0q5jl7hcds3f0rhly3iy4fhhbyh9cdrfaw7zdrazzf1wswwhyssz"; 13 }; 14 15 nativeBuildInputs = [ pkg-config autoconf automake ]; 16 buildInputs = [ openssl libgsf gmp ]; 17 18 installPhase = 19 ''
··· 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, autoconf, automake, openssl, libgsf, gmp }: 2 3 stdenv.mkDerivation rec { 4 ··· 12 sha256 = "0q5jl7hcds3f0rhly3iy4fhhbyh9cdrfaw7zdrazzf1wswwhyssz"; 13 }; 14 15 + patches = [ 16 + # Pull patch pending upstream inclusion for -fno-common support: 17 + # https://github.com/GavinSmith0123/crackxls2003/pull/3 18 + (fetchpatch { 19 + name = "fno-common.patch"; 20 + url = "https://github.com/GavinSmith0123/crackxls2003/commit/613d6c1844f76c7b67671aaa265375fed56c2a56.patch"; 21 + sha256 = "1pk67x67d9wji576mc57z5bzqlf9ygvn9m1z47w12mad7qmj9h1n"; 22 + }) 23 + ]; 24 + 25 nativeBuildInputs = [ pkg-config autoconf automake ]; 26 buildInputs = [ openssl libgsf gmp ]; 27 + 28 + # Avoid "-O5 -march=native" 29 + makeFlags = [ "OPTIM_FLAGS=" ]; 30 31 installPhase = 32 ''
+1 -1
pkgs/tools/security/pcsclite/default.nix
··· 20 21 src = fetchurl { 22 url = "https://pcsclite.apdu.fr/files/pcsc-lite-${version}.tar.bz2"; 23 - sha256 = "sha256:024x0hadn0kc0m9yz3l2pqzc5mdqyza9lmckg0bn4xak6frzkqwy"; 24 }; 25 26 patches = [ ./no-dropdir-literals.patch ];
··· 20 21 src = fetchurl { 22 url = "https://pcsclite.apdu.fr/files/pcsc-lite-${version}.tar.bz2"; 23 + hash = "sha256-nuP5szNTdWIXeJNVmtT3uNXCPr6Cju9TBWwC2xQEnQg="; 24 }; 25 26 patches = [ ./no-dropdir-literals.patch ];
+9 -3
pkgs/tools/security/pomerium-cli/default.nix
··· 9 in 10 buildGoModule rec { 11 pname = "pomerium-cli"; 12 - version = pomerium.version; 13 src = fetchFromGitHub { 14 owner = "pomerium"; 15 repo = "cli"; 16 rev = "v${version}"; 17 - hash = "sha256:0230b22xjnpykj8bcdahzzlsvlrd63z2cmg6yb246c5ngjs835q1"; 18 }; 19 20 - vendorSha256 = "sha256:0xx22lmh6wip1d1bjrp4lgab3q9yilw54v4lg24lf3xhbsr5si9b"; 21 subPackages = [ 22 "cmd/pomerium-cli" 23 ]; ··· 45 ]; 46 47 installPhase = '' 48 install -Dm0755 $GOPATH/bin/pomerium-cli $out/bin/pomerium-cli 49 ''; 50 51 meta = with lib; {
··· 9 in 10 buildGoModule rec { 11 pname = "pomerium-cli"; 12 + inherit (pomerium) version; 13 + 14 src = fetchFromGitHub { 15 owner = "pomerium"; 16 repo = "cli"; 17 rev = "v${version}"; 18 + hash = "sha256-AZeBtHy2MEPE8uZVJv4wLdOt6f9QNbaQnP5a2YVYYAg="; 19 }; 20 21 + vendorSha256 = "sha256-K0Vdsl6wD0eJeJRsUjiNPuGx1KPkZrlCCzdyAysVonc="; 22 + 23 subPackages = [ 24 "cmd/pomerium-cli" 25 ]; ··· 47 ]; 48 49 installPhase = '' 50 + runHook preInstall 51 + 52 install -Dm0755 $GOPATH/bin/pomerium-cli $out/bin/pomerium-cli 53 + 54 + runHook postInstall 55 ''; 56 57 meta = with lib; {
+1 -1
pkgs/tools/security/softhsm/default.nix
··· 7 8 src = fetchurl { 9 url = "https://dist.opendnssec.org/source/${pname}-${version}.tar.gz"; 10 - hash = "sha256:1wkmyi6n3z2pak1cj5yk6v6bv9w0m24skycya48iikab0mrr8931"; 11 }; 12 13 configureFlags = [
··· 7 8 src = fetchurl { 9 url = "https://dist.opendnssec.org/source/${pname}-${version}.tar.gz"; 10 + hash = "sha256-YSSUcwVLzRgRUZ75qYmogKe9zDbTF8nCVFf8YU30dfI="; 11 }; 12 13 configureFlags = [
+12 -5
pkgs/tools/system/retry/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, which, txt2man }: 2 stdenv.mkDerivation rec { 3 pname = "retry"; 4 version = "1.0.4"; 5 6 - nativeBuildInputs = [ autoreconfHook which txt2man ]; 7 - 8 src = fetchFromGitHub { 9 owner = "minfrin"; 10 repo = "retry"; 11 rev = "${pname}-${version}"; 12 - sha256 = "sha256:0jrx4yrwlf4fn3309kxraj7zgwk7gq6rz5ibswq3w3b3jfvxi8qb"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://github.com/minfrin/retry"; 17 description = "Retry a command until the command succeeds"; 18 - platforms = platforms.all; 19 license = licenses.asl20; 20 maintainers = with maintainers; [ gfrascadorio ]; 21 }; 22 } 23
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + , txt2man 6 + , which 7 + }: 8 + 9 stdenv.mkDerivation rec { 10 pname = "retry"; 11 version = "1.0.4"; 12 13 src = fetchFromGitHub { 14 owner = "minfrin"; 15 repo = "retry"; 16 rev = "${pname}-${version}"; 17 + hash = "sha256-C6PYt5NjDT4w1yuWnw1+Z/L3j1S5zwTGsI44yrMnPUs="; 18 }; 19 20 + nativeBuildInputs = [ autoreconfHook txt2man which ]; 21 + 22 meta = with lib; { 23 homepage = "https://github.com/minfrin/retry"; 24 description = "Retry a command until the command succeeds"; 25 license = licenses.asl20; 26 maintainers = with maintainers; [ gfrascadorio ]; 27 + platforms = platforms.all; 28 }; 29 } 30
+3 -3
pkgs/tools/text/cidrgrep/default.nix
··· 8 owner = "tomdoherty"; 9 repo = "cidrgrep"; 10 rev = "8ad5af533e8dc33ea18ff19b7c6a41550748fe0e"; 11 - sha256 = "sha256:0jvwm9jq5jd270b6l9nkvc5pr3rgf158sw83lrprmwmz7r4mr786"; 12 }; 13 14 - vendorSha256 = "sha256:0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5"; 15 16 postInstall = '' 17 mv $out/bin/cmd $out/bin/cidrgrep ··· 19 20 meta = { 21 description = "Like grep but for IPv4 CIDRs"; 22 - maintainers = with lib.maintainers; [ das_j ]; 23 license = lib.licenses.mit; 24 }; 25 }
··· 8 owner = "tomdoherty"; 9 repo = "cidrgrep"; 10 rev = "8ad5af533e8dc33ea18ff19b7c6a41550748fe0e"; 11 + hash = "sha256-Bp1cST6/8ppvpgNxjUpwL498C9vTJmoWOKLJgmWqfEs="; 12 }; 13 14 + vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo="; 15 16 postInstall = '' 17 mv $out/bin/cmd $out/bin/cidrgrep ··· 19 20 meta = { 21 description = "Like grep but for IPv4 CIDRs"; 22 license = lib.licenses.mit; 23 + maintainers = with lib.maintainers; [ das_j ]; 24 }; 25 }
+1 -1
pkgs/tools/typesetting/coq2html/default.nix
··· 8 owner = "xavierleroy"; 9 repo = "coq2html"; 10 rev = "v${version}"; 11 - sha256 = "sha256:1ad825yifn518wk1c2y2ji10q3m468r8ajjgw2nzzy7d608nx7yq"; 12 }; 13 14 nativeBuildInputs = [ ocaml ];
··· 8 owner = "xavierleroy"; 9 repo = "coq2html"; 10 rev = "v${version}"; 11 + hash = "sha256-2J9uETDt+P+t4E9KhTIypA4MQpTCCxYmR6FYF30RqKk="; 12 }; 13 14 nativeBuildInputs = [ ocaml ];
+1 -1
pkgs/top-level/all-packages.nix
··· 14280 stdenv = clangStdenv; 14281 }; 14282 14283 - jacinda = haskell.lib.compose.justStaticExecutables haskell.packages.ghc922.jacinda; 14284 14285 janet = callPackage ../development/interpreters/janet {}; 14286
··· 14280 stdenv = clangStdenv; 14281 }; 14282 14283 + jacinda = haskell.lib.compose.justStaticExecutables haskell.packages.ghc923.jacinda; 14284 14285 janet = callPackage ../development/interpreters/janet {}; 14286
+6 -6
pkgs/top-level/haskell-packages.nix
··· 13 "integer-simple" 14 "native-bignum" 15 "ghc902" 16 - "ghc922" 17 "ghcHEAD" 18 ]; 19 20 nativeBignumIncludes = [ 21 "ghc902" 22 - "ghc922" 23 "ghcHEAD" 24 ]; 25 ··· 121 buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12; 122 llvmPackages = pkgs.llvmPackages_12; 123 }; 124 - ghc922 = callPackage ../development/compilers/ghc/9.2.2.nix { 125 bootPkgs = 126 # aarch64 ghc8107Binary exceeds max output size on hydra 127 if stdenv.isAarch64 || stdenv.isAarch32 then ··· 227 ghc = bh.compiler.ghc902; 228 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.0.x.nix { }; 229 }; 230 - ghc922 = callPackage ../development/haskell-modules { 231 - buildHaskellPackages = bh.packages.ghc922; 232 - ghc = bh.compiler.ghc922; 233 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.2.x.nix { }; 234 }; 235 ghcHEAD = callPackage ../development/haskell-modules {
··· 13 "integer-simple" 14 "native-bignum" 15 "ghc902" 16 + "ghc923" 17 "ghcHEAD" 18 ]; 19 20 nativeBignumIncludes = [ 21 "ghc902" 22 + "ghc923" 23 "ghcHEAD" 24 ]; 25 ··· 121 buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12; 122 llvmPackages = pkgs.llvmPackages_12; 123 }; 124 + ghc923 = callPackage ../development/compilers/ghc/9.2.3.nix { 125 bootPkgs = 126 # aarch64 ghc8107Binary exceeds max output size on hydra 127 if stdenv.isAarch64 || stdenv.isAarch32 then ··· 227 ghc = bh.compiler.ghc902; 228 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.0.x.nix { }; 229 }; 230 + ghc923 = callPackage ../development/haskell-modules { 231 + buildHaskellPackages = bh.packages.ghc923; 232 + ghc = bh.compiler.ghc923; 233 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.2.x.nix { }; 234 }; 235 ghcHEAD = callPackage ../development/haskell-modules {
+6
pkgs/top-level/python-packages.nix
··· 5327 5328 mesonpep517 = callPackage ../development/python-modules/mesonpep517 { }; 5329 5330 metakernel = callPackage ../development/python-modules/metakernel { }; 5331 5332 metar = callPackage ../development/python-modules/metar { }; ··· 7481 7482 pykwalify = callPackage ../development/python-modules/pykwalify { }; 7483 7484 pylacrosse = callPackage ../development/python-modules/pylacrosse { }; 7485 7486 pylama = callPackage ../development/python-modules/pylama { }; ··· 7558 pymaging = callPackage ../development/python-modules/pymaging { }; 7559 7560 pymaging_png = callPackage ../development/python-modules/pymaging_png { }; 7561 7562 pymanopt = callPackage ../development/python-modules/pymanopt { }; 7563
··· 5327 5328 mesonpep517 = callPackage ../development/python-modules/mesonpep517 { }; 5329 5330 + messagebird = callPackage ../development/python-modules/messagebird { }; 5331 + 5332 metakernel = callPackage ../development/python-modules/metakernel { }; 5333 5334 metar = callPackage ../development/python-modules/metar { }; ··· 7483 7484 pykwalify = callPackage ../development/python-modules/pykwalify { }; 7485 7486 + pykwb = callPackage ../development/python-modules/pykwb { }; 7487 + 7488 pylacrosse = callPackage ../development/python-modules/pylacrosse { }; 7489 7490 pylama = callPackage ../development/python-modules/pylama { }; ··· 7562 pymaging = callPackage ../development/python-modules/pymaging { }; 7563 7564 pymaging_png = callPackage ../development/python-modules/pymaging_png { }; 7565 + 7566 + pymailgunner = callPackage ../development/python-modules/pymailgunner { }; 7567 7568 pymanopt = callPackage ../development/python-modules/pymanopt { }; 7569
+20 -6
pkgs/top-level/release-haskell.nix
··· 52 ghc884 53 ghc8107 54 ghc902 55 - ghc922 56 ]; 57 58 # packagePlatforms applied to `haskell.packages.*` ··· 329 ; 330 }; 331 332 - haskell.packages.native-bignum.ghc922 = { 333 - inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.native-bignum.ghc922) 334 hello 335 lens 336 random ··· 376 spectacle = [ 377 compilerNames.ghc8107 378 ]; 379 }) 380 { 381 mergeable = pkgs.releaseTools.aggregate { ··· 442 jobs.pkgsMusl.haskell.compiler.ghc884 443 jobs.pkgsMusl.haskell.compiler.ghc8107 444 jobs.pkgsMusl.haskell.compiler.ghc902 445 - jobs.pkgsMusl.haskell.compiler.ghc922 446 jobs.pkgsMusl.haskell.compiler.ghcHEAD 447 jobs.pkgsMusl.haskell.compiler.integer-simple.ghc8107 448 jobs.pkgsMusl.haskell.compiler.native-bignum.ghc902 449 - jobs.pkgsMusl.haskell.compiler.native-bignum.ghc922 450 jobs.pkgsMusl.haskell.compiler.native-bignum.ghcHEAD 451 ]; 452 }; ··· 462 }; 463 constituents = accumulateDerivations [ 464 jobs.pkgsStatic.haskellPackages 465 - jobs.pkgsStatic.haskell.packages.native-bignum.ghc922 466 ]; 467 }; 468 }
··· 52 ghc884 53 ghc8107 54 ghc902 55 + ghc923 56 ]; 57 58 # packagePlatforms applied to `haskell.packages.*` ··· 329 ; 330 }; 331 332 + haskell.packages.native-bignum.ghc923 = { 333 + inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.native-bignum.ghc923) 334 hello 335 lens 336 random ··· 376 spectacle = [ 377 compilerNames.ghc8107 378 ]; 379 + weeder = [ 380 + compilerNames.ghc8107 381 + compilerNames.ghc902 382 + compilerNames.ghc923 383 + ]; 384 + purescript = [ 385 + compilerNames.ghc8107 386 + ]; 387 + purescript-cst = [ 388 + compilerNames.ghc8107 389 + ]; 390 + purescript-ast = [ 391 + compilerNames.ghc8107 392 + ]; 393 }) 394 { 395 mergeable = pkgs.releaseTools.aggregate { ··· 456 jobs.pkgsMusl.haskell.compiler.ghc884 457 jobs.pkgsMusl.haskell.compiler.ghc8107 458 jobs.pkgsMusl.haskell.compiler.ghc902 459 + jobs.pkgsMusl.haskell.compiler.ghc923 460 jobs.pkgsMusl.haskell.compiler.ghcHEAD 461 jobs.pkgsMusl.haskell.compiler.integer-simple.ghc8107 462 jobs.pkgsMusl.haskell.compiler.native-bignum.ghc902 463 + jobs.pkgsMusl.haskell.compiler.native-bignum.ghc923 464 jobs.pkgsMusl.haskell.compiler.native-bignum.ghcHEAD 465 ]; 466 }; ··· 476 }; 477 constituents = accumulateDerivations [ 478 jobs.pkgsStatic.haskellPackages 479 + jobs.pkgsStatic.haskell.packages.native-bignum.ghc923 480 ]; 481 }; 482 }