Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 01b3d155 17a7be16

+2868 -1956
+1 -2
nixos/modules/services/logging/logstash.nix
··· 159 159 ###### implementation 160 160 161 161 config = mkIf cfg.enable { 162 - systemd.services.logstash = with pkgs; { 162 + systemd.services.logstash = { 163 163 description = "Logstash Daemon"; 164 164 wantedBy = [ "multi-user.target" ]; 165 - environment = { JAVA_HOME = jre; }; 166 165 path = [ pkgs.bash ]; 167 166 serviceConfig = { 168 167 ExecStartPre = ''${pkgs.coreutils}/bin/mkdir -p "${cfg.dataDir}" ; ${pkgs.coreutils}/bin/chmod 700 "${cfg.dataDir}"'';
+1
nixos/tests/elk.nix
··· 120 120 }; 121 121 }; 122 122 123 + passthru.elkPackages = elk; 123 124 testScript = '' 124 125 import json 125 126
+8 -5
pkgs/applications/audio/strawberry/default.nix
··· 35 35 36 36 mkDerivation rec { 37 37 pname = "strawberry"; 38 - version = "0.9.1"; 38 + version = "0.9.2"; 39 39 40 40 src = fetchFromGitHub { 41 41 owner = "jonaski"; 42 42 repo = pname; 43 43 rev = version; 44 - sha256 = "sha256-1aXHMvjLK5WiE0mut/a3ynuMfNHgPbUzAZdmaVJBDXQ="; 44 + sha256 = "sha256:0d9asg21j9ai23sb35cimws8bd8fsnpha777rgscraa7i09q0rx2"; 45 45 }; 46 46 47 47 buildInputs = [ ··· 67 67 libselinux 68 68 libsepol 69 69 p11-kit 70 - util-linux 71 70 ] 72 71 ++ lib.optionals withGstreamer (with gst_all_1; [ 73 72 gstreamer ··· 77 76 ]) 78 77 ++ lib.optional withVlc libvlc; 79 78 80 - nativeBuildInputs = [ cmake ninja pkg-config qttools ]; 79 + nativeBuildInputs = [ 80 + cmake ninja pkg-config qttools 81 + ] ++ lib.optionals stdenv.isLinux [ 82 + util-linux 83 + ]; 81 84 82 85 cmakeFlags = [ 83 86 "-DUSE_SYSTEM_TAGLIB=ON" ··· 91 94 description = "Music player and music collection organizer"; 92 95 homepage = "https://www.strawberrymusicplayer.org/"; 93 96 changelog = "https://raw.githubusercontent.com/jonaski/strawberry/${version}/Changelog"; 94 - license = licenses.gpl3; 97 + license = licenses.gpl3Only; 95 98 maintainers = with maintainers; [ peterhoeg ]; 96 99 # upstream says darwin should work but they lack maintainers as of 0.6.6 97 100 platforms = platforms.linux;
+2 -2
pkgs/applications/misc/jrnl/default.nix
··· 18 18 19 19 buildPythonApplication rec { 20 20 pname = "jrnl"; 21 - version = "2.7.1"; 21 + version = "2.8"; 22 22 format = "pyproject"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "jrnl-org"; 26 26 repo = pname; 27 27 rev = "v${version}"; 28 - sha256 = "1m1shgnvwzzs0g6ph7rprwxd7w8zj0x4sbgiqsv9z41k6li7xj4r"; 28 + sha256 = "1zpsvrjhami9y7204yjbdzi04bkkz6i3apda9fh3hbq83y6wzprz"; 29 29 }; 30 30 31 31 nativeBuildInputs = [ poetry ];
+22
pkgs/applications/networking/cluster/kconf/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "kconf"; 5 + version = "1.10.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "particledecay"; 9 + repo = "kconf"; 10 + rev = "v${version}"; 11 + sha256 = "NlTpHQFOJJcIt/xMT3fvdrlxANyg//wtYMmXzEtaFXo="; 12 + }; 13 + 14 + vendorSha256 = "2d4o87wE9QZltk2YOHc20XVYF8n0EOrDf5mJ6i6EB0c="; 15 + 16 + meta = with lib; { 17 + description = "An opinionated command line tool for managing multiple kubeconfigs"; 18 + homepage = "https://github.com/particledecay/kconf"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ thmzlt ]; 21 + }; 22 + }
+10 -2
pkgs/applications/networking/cluster/kube3d/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kube3d"; 5 - version = "4.3.0"; 5 + version = "4.4.0"; 6 6 7 7 excludedPackages = "tools"; 8 8 ··· 10 10 owner = "rancher"; 11 11 repo = "k3d"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-ybEYKr0rQY8Qg74V1mXqShq5Z2d/Adf0bSSbEMIyo3I="; 13 + sha256 = "sha256-+9VtFHZ4ZZiX04u5YvPoQaelH9Q9oKMrbFHFFiNUxBA="; 14 14 }; 15 15 16 16 vendorSha256 = null; ··· 29 29 --bash <($out/bin/k3d completion bash) \ 30 30 --fish <($out/bin/k3d completion fish) \ 31 31 --zsh <($out/bin/k3d completion zsh) 32 + ''; 33 + 34 + doInstallCheck = true; 35 + installCheckPhase = '' 36 + runHook preInstallCheck 37 + $out/bin/k3d --help 38 + $out/bin/k3d version | grep "k3d version v${version}" 39 + runHook postInstallCheck 32 40 ''; 33 41 34 42 meta = with lib; {
+26
pkgs/applications/networking/cluster/pgo-client/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "pgo-client"; 5 + version = "4.6.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "CrunchyData"; 9 + repo = "postgres-operator"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-zPFsLKbuVq2wMjFsqjBGiatPBwGR/X6q3mj8o5BE+r0="; 12 + }; 13 + 14 + vendorSha256 = "sha256-DU1kc7YDQ+denj6tHVGt79s494aBFZ2KM7PVSn951KI="; 15 + 16 + subPackages = [ "cmd/pgo" ]; 17 + 18 + meta = with lib; { 19 + description = "A CLI client for Crunchy PostgreSQL Kubernetes Operator"; 20 + homepage = "https://github.com/CrunchyData/postgres-operator"; 21 + changelog = "https://github.com/CrunchyData/postgres-operator/releases/tag/v${version}"; 22 + license = licenses.asl20; 23 + maintainers = [ maintainers.bryanasdev000 ]; 24 + platforms = platforms.linux; 25 + }; 26 + }
+3
pkgs/applications/networking/cluster/terraforming/Gemfile
··· 1 + source "https://rubygems.org" 2 + 3 + gem 'terraforming'
+92
pkgs/applications/networking/cluster/terraforming/Gemfile.lock
··· 1 + GEM 2 + remote: https://rubygems.org/ 3 + specs: 4 + aws-eventstream (1.1.1) 5 + aws-partitions (1.436.0) 6 + aws-sdk-autoscaling (1.59.0) 7 + aws-sdk-core (~> 3, >= 3.112.0) 8 + aws-sigv4 (~> 1.1) 9 + aws-sdk-cloudwatch (1.50.0) 10 + aws-sdk-core (~> 3, >= 3.112.0) 11 + aws-sigv4 (~> 1.1) 12 + aws-sdk-core (3.113.0) 13 + aws-eventstream (~> 1, >= 1.0.2) 14 + aws-partitions (~> 1, >= 1.239.0) 15 + aws-sigv4 (~> 1.1) 16 + jmespath (~> 1.0) 17 + aws-sdk-dynamodb (1.60.0) 18 + aws-sdk-core (~> 3, >= 3.112.0) 19 + aws-sigv4 (~> 1.1) 20 + aws-sdk-ec2 (1.230.0) 21 + aws-sdk-core (~> 3, >= 3.112.0) 22 + aws-sigv4 (~> 1.1) 23 + aws-sdk-efs (1.39.0) 24 + aws-sdk-core (~> 3, >= 3.112.0) 25 + aws-sigv4 (~> 1.1) 26 + aws-sdk-elasticache (1.54.0) 27 + aws-sdk-core (~> 3, >= 3.112.0) 28 + aws-sigv4 (~> 1.1) 29 + aws-sdk-elasticloadbalancing (1.31.0) 30 + aws-sdk-core (~> 3, >= 3.112.0) 31 + aws-sigv4 (~> 1.1) 32 + aws-sdk-elasticloadbalancingv2 (1.61.0) 33 + aws-sdk-core (~> 3, >= 3.112.0) 34 + aws-sigv4 (~> 1.1) 35 + aws-sdk-iam (1.51.0) 36 + aws-sdk-core (~> 3, >= 3.112.0) 37 + aws-sigv4 (~> 1.1) 38 + aws-sdk-kms (1.43.0) 39 + aws-sdk-core (~> 3, >= 3.112.0) 40 + aws-sigv4 (~> 1.1) 41 + aws-sdk-rds (1.117.0) 42 + aws-sdk-core (~> 3, >= 3.112.0) 43 + aws-sigv4 (~> 1.1) 44 + aws-sdk-redshift (1.58.0) 45 + aws-sdk-core (~> 3, >= 3.112.0) 46 + aws-sigv4 (~> 1.1) 47 + aws-sdk-route53 (1.48.0) 48 + aws-sdk-core (~> 3, >= 3.112.0) 49 + aws-sigv4 (~> 1.1) 50 + aws-sdk-s3 (1.93.0) 51 + aws-sdk-core (~> 3, >= 3.112.0) 52 + aws-sdk-kms (~> 1) 53 + aws-sigv4 (~> 1.1) 54 + aws-sdk-sns (1.39.0) 55 + aws-sdk-core (~> 3, >= 3.112.0) 56 + aws-sigv4 (~> 1.1) 57 + aws-sdk-sqs (1.38.0) 58 + aws-sdk-core (~> 3, >= 3.112.0) 59 + aws-sigv4 (~> 1.1) 60 + aws-sigv4 (1.2.3) 61 + aws-eventstream (~> 1, >= 1.0.2) 62 + jmespath (1.4.0) 63 + multi_json (1.12.2) 64 + terraforming (0.18.0) 65 + aws-sdk-autoscaling (~> 1) 66 + aws-sdk-cloudwatch (~> 1) 67 + aws-sdk-dynamodb (~> 1.18) 68 + aws-sdk-ec2 (~> 1) 69 + aws-sdk-efs (~> 1, >= 1.13.0) 70 + aws-sdk-elasticache (~> 1) 71 + aws-sdk-elasticloadbalancing (~> 1) 72 + aws-sdk-elasticloadbalancingv2 (~> 1) 73 + aws-sdk-iam (~> 1) 74 + aws-sdk-kms (~> 1) 75 + aws-sdk-rds (~> 1) 76 + aws-sdk-redshift (~> 1) 77 + aws-sdk-route53 (~> 1) 78 + aws-sdk-s3 (~> 1) 79 + aws-sdk-sns (~> 1) 80 + aws-sdk-sqs (~> 1) 81 + multi_json (~> 1.12.1) 82 + thor 83 + thor (1.1.0) 84 + 85 + PLATFORMS 86 + ruby 87 + 88 + DEPENDENCIES 89 + terraforming 90 + 91 + BUNDLED WITH 92 + 2.1.4
+20
pkgs/applications/networking/cluster/terraforming/default.nix
··· 1 + { lib, bundlerApp, bundlerUpdateScript, ruby }: 2 + 3 + bundlerApp rec { 4 + inherit ruby; 5 + 6 + pname = "terraforming"; 7 + gemdir = ./.; 8 + exes = [ "terraforming" ]; 9 + 10 + passthru.updateScript = bundlerUpdateScript "terraforming"; 11 + 12 + meta = with lib; { 13 + inherit (ruby.meta) platforms; 14 + 15 + description = "Export existing AWS resources to Terraform style (tf, tfstate)"; 16 + homepage = "https://github.com/dtan4/terraforming"; 17 + license = with licenses; mit; 18 + maintainers = with maintainers; [ kalbasit ]; 19 + }; 20 + }
+261
pkgs/applications/networking/cluster/terraforming/gemset.nix
··· 1 + { 2 + aws-eventstream = { 3 + groups = ["default"]; 4 + platforms = []; 5 + source = { 6 + remotes = ["https://rubygems.org"]; 7 + sha256 = "0jfki5ikfr8ln5cdgv4iv1643kax0bjpp29jh78chzy713274jh3"; 8 + type = "gem"; 9 + }; 10 + version = "1.1.1"; 11 + }; 12 + aws-partitions = { 13 + groups = ["default"]; 14 + platforms = []; 15 + source = { 16 + remotes = ["https://rubygems.org"]; 17 + sha256 = "1gn09cafg2n6gdc3ja80r3xjllly05r0m7x3w3b3rywir6k6ai4f"; 18 + type = "gem"; 19 + }; 20 + version = "1.436.0"; 21 + }; 22 + aws-sdk-autoscaling = { 23 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 24 + groups = ["default"]; 25 + platforms = []; 26 + source = { 27 + remotes = ["https://rubygems.org"]; 28 + sha256 = "0br6hfi2i5rri8ivamkmnx00p640s24pqmp8s67sm5asvdfzx4vr"; 29 + type = "gem"; 30 + }; 31 + version = "1.59.0"; 32 + }; 33 + aws-sdk-cloudwatch = { 34 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 35 + groups = ["default"]; 36 + platforms = []; 37 + source = { 38 + remotes = ["https://rubygems.org"]; 39 + sha256 = "0xga00dn925rfgz4p2zf734aaik00dqb9psll27lg5626jd6xr0c"; 40 + type = "gem"; 41 + }; 42 + version = "1.50.0"; 43 + }; 44 + aws-sdk-core = { 45 + dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"]; 46 + groups = ["default"]; 47 + platforms = []; 48 + source = { 49 + remotes = ["https://rubygems.org"]; 50 + sha256 = "1774xyfqf307qvh5npvf01948ayrviaadq576r4jxin6xvlg8j9z"; 51 + type = "gem"; 52 + }; 53 + version = "3.113.0"; 54 + }; 55 + aws-sdk-dynamodb = { 56 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 57 + groups = ["default"]; 58 + platforms = []; 59 + source = { 60 + remotes = ["https://rubygems.org"]; 61 + sha256 = "1dfsmkzv9cziykzc56g9pwxmbdqjpykxka3fq07b6iarzh38j1i3"; 62 + type = "gem"; 63 + }; 64 + version = "1.60.0"; 65 + }; 66 + aws-sdk-ec2 = { 67 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 68 + groups = ["default"]; 69 + platforms = []; 70 + source = { 71 + remotes = ["https://rubygems.org"]; 72 + sha256 = "1c7qqly2f94db3643xwjj9mcb34vilx11awbv40v2f8z7xisvvz3"; 73 + type = "gem"; 74 + }; 75 + version = "1.230.0"; 76 + }; 77 + aws-sdk-efs = { 78 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 79 + groups = ["default"]; 80 + platforms = []; 81 + source = { 82 + remotes = ["https://rubygems.org"]; 83 + sha256 = "0kmpz86sxkm6nzcf80nd65902fy29hz8lvx1kjwl5idx07ls8pnd"; 84 + type = "gem"; 85 + }; 86 + version = "1.39.0"; 87 + }; 88 + aws-sdk-elasticache = { 89 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 90 + groups = ["default"]; 91 + platforms = []; 92 + source = { 93 + remotes = ["https://rubygems.org"]; 94 + sha256 = "05kn2k437rnsf9nkwc1x5i2klrasjgyk1pj89f2gb0za86swjcza"; 95 + type = "gem"; 96 + }; 97 + version = "1.54.0"; 98 + }; 99 + aws-sdk-elasticloadbalancing = { 100 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 101 + groups = ["default"]; 102 + platforms = []; 103 + source = { 104 + remotes = ["https://rubygems.org"]; 105 + sha256 = "0j3px8dn2yxsnmy010kfkwa1a2flbdxachmly20f436ysi3ql3v3"; 106 + type = "gem"; 107 + }; 108 + version = "1.31.0"; 109 + }; 110 + aws-sdk-elasticloadbalancingv2 = { 111 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 112 + groups = ["default"]; 113 + platforms = []; 114 + source = { 115 + remotes = ["https://rubygems.org"]; 116 + sha256 = "16hknbqv5s1im04dch9kdbc79x072613imdih62w48mvsf12c1mm"; 117 + type = "gem"; 118 + }; 119 + version = "1.61.0"; 120 + }; 121 + aws-sdk-iam = { 122 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 123 + groups = ["default"]; 124 + platforms = []; 125 + source = { 126 + remotes = ["https://rubygems.org"]; 127 + sha256 = "0x2768blsy8lpib9pi2f2d67flabar3bq6chmbj07iqzpwvpz569"; 128 + type = "gem"; 129 + }; 130 + version = "1.51.0"; 131 + }; 132 + aws-sdk-kms = { 133 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 134 + groups = ["default"]; 135 + platforms = []; 136 + source = { 137 + remotes = ["https://rubygems.org"]; 138 + sha256 = "01pd0f4srsa65zl4zq4014p9j5yrr2yy9h9ab17g3w9d0qqm2vsh"; 139 + type = "gem"; 140 + }; 141 + version = "1.43.0"; 142 + }; 143 + aws-sdk-rds = { 144 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 145 + groups = ["default"]; 146 + platforms = []; 147 + source = { 148 + remotes = ["https://rubygems.org"]; 149 + sha256 = "0hwxgcka6bmzdn5pazss0fv8xgbbgas4h2cwpzwhkjkwhh23dx6a"; 150 + type = "gem"; 151 + }; 152 + version = "1.117.0"; 153 + }; 154 + aws-sdk-redshift = { 155 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 156 + groups = ["default"]; 157 + platforms = []; 158 + source = { 159 + remotes = ["https://rubygems.org"]; 160 + sha256 = "1sp186v00lj517hia6rsn28ph8rqknz9r79vbkbyh5fgrbh2j6bd"; 161 + type = "gem"; 162 + }; 163 + version = "1.58.0"; 164 + }; 165 + aws-sdk-route53 = { 166 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 167 + groups = ["default"]; 168 + platforms = []; 169 + source = { 170 + remotes = ["https://rubygems.org"]; 171 + sha256 = "0p9g0scw9c6qancdwvaw3kkj3pywchy2vl3qz2rqpjncqvj04pn5"; 172 + type = "gem"; 173 + }; 174 + version = "1.48.0"; 175 + }; 176 + aws-sdk-s3 = { 177 + dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"]; 178 + groups = ["default"]; 179 + platforms = []; 180 + source = { 181 + remotes = ["https://rubygems.org"]; 182 + sha256 = "0iy2f9z43pc6fgwmga2cz8nf9gy2pwcw4jib141vp8z8dhylqj94"; 183 + type = "gem"; 184 + }; 185 + version = "1.93.0"; 186 + }; 187 + aws-sdk-sns = { 188 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 189 + groups = ["default"]; 190 + platforms = []; 191 + source = { 192 + remotes = ["https://rubygems.org"]; 193 + sha256 = "0pmxi871r2nkl6by89vsy05ahk8dr6hmkny56fycrby6r9kri9q4"; 194 + type = "gem"; 195 + }; 196 + version = "1.39.0"; 197 + }; 198 + aws-sdk-sqs = { 199 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 200 + groups = ["default"]; 201 + platforms = []; 202 + source = { 203 + remotes = ["https://rubygems.org"]; 204 + sha256 = "01m2l8y4q4fixjvl70w5bi1ihmmx2y4krms9kkjwd3ch21y14hif"; 205 + type = "gem"; 206 + }; 207 + version = "1.38.0"; 208 + }; 209 + aws-sigv4 = { 210 + dependencies = ["aws-eventstream"]; 211 + groups = ["default"]; 212 + platforms = []; 213 + source = { 214 + remotes = ["https://rubygems.org"]; 215 + sha256 = "1d9zhmi3mpfzkkpg7yw7s9r1dwk157kh9875j3c7gh6cy95lmmaw"; 216 + type = "gem"; 217 + }; 218 + version = "1.2.3"; 219 + }; 220 + jmespath = { 221 + groups = ["default"]; 222 + platforms = []; 223 + source = { 224 + remotes = ["https://rubygems.org"]; 225 + sha256 = "1d4wac0dcd1jf6kc57891glih9w57552zgqswgy74d1xhgnk0ngf"; 226 + type = "gem"; 227 + }; 228 + version = "1.4.0"; 229 + }; 230 + multi_json = { 231 + groups = ["default"]; 232 + platforms = []; 233 + source = { 234 + remotes = ["https://rubygems.org"]; 235 + sha256 = "1raim9ddjh672m32psaa9niw67ywzjbxbdb8iijx3wv9k5b0pk2x"; 236 + type = "gem"; 237 + }; 238 + version = "1.12.2"; 239 + }; 240 + terraforming = { 241 + dependencies = ["aws-sdk-autoscaling" "aws-sdk-cloudwatch" "aws-sdk-dynamodb" "aws-sdk-ec2" "aws-sdk-efs" "aws-sdk-elasticache" "aws-sdk-elasticloadbalancing" "aws-sdk-elasticloadbalancingv2" "aws-sdk-iam" "aws-sdk-kms" "aws-sdk-rds" "aws-sdk-redshift" "aws-sdk-route53" "aws-sdk-s3" "aws-sdk-sns" "aws-sdk-sqs" "multi_json" "thor"]; 242 + groups = ["default"]; 243 + platforms = []; 244 + source = { 245 + remotes = ["https://rubygems.org"]; 246 + sha256 = "03fyhqx6bxpbn26pbcz748gz7rh7q3r9r0jimq7vj07fl454fmwh"; 247 + type = "gem"; 248 + }; 249 + version = "0.18.0"; 250 + }; 251 + thor = { 252 + groups = ["default"]; 253 + platforms = []; 254 + source = { 255 + remotes = ["https://rubygems.org"]; 256 + sha256 = "18yhlvmfya23cs3pvhr1qy38y41b6mhr5q9vwv5lrgk16wmf3jna"; 257 + type = "gem"; 258 + }; 259 + version = "1.1.0"; 260 + }; 261 + }
+3 -3
pkgs/applications/networking/dnscontrol/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnscontrol"; 5 - version = "3.7.0"; 5 + version = "3.8.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "StackExchange"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-el94Iq7/+1FfGpqbhKEO6FGpaCxoueoc/+Se+WfT+G0="; 11 + sha256 = "sha256-VSNvyigaGfGDbcng6ltdq+X35zT2tb2p4j/4KAjd1Yk="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-MSHg1RWjbXm1pf6HTyJL4FcnLuacL9fO1F6zbouVkWg="; 14 + vendorSha256 = "sha256-VU0uJDp5koVU+wDwr3ctrDY0R3vd/JmpA7gtWWpwpfw="; 15 15 16 16 subPackages = [ "." ]; 17 17
+10 -6
pkgs/applications/science/medicine/aliza/default.nix
··· 3 3 with lib; 4 4 stdenv.mkDerivation { 5 5 pname = "aliza"; 6 - version = "1.98.43"; 6 + version = "1.98.57"; 7 7 src = fetchurl { 8 8 # See https://www.aliza-dicom-viewer.com/download 9 - url = "https://drive.google.com/uc?export=download&id=1HiDYUVN30oSWZWt3HBp7gNRBCLLtJM1I"; 10 - sha256 = "0d70q67j2q0wdn4m2fxljqb97jwmscqgg3rm1rkb77fi2ik206ra"; 9 + urls = [ 10 + "https://drive.google.com/uc?export=download&id=1-AXa3tjy_onecW2k7ftjAQl0KGTb0B1Y" 11 + "https://web.archive.org/web/20210327224315/https://doc-0s-0s-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/1lgjid9ti29rdf5ebmd7o58iqhs3gfpo/1616884950000/16072287944266838401/*/1-AXa3tjy_onecW2k7ftjAQl0KGTb0B1Y?e=download" 12 + ]; 13 + sha256 = "01qk2gadmc24pmfdnmpiz7vgfiqkvhznyq9rsr153frscg76gc9b"; 11 14 name = "aliza.rpm"; 12 15 }; 13 16 14 - nativeBuildInputs = [ makeWrapper ]; 15 - buildInputs = [ rpmextract ]; 17 + nativeBuildInputs = [ makeWrapper rpmextract ]; 16 18 17 19 unpackCmd = "rpmextract $curSrc"; 18 20 19 - patchPhase = '' 21 + postPatch = '' 20 22 sed -i 's/^Exec.*$/Exec=aliza %F/' share/applications/aliza.desktop 21 23 ''; 22 24 23 25 installPhase = '' 26 + runHook preInstall 27 + 24 28 mkdir -p $out 25 29 cp -r bin share $out 26 30
+3 -3
pkgs/applications/science/misc/simgrid/default.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "simgrid"; 21 - version = "3.26"; 21 + version = "3.27"; 22 22 23 23 src = fetchFromGitLab { 24 24 domain = "framagit.org"; 25 25 owner = pname; 26 26 repo = pname; 27 27 rev = "v${version}"; 28 - sha256 = "0kwiggdjqjhjvmwb1m7hb9clvm3xz948fy5ia67dif2pakwad754"; 28 + sha256 = "13nwsyk030fhl3srhpc28j5s6594z0m38606f4ygc4qhv9wxw011"; 29 29 }; 30 30 31 31 nativeBuildInputs = [ cmake perl python3 boost valgrind ] ··· 105 105 homepage = "https://simgrid.org/"; 106 106 license = licenses.lgpl2Plus; 107 107 maintainers = with maintainers; [ mickours mpoquet ]; 108 - platforms = ["x86_64-linux"]; 108 + platforms = platforms.all; 109 109 }; 110 110 }
+35
pkgs/development/libraries/libfprint-2-tod1-goodix/default.nix
··· 1 + { stdenv, lib, fetchgit, libfprint-tod }: 2 + stdenv.mkDerivation { 3 + pname = "libfprint-2-tod1-goodix"; 4 + version = "0.0.6"; 5 + 6 + src = fetchgit { 7 + url = "https://git.launchpad.net/~oem-solutions-engineers/libfprint-2-tod1-goodix/+git/libfprint-2-tod1-goodix"; 8 + rev = "882735c6366fbe30149eea5cfd6d0ddff880f0e4"; # droped-lp1880058 on 20202-11-25 9 + sha256 = "sha256-Uv+Rr4V31DyaZFOj79Lpyfl3G6zVWShh20roI0AvMPU="; 10 + }; 11 + 12 + buildPhase = '' 13 + patchelf \ 14 + --set-rpath ${lib.makeLibraryPath [ libfprint-tod ]} \ 15 + usr/lib/x86_64-linux-gnu/libfprint-2/tod-1/libfprint-tod-goodix-53xc-0.0.6.so 16 + 17 + ldd usr/lib/x86_64-linux-gnu/libfprint-2/tod-1/libfprint-tod-goodix-53xc-0.0.6.so 18 + ''; 19 + 20 + installPhase = '' 21 + mkdir -p "$out/usr/lib/libfprint-2/tod-1/" 22 + mkdir -p "$out/usr/lib/udev/rules.d/" 23 + 24 + cp usr/lib/x86_64-linux-gnu/libfprint-2/tod-1/libfprint-tod-goodix-53xc-$version.so "$out/usr/lib/libfprint-2/tod-1/" 25 + cp lib/udev/rules.d/60-libfprint-2-tod1-goodix.rules "$out/usr/lib/udev/rules.d/" 26 + ''; 27 + 28 + meta = with lib; { 29 + description = "Goodix driver module for libfprint-2-tod Touch OEM Driver"; 30 + homepage = "https://git.launchpad.net/~oem-solutions-engineers/libfprint-2-tod1-goodix/+git/libfprint-2-tod1-goodix/"; 31 + license = licenses.unfree; 32 + platforms = platforms.linux; 33 + maintainers = with maintainers; [ grahamc ]; 34 + }; 35 + }
+40
pkgs/development/libraries/libfprint-tod/default.nix
··· 1 + { lib 2 + , libfprint 3 + , fetchFromGitLab 4 + }: 5 + 6 + # for the curious, "tod" means "Touch OEM Drivers" meaning it can load 7 + # external .so's. 8 + libfprint.overrideAttrs ({ postPatch ? "", mesonFlags ? [], ... }: let 9 + version = "1.90.7+git20210222+tod1"; 10 + in { 11 + pname = "libfprint-tod"; 12 + inherit version; 13 + 14 + src = fetchFromGitLab { 15 + domain = "gitlab.freedesktop.org"; 16 + owner = "3v1n0"; 17 + repo = "libfprint"; 18 + rev = "v${version}"; 19 + sha256 = "0cj7iy5799pchyzqqncpkhibkq012g3bdpn18pfb19nm43svhn4j"; 20 + }; 21 + 22 + mesonFlags = mesonFlags ++ [ 23 + "-Dudev_hwdb_dir=${placeholder "out"}/lib/udev/hwdb.d" 24 + ]; 25 + 26 + 27 + postPatch = '' 28 + ${postPatch} 29 + patchShebangs ./tests/*.py ./tests/*.sh 30 + ''; 31 + 32 + 33 + meta = with lib; { 34 + homepage = "https://gitlab.freedesktop.org/3v1n0/libfprint"; 35 + description = "A library designed to make it easy to add support for consumer fingerprint readers, with support for loaded drivers"; 36 + license = licenses.lgpl21; 37 + platforms = platforms.linux; 38 + maintainers = with maintainers; [ grahamc ]; 39 + }; 40 + })
+4 -2
pkgs/development/libraries/webkitgtk/default.nix
··· 37 37 , libGL 38 38 , libGLU 39 39 , libintl 40 + , libmanette 40 41 , openjpeg 41 42 , enableGeoLocation ? true 42 43 , geoclue2 ··· 59 60 60 61 stdenv.mkDerivation rec { 61 62 pname = "webkitgtk"; 62 - version = "2.30.6"; 63 + version = "2.32.0"; 63 64 64 65 outputs = [ "out" "dev" ]; 65 66 ··· 67 68 68 69 src = fetchurl { 69 70 url = "https://webkitgtk.org/releases/${pname}-${version}.tar.xz"; 70 - sha256 = "07kwkn7gnlfw4idl5vyyzhzbj2bjzvjrclbikn9vaw0pm73nwwsh"; 71 + sha256 = "1w3b0w8izp0i070grhv19j631sdcd0mcqnjnax13k8mdx7dg8zcx"; 71 72 }; 72 73 73 74 patches = optionals stdenv.isLinux [ ··· 115 116 libgcrypt 116 117 libidn 117 118 libintl 119 + libmanette 118 120 libnotify 119 121 libpthreadstubs 120 122 libsecret
+43 -47
pkgs/development/lisp-modules/lisp-packages.nix
··· 124 124 }; 125 125 nyxt = pkgs.lispPackages.buildLispPackage rec { 126 126 baseName = "nyxt"; 127 - version = "2020-10-23"; 127 + version = "2021-03-27"; 128 128 129 - buildSystems = [ "nyxt" "nyxt-ext" ]; 130 129 131 130 description = "Browser"; 132 131 ··· 143 142 }; 144 143 145 144 deps = with pkgs.lispPackages; [ 146 - alexandria 147 - bordeaux-threads 148 - chanl 149 - cl-annot 150 - cl-ansi-text 151 - cl-containers 152 - cl-css 153 - cl-json 154 - cl-markup 155 - cl-ppcre 156 - cl-ppcre-unicode 157 - cl-prevalence 158 - cl-webkit2 159 - closer-mop 160 - cluffer 161 - dbus 162 - dexador 163 - enchant 164 - fset 165 - hu_dot_dwim_dot_defclass-star 166 - ironclad 167 - local-time 168 - log4cl 169 - lparallel 170 - mk-string-metrics 171 - osicat 172 - parenscript 173 - plump 174 - prove-asdf 175 - quri 176 - serapeum 177 - sqlite 178 - str 179 - swank 180 - trivia 181 - trivial-clipboard 182 - trivial-features 183 - trivial-package-local-nicknames 184 - trivial-types 185 - unix-opts 145 + alexandria 146 + bordeaux-threads 147 + calispel 148 + cl-css 149 + cl-json 150 + cl-markup 151 + cl-ppcre 152 + cl-ppcre-unicode 153 + cl-prevalence 154 + closer-mop 155 + cl-containers 156 + cluffer 157 + moptilities 158 + dexador 159 + enchant 160 + file-attributes 161 + iolib 162 + local-time 163 + log4cl 164 + mk-string-metrics 165 + osicat 166 + parenscript 167 + quri 168 + serapeum 169 + str 170 + plump 171 + swank 172 + trivia 173 + trivial-clipboard 174 + trivial-features 175 + trivial-package-local-nicknames 176 + trivial-types 177 + unix-opts 178 + cl-html-diff 179 + hu_dot_dwim_dot_defclass-star 180 + cl-custom-hash-table 181 + fset 182 + cl-cffi-gtk 183 + cl-webkit2 186 184 ]; 187 185 src = pkgs.fetchFromGitHub { 188 186 owner = "atlas-engineer"; 189 187 repo = "nyxt"; 190 - rev = "f744af5233b3636460ce71650de2b0c7dcb9fa8e"; 191 - sha256 = "1m4jic7nbm2jmxlm8k0zqg62z91g2f2s86by086brgfw056idjmz"; 192 - # date = 2020-10-23T19:06:04+02:00; 188 + rev = "8ef171fd1eb62d168defe4a2d7115393230314d1"; 189 + sha256 = "sha256:1dz55mdmj68kmllih7ab70nmp0mwzqp9lh3im7kcjfmc1r64irdv"; 190 + # date = 2021-03-27T09:10:00+00:00; 193 191 }; 194 192 195 193 packageName = "nyxt"; 196 - 197 - asdFilesToKeep = [ "nyxt.asd" "nyxt-ext.asd" ]; 198 194 199 195 propagatedBuildInputs = [ 200 196 pkgs.libressl.out
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/_3bmd-ext-code-blocks.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''_3bmd-ext-code-blocks''; 4 - version = ''3bmd-20201220-git''; 4 + baseName = "_3bmd-ext-code-blocks"; 5 + version = "3bmd-20201220-git"; 5 6 6 - description = ''extension to 3bmd implementing github style ``` delimited code blocks, with support for syntax highlighting using colorize, pygments, or chroma''; 7 + description = "extension to 3bmd implementing github style ``` delimited code blocks, with support for syntax highlighting using colorize, pygments, or chroma"; 7 8 8 9 deps = [ args."_3bmd" args."alexandria" args."colorize" args."esrap" args."html-encode" args."split-sequence" args."trivial-with-current-source-form" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/3bmd/2020-12-20/3bmd-20201220-git.tgz''; 12 - sha256 = ''0hcx8p8la3fmwhj8ddqik7bwrn9rvf5mcv6m77glimwckh51na71''; 12 + url = "http://beta.quicklisp.org/archive/3bmd/2020-12-20/3bmd-20201220-git.tgz"; 13 + sha256 = "0hcx8p8la3fmwhj8ddqik7bwrn9rvf5mcv6m77glimwckh51na71"; 13 14 }; 14 15 15 16 packageName = "3bmd-ext-code-blocks";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/_3bmd.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''_3bmd''; 4 - version = ''20201220-git''; 4 + baseName = "_3bmd"; 5 + version = "20201220-git"; 5 6 6 - description = ''markdown processor in CL using esrap parser.''; 7 + description = "markdown processor in CL using esrap parser."; 7 8 8 9 deps = [ args."alexandria" args."esrap" args."split-sequence" args."trivial-with-current-source-form" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/3bmd/2020-12-20/3bmd-20201220-git.tgz''; 12 - sha256 = ''0hcx8p8la3fmwhj8ddqik7bwrn9rvf5mcv6m77glimwckh51na71''; 12 + url = "http://beta.quicklisp.org/archive/3bmd/2020-12-20/3bmd-20201220-git.tgz"; 13 + sha256 = "0hcx8p8la3fmwhj8ddqik7bwrn9rvf5mcv6m77glimwckh51na71"; 13 14 }; 14 15 15 16 packageName = "3bmd";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/access.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''access''; 4 - version = ''20210124-git''; 4 + baseName = "access"; 5 + version = "20210124-git"; 5 6 6 7 parasites = [ "access-test" ]; 7 8 8 - description = ''A library providing functions that unify data-structure access for Common Lisp: 9 - access and (setf access)''; 9 + description = "A library providing functions that unify data-structure access for Common Lisp: 10 + access and (setf access)"; 10 11 11 12 deps = [ args."alexandria" args."anaphora" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" ]; 12 13 13 14 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/access/2021-01-24/access-20210124-git.tgz''; 15 - sha256 = ''1n4j15v1ikspchcbb0bn15kk3lh78f6bxk56cs4arimm8bisyqlq''; 15 + url = "http://beta.quicklisp.org/archive/access/2021-01-24/access-20210124-git.tgz"; 16 + sha256 = "1n4j15v1ikspchcbb0bn15kk3lh78f6bxk56cs4arimm8bisyqlq"; 16 17 }; 17 18 18 19 packageName = "access";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/acclimation.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''acclimation''; 4 - version = ''20200925-git''; 4 + baseName = "acclimation"; 5 + version = "20200925-git"; 5 6 6 - description = ''Library supporting internationalization''; 7 + description = "Library supporting internationalization"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/acclimation/2020-09-25/acclimation-20200925-git.tgz''; 12 - sha256 = ''11vw1h5zxicj5qxb1smiyjxafw8xk0isnzcf5g0lqis3y9ssqxbw''; 12 + url = "http://beta.quicklisp.org/archive/acclimation/2020-09-25/acclimation-20200925-git.tgz"; 13 + sha256 = "11vw1h5zxicj5qxb1smiyjxafw8xk0isnzcf5g0lqis3y9ssqxbw"; 13 14 }; 14 15 15 16 packageName = "acclimation";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/alexandria.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''alexandria''; 4 - version = ''20200925-git''; 4 + baseName = "alexandria"; 5 + version = "20200925-git"; 5 6 6 - description = ''Alexandria is a collection of portable public domain utilities.''; 7 + description = "Alexandria is a collection of portable public domain utilities."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/alexandria/2020-09-25/alexandria-20200925-git.tgz''; 12 - sha256 = ''1cpvnzfs807ah07hrk8kplim6ryzqs4r35ym03cpky5xdl8c89fl''; 12 + url = "http://beta.quicklisp.org/archive/alexandria/2020-09-25/alexandria-20200925-git.tgz"; 13 + sha256 = "1cpvnzfs807ah07hrk8kplim6ryzqs4r35ym03cpky5xdl8c89fl"; 13 14 }; 14 15 15 16 packageName = "alexandria";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/anaphora.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''anaphora''; 4 - version = ''20210124-git''; 4 + baseName = "anaphora"; 5 + version = "20210124-git"; 5 6 6 7 parasites = [ "anaphora/test" ]; 7 8 8 - description = ''The Anaphoric Macro Package from Hell''; 9 + description = "The Anaphoric Macro Package from Hell"; 9 10 10 11 deps = [ args."rt" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/anaphora/2021-01-24/anaphora-20210124-git.tgz''; 14 - sha256 = ''0b4xwrnv007sfcqkxkarrbf99v3md8h199z1z69r4vx7r5pq2i4v''; 14 + url = "http://beta.quicklisp.org/archive/anaphora/2021-01-24/anaphora-20210124-git.tgz"; 15 + sha256 = "0b4xwrnv007sfcqkxkarrbf99v3md8h199z1z69r4vx7r5pq2i4v"; 15 16 }; 16 17 17 18 packageName = "anaphora";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/arnesi.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''arnesi''; 4 - version = ''20170403-git''; 4 + baseName = "arnesi"; 5 + version = "20170403-git"; 5 6 6 7 parasites = [ "arnesi/cl-ppcre-extras" "arnesi/slime-extras" ]; 7 8 8 - description = ''A bag-of-tools utilities library used to aid in implementing the bese.it toolkit''; 9 + description = "A bag-of-tools utilities library used to aid in implementing the bese.it toolkit"; 9 10 10 11 deps = [ args."alexandria" args."cl-ppcre" args."closer-mop" args."collectors" args."iterate" args."swank" args."symbol-munger" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/arnesi/2017-04-03/arnesi-20170403-git.tgz''; 14 - sha256 = ''01kirjpgv5pgbcdxjrnw3ld4jw7wrqm3rgqnxwac4gxaphr2s6q4''; 14 + url = "http://beta.quicklisp.org/archive/arnesi/2017-04-03/arnesi-20170403-git.tgz"; 15 + sha256 = "01kirjpgv5pgbcdxjrnw3ld4jw7wrqm3rgqnxwac4gxaphr2s6q4"; 15 16 }; 16 17 17 18 packageName = "arnesi";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/array-utils.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''array-utils''; 4 - version = ''20201220-git''; 4 + baseName = "array-utils"; 5 + version = "20201220-git"; 5 6 6 - description = ''A few utilities for working with arrays.''; 7 + description = "A few utilities for working with arrays."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/array-utils/2020-12-20/array-utils-20201220-git.tgz''; 12 - sha256 = ''11y6k8gzzcj00jyccg2k9nh6rvivcvh23z4yzjfly7adygd3n717''; 12 + url = "http://beta.quicklisp.org/archive/array-utils/2020-12-20/array-utils-20201220-git.tgz"; 13 + sha256 = "11y6k8gzzcj00jyccg2k9nh6rvivcvh23z4yzjfly7adygd3n717"; 13 14 }; 14 15 15 16 packageName = "array-utils";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/asdf-package-system.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''asdf-package-system''; 4 - version = ''20150608-git''; 4 + baseName = "asdf-package-system"; 5 + version = "20150608-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/asdf-package-system/2015-06-08/asdf-package-system-20150608-git.tgz''; 12 - sha256 = ''17lfwfc15hcag8a2jsaxkx42wmz2mwkvxf6vb2h9cim7dwsnyy29''; 12 + url = "http://beta.quicklisp.org/archive/asdf-package-system/2015-06-08/asdf-package-system-20150608-git.tgz"; 13 + sha256 = "17lfwfc15hcag8a2jsaxkx42wmz2mwkvxf6vb2h9cim7dwsnyy29"; 13 14 }; 14 15 15 16 packageName = "asdf-package-system";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/asdf-system-connections.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''asdf-system-connections''; 4 - version = ''20170124-git''; 4 + baseName = "asdf-system-connections"; 5 + version = "20170124-git"; 5 6 6 - description = ''Allows for ASDF system to be connected so that auto-loading may occur.''; 7 + description = "Allows for ASDF system to be connected so that auto-loading may occur."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/asdf-system-connections/2017-01-24/asdf-system-connections-20170124-git.tgz''; 12 - sha256 = ''0h8237bq3niw6glcsps77n1ykcmc5bjkcrbjyxjgkmcb1c5kwwpq''; 12 + url = "http://beta.quicklisp.org/archive/asdf-system-connections/2017-01-24/asdf-system-connections-20170124-git.tgz"; 13 + sha256 = "0h8237bq3niw6glcsps77n1ykcmc5bjkcrbjyxjgkmcb1c5kwwpq"; 13 14 }; 14 15 15 16 packageName = "asdf-system-connections";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/babel.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''babel''; 4 - version = ''20200925-git''; 4 + baseName = "babel"; 5 + version = "20200925-git"; 5 6 6 - description = ''Babel, a charset conversion library.''; 7 + description = "Babel, a charset conversion library."; 7 8 8 9 deps = [ args."alexandria" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/babel/2020-09-25/babel-20200925-git.tgz''; 12 - sha256 = ''1hpjm2whw7zla9igzj50y3nibii0mfg2a6y6nslaf5vpkni88jfi''; 12 + url = "http://beta.quicklisp.org/archive/babel/2020-09-25/babel-20200925-git.tgz"; 13 + sha256 = "1hpjm2whw7zla9igzj50y3nibii0mfg2a6y6nslaf5vpkni88jfi"; 13 14 }; 14 15 15 16 packageName = "babel";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/blackbird.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''blackbird''; 4 - version = ''20160531-git''; 4 + baseName = "blackbird"; 5 + version = "20160531-git"; 5 6 6 - description = ''A promise implementation for Common Lisp.''; 7 + description = "A promise implementation for Common Lisp."; 7 8 8 9 deps = [ args."vom" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/blackbird/2016-05-31/blackbird-20160531-git.tgz''; 12 - sha256 = ''0l053fb5fdz1q6dyfgys6nmbairc3aig4wjl5abpf8b1paf7gzq9''; 12 + url = "http://beta.quicklisp.org/archive/blackbird/2016-05-31/blackbird-20160531-git.tgz"; 13 + sha256 = "0l053fb5fdz1q6dyfgys6nmbairc3aig4wjl5abpf8b1paf7gzq9"; 13 14 }; 14 15 15 16 packageName = "blackbird";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/bordeaux-threads.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''bordeaux-threads''; 4 - version = ''v0.8.8''; 4 + baseName = "bordeaux-threads"; 5 + version = "v0.8.8"; 5 6 6 7 parasites = [ "bordeaux-threads/test" ]; 7 8 8 - description = ''Bordeaux Threads makes writing portable multi-threaded apps simple.''; 9 + description = "Bordeaux Threads makes writing portable multi-threaded apps simple."; 9 10 10 11 deps = [ args."alexandria" args."fiveam" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/bordeaux-threads/2020-06-10/bordeaux-threads-v0.8.8.tgz''; 14 - sha256 = ''1ppb7lvr796k1j4hi0jnp717v9zxy6vq4f5cyzgn7svg1ic6l0pp''; 14 + url = "http://beta.quicklisp.org/archive/bordeaux-threads/2020-06-10/bordeaux-threads-v0.8.8.tgz"; 15 + sha256 = "1ppb7lvr796k1j4hi0jnp717v9zxy6vq4f5cyzgn7svg1ic6l0pp"; 15 16 }; 16 17 17 18 packageName = "bordeaux-threads";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/buildnode-xhtml.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''buildnode-xhtml''; 4 - version = ''buildnode-20170403-git''; 4 + baseName = "buildnode-xhtml"; 5 + version = "buildnode-20170403-git"; 5 6 6 - description = ''Tool for building up an xml dom of an excel spreadsheet nicely.''; 7 + description = "Tool for building up an xml dom of an excel spreadsheet nicely."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."buildnode" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."closure-common" args."closure-html" args."collectors" args."cxml" args."flexi-streams" args."iterate" args."named-readtables" args."puri" args."split-sequence" args."swank" args."symbol-munger" args."trivial-features" args."trivial-gray-streams" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz''; 12 - sha256 = ''1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6''; 12 + url = "http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz"; 13 + sha256 = "1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6"; 13 14 }; 14 15 15 16 packageName = "buildnode-xhtml";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/buildnode.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''buildnode''; 4 - version = ''20170403-git''; 4 + baseName = "buildnode"; 5 + version = "20170403-git"; 5 6 6 7 parasites = [ "buildnode-test" ]; 7 8 8 - description = ''Tool for building up an xml dom nicely.''; 9 + description = "Tool for building up an xml dom nicely."; 9 10 10 11 deps = [ args."alexandria" args."babel" args."buildnode-xhtml" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."closure-common" args."closure-html" args."collectors" args."cxml" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" args."puri" args."split-sequence" args."swank" args."symbol-munger" args."trivial-features" args."trivial-gray-streams" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz''; 14 - sha256 = ''1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6''; 14 + url = "http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz"; 15 + sha256 = "1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6"; 15 16 }; 16 17 17 18 packageName = "buildnode";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/calispel.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''calispel''; 4 - version = ''20170830-git''; 4 + baseName = "calispel"; 5 + version = "20170830-git"; 5 6 6 7 parasites = [ "calispel-test" ]; 7 8 8 - description = ''Thread-safe message-passing channels, in the style of 9 - the occam programming language.''; 9 + description = "Thread-safe message-passing channels, in the style of 10 + the occam programming language."; 10 11 11 12 deps = [ args."alexandria" args."bordeaux-threads" args."eager-future2" args."jpl-queues" args."jpl-util" ]; 12 13 13 14 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/calispel/2017-08-30/calispel-20170830-git.tgz''; 15 - sha256 = ''0qwmzmyh63jlw5bdv4wf458n1dz9k77gd5b4ix1kd6xrzx247k7i''; 15 + url = "http://beta.quicklisp.org/archive/calispel/2017-08-30/calispel-20170830-git.tgz"; 16 + sha256 = "0qwmzmyh63jlw5bdv4wf458n1dz9k77gd5b4ix1kd6xrzx247k7i"; 16 17 }; 17 18 18 19 packageName = "calispel";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/caveman.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''caveman''; 4 - version = ''20200325-git''; 4 + baseName = "caveman"; 5 + version = "20200325-git"; 5 6 6 - description = ''Web Application Framework for Common Lisp''; 7 + description = "Web Application Framework for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."anaphora" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."chipz" args."chunga" args."circular-streams" args."cl_plus_ssl" args."cl-annot" args."cl-ansi-text" args."cl-base64" args."cl-colors" args."cl-colors2" args."cl-cookie" args."cl-emb" args."cl-fad" args."cl-ppcre" args."cl-project" args."cl-reexport" args."cl-syntax" args."cl-syntax-annot" args."cl-utilities" args."clack" args."clack-handler-hunchentoot" args."clack-socket" args."clack-test" args."clack-v1-compat" args."dexador" args."dissect" args."do-urlencode" args."fast-http" args."fast-io" args."flexi-streams" args."http-body" args."hunchentoot" args."ironclad" args."jonathan" args."lack" args."lack-component" args."lack-middleware-backtrace" args."lack-util" args."let-plus" args."local-time" args."map-set" args."marshal" args."md5" args."myway" args."named-readtables" args."proc-parse" args."prove" args."quri" args."rfc2388" args."rove" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."trivial-mimes" args."trivial-types" args."usocket" args."xsubseq" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/caveman/2020-03-25/caveman-20200325-git.tgz''; 12 - sha256 = ''0s134lamlyll4ad0380rj0hkiy9gakly7cb6sjr1yg2yd6ydz1py''; 12 + url = "http://beta.quicklisp.org/archive/caveman/2020-03-25/caveman-20200325-git.tgz"; 13 + sha256 = "0s134lamlyll4ad0380rj0hkiy9gakly7cb6sjr1yg2yd6ydz1py"; 13 14 }; 14 15 15 16 packageName = "caveman";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-grovel.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cffi-grovel''; 4 - version = ''cffi_0.23.0''; 4 + baseName = "cffi-grovel"; 5 + version = "cffi_0.23.0"; 5 6 6 - description = ''The CFFI Groveller''; 7 + description = "The CFFI Groveller"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-toolchain" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz''; 12 - sha256 = ''1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck''; 12 + url = "http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz"; 13 + sha256 = "1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck"; 13 14 }; 14 15 15 16 packageName = "cffi-grovel";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-toolchain.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cffi-toolchain''; 4 - version = ''cffi_0.23.0''; 4 + baseName = "cffi-toolchain"; 5 + version = "cffi_0.23.0"; 5 6 6 - description = ''The CFFI toolchain''; 7 + description = "The CFFI toolchain"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz''; 12 - sha256 = ''1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck''; 12 + url = "http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz"; 13 + sha256 = "1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck"; 13 14 }; 14 15 15 16 packageName = "cffi-toolchain";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-uffi-compat.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cffi-uffi-compat''; 4 - version = ''cffi_0.23.0''; 4 + baseName = "cffi-uffi-compat"; 5 + version = "cffi_0.23.0"; 5 6 6 - description = ''UFFI Compatibility Layer for CFFI''; 7 + description = "UFFI Compatibility Layer for CFFI"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz''; 12 - sha256 = ''1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck''; 12 + url = "http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz"; 13 + sha256 = "1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck"; 13 14 }; 14 15 15 16 packageName = "cffi-uffi-compat";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cffi''; 4 - version = ''cffi_0.23.0''; 4 + baseName = "cffi"; 5 + version = "cffi_0.23.0"; 5 6 6 7 parasites = [ "cffi/c2ffi" "cffi/c2ffi-generator" ]; 7 8 8 - description = ''The Common Foreign Function Interface''; 9 + description = "The Common Foreign Function Interface"; 9 10 10 11 deps = [ args."alexandria" args."babel" args."cl-json" args."cl-ppcre" args."trivial-features" args."uiop" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz''; 14 - sha256 = ''1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck''; 14 + url = "http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz"; 15 + sha256 = "1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck"; 15 16 }; 16 17 17 18 packageName = "cffi";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/chanl.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''chanl''; 4 - version = ''20210124-git''; 4 + baseName = "chanl"; 5 + version = "20210124-git"; 5 6 6 7 parasites = [ "chanl/examples" "chanl/tests" ]; 7 8 8 - description = ''Communicating Sequential Process support for Common Lisp''; 9 + description = "Communicating Sequential Process support for Common Lisp"; 9 10 10 11 deps = [ args."alexandria" args."bordeaux-threads" args."fiveam" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/chanl/2021-01-24/chanl-20210124-git.tgz''; 14 - sha256 = ''1lb0k5nh51f8hskpm1pma5ds4lk1zpbk9czpw9bk8hdykr178mzc''; 14 + url = "http://beta.quicklisp.org/archive/chanl/2021-01-24/chanl-20210124-git.tgz"; 15 + sha256 = "1lb0k5nh51f8hskpm1pma5ds4lk1zpbk9czpw9bk8hdykr178mzc"; 15 16 }; 16 17 17 18 packageName = "chanl";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/chipz.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''chipz''; 4 - version = ''20190202-git''; 4 + baseName = "chipz"; 5 + version = "20190202-git"; 5 6 6 - description = ''A library for decompressing deflate, zlib, and gzip data''; 7 + description = "A library for decompressing deflate, zlib, and gzip data"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/chipz/2019-02-02/chipz-20190202-git.tgz''; 12 - sha256 = ''1vk8nml2kvkpwydcnm49gz2j9flvl8676kbvci5qa7qm286dhn5a''; 12 + url = "http://beta.quicklisp.org/archive/chipz/2019-02-02/chipz-20190202-git.tgz"; 13 + sha256 = "1vk8nml2kvkpwydcnm49gz2j9flvl8676kbvci5qa7qm286dhn5a"; 13 14 }; 14 15 15 16 packageName = "chipz";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/chunga.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''chunga''; 4 - version = ''20200427-git''; 4 + baseName = "chunga"; 5 + version = "20200427-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."trivial-gray-streams" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/chunga/2020-04-27/chunga-20200427-git.tgz''; 12 - sha256 = ''0p6dlnan6raincd682brcjbklyvmkfkhz0yzp2bkfw67s9615bkk''; 12 + url = "http://beta.quicklisp.org/archive/chunga/2020-04-27/chunga-20200427-git.tgz"; 13 + sha256 = "0p6dlnan6raincd682brcjbklyvmkfkhz0yzp2bkfw67s9615bkk"; 13 14 }; 14 15 15 16 packageName = "chunga";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/circular-streams.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''circular-streams''; 4 - version = ''20161204-git''; 4 + baseName = "circular-streams"; 5 + version = "20161204-git"; 5 6 6 - description = ''Circularly readable streams for Common Lisp''; 7 + description = "Circularly readable streams for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/circular-streams/2016-12-04/circular-streams-20161204-git.tgz''; 12 - sha256 = ''1i29b9sciqs5x59hlkdj2r4siyqgrwj5hb4lnc80jgfqvzbq4128''; 12 + url = "http://beta.quicklisp.org/archive/circular-streams/2016-12-04/circular-streams-20161204-git.tgz"; 13 + sha256 = "1i29b9sciqs5x59hlkdj2r4siyqgrwj5hb4lnc80jgfqvzbq4128"; 13 14 }; 14 15 15 16 packageName = "circular-streams";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-aa.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-aa''; 4 - version = ''cl-vectors-20180228-git''; 4 + baseName = "cl-aa"; 5 + version = "cl-vectors-20180228-git"; 5 6 6 - description = ''cl-aa: polygon rasterizer''; 7 + description = "cl-aa: polygon rasterizer"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz''; 12 - sha256 = ''0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly''; 12 + url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; 13 + sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly"; 13 14 }; 14 15 15 16 packageName = "cl-aa";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-annot.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-annot''; 4 - version = ''20150608-git''; 4 + baseName = "cl-annot"; 5 + version = "20150608-git"; 5 6 6 - description = ''Python-like Annotation Syntax for Common Lisp''; 7 + description = "Python-like Annotation Syntax for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-annot/2015-06-08/cl-annot-20150608-git.tgz''; 12 - sha256 = ''0ixsp20rk498phv3iivipn3qbw7a7x260x63hc6kpv2s746lpdg3''; 12 + url = "http://beta.quicklisp.org/archive/cl-annot/2015-06-08/cl-annot-20150608-git.tgz"; 13 + sha256 = "0ixsp20rk498phv3iivipn3qbw7a7x260x63hc6kpv2s746lpdg3"; 13 14 }; 14 15 15 16 packageName = "cl-annot";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-anonfun.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-anonfun''; 4 - version = ''20111203-git''; 4 + baseName = "cl-anonfun"; 5 + version = "20111203-git"; 5 6 6 - description = ''Anonymous function helpers for Common Lisp''; 7 + description = "Anonymous function helpers for Common Lisp"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-anonfun/2011-12-03/cl-anonfun-20111203-git.tgz''; 12 - sha256 = ''16r3v3yba41smkqpz0qvzabkxashl39klfb6vxhzbly696x87p1m''; 12 + url = "http://beta.quicklisp.org/archive/cl-anonfun/2011-12-03/cl-anonfun-20111203-git.tgz"; 13 + sha256 = "16r3v3yba41smkqpz0qvzabkxashl39klfb6vxhzbly696x87p1m"; 13 14 }; 14 15 15 16 packageName = "cl-anonfun";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ansi-text.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-ansi-text''; 4 - version = ''20210124-git''; 4 + baseName = "cl-ansi-text"; 5 + version = "20210124-git"; 5 6 6 - description = ''ANSI control string characters, focused on color''; 7 + description = "ANSI control string characters, focused on color"; 7 8 8 9 deps = [ args."alexandria" args."cl-colors2" args."cl-ppcre" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-ansi-text/2021-01-24/cl-ansi-text-20210124-git.tgz''; 12 - sha256 = ''1l7slqk26xznfyn0zpp5l32v6xfpj4qj42h4x4ds5s1yncq306cm''; 12 + url = "http://beta.quicklisp.org/archive/cl-ansi-text/2021-01-24/cl-ansi-text-20210124-git.tgz"; 13 + sha256 = "1l7slqk26xznfyn0zpp5l32v6xfpj4qj42h4x4ds5s1yncq306cm"; 13 14 }; 14 15 15 16 packageName = "cl-ansi-text";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async-repl.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-async-repl''; 4 - version = ''cl-async-20210228-git''; 4 + baseName = "cl-async-repl"; 5 + version = "cl-async-20210228-git"; 5 6 6 - description = ''REPL integration for CL-ASYNC.''; 7 + description = "REPL integration for CL-ASYNC."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-async" args."cl-async-base" args."cl-async-util" args."cl-libuv" args."cl-ppcre" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."vom" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz''; 12 - sha256 = ''08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4''; 12 + url = "http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz"; 13 + sha256 = "08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4"; 13 14 }; 14 15 15 16 packageName = "cl-async-repl";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async-ssl.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-async-ssl''; 4 - version = ''cl-async-20210228-git''; 4 + baseName = "cl-async-ssl"; 5 + version = "cl-async-20210228-git"; 5 6 6 - description = ''SSL Wrapper around cl-async socket implementation.''; 7 + description = "SSL Wrapper around cl-async socket implementation."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-async" args."cl-async-base" args."cl-async-util" args."cl-libuv" args."cl-ppcre" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."vom" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz''; 12 - sha256 = ''08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4''; 12 + url = "http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz"; 13 + sha256 = "08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4"; 13 14 }; 14 15 15 16 packageName = "cl-async-ssl";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-async''; 4 - version = ''20210228-git''; 4 + baseName = "cl-async"; 5 + version = "20210228-git"; 5 6 6 7 parasites = [ "cl-async-base" "cl-async-util" ]; 7 8 8 - description = ''Asynchronous operations for Common Lisp.''; 9 + description = "Asynchronous operations for Common Lisp."; 9 10 10 11 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-libuv" args."cl-ppcre" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."uiop" args."vom" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz''; 14 - sha256 = ''08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4''; 14 + url = "http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz"; 15 + sha256 = "08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4"; 15 16 }; 16 17 17 18 packageName = "cl-async";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-base64.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-base64''; 4 - version = ''20201016-git''; 4 + baseName = "cl-base64"; 5 + version = "20201016-git"; 5 6 6 7 parasites = [ "cl-base64/test" ]; 7 8 8 - description = ''Base64 encoding and decoding with URI support.''; 9 + description = "Base64 encoding and decoding with URI support."; 9 10 10 11 deps = [ args."kmrcl" args."ptester" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-base64/2020-10-16/cl-base64-20201016-git.tgz''; 14 - sha256 = ''1wd2sgvfrivrbzlhs1vgj762jqz7sk171ssli6gl1kfwbnphzx9z''; 14 + url = "http://beta.quicklisp.org/archive/cl-base64/2020-10-16/cl-base64-20201016-git.tgz"; 15 + sha256 = "1wd2sgvfrivrbzlhs1vgj762jqz7sk171ssli6gl1kfwbnphzx9z"; 15 16 }; 16 17 17 18 packageName = "cl-base64";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-cairo.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-cffi-gtk-cairo''; 4 - version = ''cl-cffi-gtk-20201220-git''; 4 + baseName = "cl-cffi-gtk-cairo"; 5 + version = "cl-cffi-gtk-20201220-git"; 5 6 6 - description = ''A Lisp binding to Cairo''; 7 + description = "A Lisp binding to Cairo"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."iterate" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz''; 12 - sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1''; 12 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 + sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 13 14 }; 14 15 15 16 packageName = "cl-cffi-gtk-cairo";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-gdk-pixbuf.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-cffi-gtk-gdk-pixbuf''; 4 - version = ''cl-cffi-gtk-20201220-git''; 4 + baseName = "cl-cffi-gtk-gdk-pixbuf"; 5 + version = "cl-cffi-gtk-20201220-git"; 5 6 6 - description = ''A Lisp binding to GDK Pixbuf 2''; 7 + description = "A Lisp binding to GDK Pixbuf 2"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz''; 12 - sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1''; 12 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 + sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 13 14 }; 14 15 15 16 packageName = "cl-cffi-gtk-gdk-pixbuf";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-gdk.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-cffi-gtk-gdk''; 4 - version = ''cl-cffi-gtk-20201220-git''; 4 + baseName = "cl-cffi-gtk-gdk"; 5 + version = "cl-cffi-gtk-20201220-git"; 5 6 6 - description = ''A Lisp binding to GDK 3''; 7 + description = "A Lisp binding to GDK 3"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-cairo" args."cl-cffi-gtk-gdk-pixbuf" args."cl-cffi-gtk-gio" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."cl-cffi-gtk-pango" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz''; 12 - sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1''; 12 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 + sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 13 14 }; 14 15 15 16 packageName = "cl-cffi-gtk-gdk";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-gio.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-cffi-gtk-gio''; 4 - version = ''cl-cffi-gtk-20201220-git''; 4 + baseName = "cl-cffi-gtk-gio"; 5 + version = "cl-cffi-gtk-20201220-git"; 5 6 6 - description = ''A Lisp binding to GIO 2''; 7 + description = "A Lisp binding to GIO 2"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz''; 12 - sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1''; 12 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 + sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 13 14 }; 14 15 15 16 packageName = "cl-cffi-gtk-gio";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-glib.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-cffi-gtk-glib''; 4 - version = ''cl-cffi-gtk-20201220-git''; 4 + baseName = "cl-cffi-gtk-glib"; 5 + version = "cl-cffi-gtk-20201220-git"; 5 6 6 - description = ''A Lisp binding to GLib 2''; 7 + description = "A Lisp binding to GLib 2"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."iterate" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz''; 12 - sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1''; 12 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 + sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 13 14 }; 14 15 15 16 packageName = "cl-cffi-gtk-glib";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-gobject.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-cffi-gtk-gobject''; 4 - version = ''cl-cffi-gtk-20201220-git''; 4 + baseName = "cl-cffi-gtk-gobject"; 5 + version = "cl-cffi-gtk-20201220-git"; 5 6 6 - description = ''A Lisp binding GObject 2''; 7 + description = "A Lisp binding GObject 2"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz''; 12 - sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1''; 12 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 + sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 13 14 }; 14 15 15 16 packageName = "cl-cffi-gtk-gobject";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-pango.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-cffi-gtk-pango''; 4 - version = ''cl-cffi-gtk-20201220-git''; 4 + baseName = "cl-cffi-gtk-pango"; 5 + version = "cl-cffi-gtk-20201220-git"; 5 6 6 - description = ''A Lisp binding to Pango''; 7 + description = "A Lisp binding to Pango"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-cairo" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz''; 12 - sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1''; 12 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 + sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 13 14 }; 14 15 15 16 packageName = "cl-cffi-gtk-pango";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-cffi-gtk''; 4 - version = ''20201220-git''; 4 + baseName = "cl-cffi-gtk"; 5 + version = "20201220-git"; 5 6 6 - description = ''A Lisp binding to GTK 3''; 7 + description = "A Lisp binding to GTK 3"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-cairo" args."cl-cffi-gtk-gdk" args."cl-cffi-gtk-gdk-pixbuf" args."cl-cffi-gtk-gio" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."cl-cffi-gtk-pango" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz''; 12 - sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1''; 12 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz"; 13 + sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1"; 13 14 }; 14 15 15 16 packageName = "cl-cffi-gtk";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-change-case.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-change-case''; 4 - version = ''20210228-git''; 4 + baseName = "cl-change-case"; 5 + version = "20210228-git"; 5 6 6 7 parasites = [ "cl-change-case/test" ]; 7 8 8 - description = ''Convert strings between camelCase, param-case, PascalCase and more''; 9 + description = "Convert strings between camelCase, param-case, PascalCase and more"; 9 10 10 11 deps = [ args."cl-ppcre" args."cl-ppcre-unicode" args."cl-unicode" args."fiveam" args."flexi-streams" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-change-case/2021-02-28/cl-change-case-20210228-git.tgz''; 14 - sha256 = ''15x8zxwa3pxs02fh0qxmbvz6vi59x6ha09p5hs4rgd6axs0k4pmi''; 14 + url = "http://beta.quicklisp.org/archive/cl-change-case/2021-02-28/cl-change-case-20210228-git.tgz"; 15 + sha256 = "15x8zxwa3pxs02fh0qxmbvz6vi59x6ha09p5hs4rgd6axs0k4pmi"; 15 16 }; 16 17 17 18 packageName = "cl-change-case";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cli.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-cli''; 4 - version = ''20151218-git''; 4 + baseName = "cl-cli"; 5 + version = "20151218-git"; 5 6 6 - description = ''Command line parser''; 7 + description = "Command line parser"; 7 8 8 9 deps = [ args."split-sequence" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cli/2015-12-18/cl-cli-20151218-git.tgz''; 12 - sha256 = ''0d097wjprljghkai1yacvjqmjm1mwpa46yxbacjnwps8pqwh18ay''; 12 + url = "http://beta.quicklisp.org/archive/cl-cli/2015-12-18/cl-cli-20151218-git.tgz"; 13 + sha256 = "0d097wjprljghkai1yacvjqmjm1mwpa46yxbacjnwps8pqwh18ay"; 13 14 }; 14 15 15 16 packageName = "cl-cli";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-colors.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-colors''; 4 - version = ''20180328-git''; 4 + baseName = "cl-colors"; 5 + version = "20180328-git"; 5 6 6 7 parasites = [ "cl-colors-tests" ]; 7 8 8 - description = ''Simple color library for Common Lisp''; 9 + description = "Simple color library for Common Lisp"; 9 10 10 11 deps = [ args."alexandria" args."anaphora" args."let-plus" args."lift" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-colors/2018-03-28/cl-colors-20180328-git.tgz''; 14 - sha256 = ''0anrb3zsi03dixfsjz92y06w93kpn0d0c5142fhx72f5kafwvc4a''; 14 + url = "http://beta.quicklisp.org/archive/cl-colors/2018-03-28/cl-colors-20180328-git.tgz"; 15 + sha256 = "0anrb3zsi03dixfsjz92y06w93kpn0d0c5142fhx72f5kafwvc4a"; 15 16 }; 16 17 17 18 packageName = "cl-colors";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-colors2.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-colors2''; 4 - version = ''20200218-git''; 4 + baseName = "cl-colors2"; 5 + version = "20200218-git"; 5 6 6 7 parasites = [ "cl-colors2/tests" ]; 7 8 8 - description = ''Simple color library for Common Lisp''; 9 + description = "Simple color library for Common Lisp"; 9 10 10 11 deps = [ args."alexandria" args."cl-ppcre" args."clunit2" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-colors2/2020-02-18/cl-colors2-20200218-git.tgz''; 14 - sha256 = ''0rpf8j232qv254zhkvkz3ja20al1kswvcqhvvv0r2ag6dks56j29''; 14 + url = "http://beta.quicklisp.org/archive/cl-colors2/2020-02-18/cl-colors2-20200218-git.tgz"; 15 + sha256 = "0rpf8j232qv254zhkvkz3ja20al1kswvcqhvvv0r2ag6dks56j29"; 15 16 }; 16 17 17 18 packageName = "cl-colors2";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-containers.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-containers''; 4 - version = ''20200427-git''; 4 + baseName = "cl-containers"; 5 + version = "20200427-git"; 5 6 6 7 parasites = [ "cl-containers/with-moptilities" "cl-containers/with-utilities" ]; 7 8 8 - description = ''A generic container library for Common Lisp''; 9 + description = "A generic container library for Common Lisp"; 9 10 10 11 deps = [ args."asdf-system-connections" args."metatilities-base" args."moptilities" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-containers/2020-04-27/cl-containers-20200427-git.tgz''; 14 - sha256 = ''0llaymnlss0dhwyqgr2s38w1hjb2as1x1nn57qcvdphnm7qs50fy''; 14 + url = "http://beta.quicklisp.org/archive/cl-containers/2020-04-27/cl-containers-20200427-git.tgz"; 15 + sha256 = "0llaymnlss0dhwyqgr2s38w1hjb2as1x1nn57qcvdphnm7qs50fy"; 15 16 }; 16 17 17 18 packageName = "cl-containers";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cookie.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-cookie''; 4 - version = ''20191007-git''; 4 + baseName = "cl-cookie"; 5 + version = "20191007-git"; 5 6 6 - description = ''HTTP cookie manager''; 7 + description = "HTTP cookie manager"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cl-ppcre" args."cl-utilities" args."local-time" args."proc-parse" args."quri" args."split-sequence" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cookie/2019-10-07/cl-cookie-20191007-git.tgz''; 12 - sha256 = ''1xcb69n3qfp37nwj0mj2whf3yj5xfsgh9sdw6c64gxqkiiq9nfhh''; 12 + url = "http://beta.quicklisp.org/archive/cl-cookie/2019-10-07/cl-cookie-20191007-git.tgz"; 13 + sha256 = "1xcb69n3qfp37nwj0mj2whf3yj5xfsgh9sdw6c64gxqkiiq9nfhh"; 13 14 }; 14 15 15 16 packageName = "cl-cookie";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-css.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-css''; 4 - version = ''20140914-git''; 4 + baseName = "cl-css"; 5 + version = "20140914-git"; 5 6 6 - description = ''Simple inline CSS generator''; 7 + description = "Simple inline CSS generator"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-css/2014-09-14/cl-css-20140914-git.tgz''; 12 - sha256 = ''16zjm10qqyv5v0ysvicbiscplrwlfr0assbf01gp73j1m108rn7n''; 12 + url = "http://beta.quicklisp.org/archive/cl-css/2014-09-14/cl-css-20140914-git.tgz"; 13 + sha256 = "16zjm10qqyv5v0ysvicbiscplrwlfr0assbf01gp73j1m108rn7n"; 13 14 }; 14 15 15 16 packageName = "cl-css";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-csv.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-csv''; 4 - version = ''20201016-git''; 4 + baseName = "cl-csv"; 5 + version = "20201016-git"; 5 6 6 7 parasites = [ "cl-csv/speed-test" "cl-csv/test" ]; 7 8 8 - description = ''Facilities for reading and writing CSV format files''; 9 + description = "Facilities for reading and writing CSV format files"; 9 10 10 11 deps = [ args."alexandria" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-csv/2020-10-16/cl-csv-20201016-git.tgz''; 14 - sha256 = ''1w12ads26v5sgcmy6rjm6ys9lml7l6rz86w776s2an2maci9kzmf''; 14 + url = "http://beta.quicklisp.org/archive/cl-csv/2020-10-16/cl-csv-20201016-git.tgz"; 15 + sha256 = "1w12ads26v5sgcmy6rjm6ys9lml7l6rz86w776s2an2maci9kzmf"; 15 16 }; 16 17 17 18 packageName = "cl-csv";
+26
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-custom-hash-table.nix
··· 1 + /* Generated file. */ 2 + args @ { fetchurl, ... }: 3 + rec { 4 + baseName = "cl-custom-hash-table"; 5 + version = "20201220-git"; 6 + 7 + description = "System lacks description"; 8 + 9 + deps = [ ]; 10 + 11 + src = fetchurl { 12 + url = "http://beta.quicklisp.org/archive/cl-custom-hash-table/2020-12-20/cl-custom-hash-table-20201220-git.tgz"; 13 + sha256 = "1id16p7vdcgxzvrgk8h6fqi284hgd8cilbnbgsbrbd70n7nj8jg3"; 14 + }; 15 + 16 + packageName = "cl-custom-hash-table"; 17 + 18 + asdFilesToKeep = ["cl-custom-hash-table.asd"]; 19 + overrides = x: x; 20 + } 21 + /* (SYSTEM cl-custom-hash-table DESCRIPTION System lacks description SHA256 22 + 1id16p7vdcgxzvrgk8h6fqi284hgd8cilbnbgsbrbd70n7nj8jg3 URL 23 + http://beta.quicklisp.org/archive/cl-custom-hash-table/2020-12-20/cl-custom-hash-table-20201220-git.tgz 24 + MD5 bd0f2f4a8e808911133af19c03e5c511 NAME cl-custom-hash-table FILENAME 25 + cl-custom-hash-table DEPS NIL DEPENDENCIES NIL VERSION 20201220-git 26 + SIBLINGS (cl-custom-hash-table-test) PARASITES NIL) */
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-dbi.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-dbi''; 4 - version = ''20210228-git''; 4 + baseName = "cl-dbi"; 5 + version = "20210228-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."closer-mop" args."dbi" args."split-sequence" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz''; 12 - sha256 = ''0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk''; 12 + url = "http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz"; 13 + sha256 = "0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk"; 13 14 }; 14 15 15 16 packageName = "cl-dbi";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-difflib.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-difflib''; 4 - version = ''20130128-git''; 4 + baseName = "cl-difflib"; 5 + version = "20130128-git"; 5 6 6 - description = ''A Lisp library for computing differences between sequences.''; 7 + description = "A Lisp library for computing differences between sequences."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-difflib/2013-01-28/cl-difflib-20130128-git.tgz''; 12 - sha256 = ''1bgb0nmm93x90c7v1q1ah1v5dfm2anhkim7nh88sg7kg50y4ksm6''; 12 + url = "http://beta.quicklisp.org/archive/cl-difflib/2013-01-28/cl-difflib-20130128-git.tgz"; 13 + sha256 = "1bgb0nmm93x90c7v1q1ah1v5dfm2anhkim7nh88sg7kg50y4ksm6"; 13 14 }; 14 15 15 16 packageName = "cl-difflib";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-dot.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-dot''; 4 - version = ''20200925-git''; 4 + baseName = "cl-dot"; 5 + version = "20200925-git"; 5 6 6 - description = ''Generate Dot Output from Arbitrary Lisp Data''; 7 + description = "Generate Dot Output from Arbitrary Lisp Data"; 7 8 8 9 deps = [ args."uiop" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-dot/2020-09-25/cl-dot-20200925-git.tgz''; 12 - sha256 = ''01vx4yzasmgswrlyagjr2cz76g906jsijdwikdf8wvxyyq77gkla''; 12 + url = "http://beta.quicklisp.org/archive/cl-dot/2020-09-25/cl-dot-20200925-git.tgz"; 13 + sha256 = "01vx4yzasmgswrlyagjr2cz76g906jsijdwikdf8wvxyyq77gkla"; 13 14 }; 14 15 15 16 packageName = "cl-dot";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-emb.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-emb''; 4 - version = ''20190521-git''; 4 + baseName = "cl-emb"; 5 + version = "20190521-git"; 5 6 6 - description = ''A templating system for Common Lisp''; 7 + description = "A templating system for Common Lisp"; 7 8 8 9 deps = [ args."cl-ppcre" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-emb/2019-05-21/cl-emb-20190521-git.tgz''; 12 - sha256 = ''1d6bi2mx1kw7an3maxjp4ldrhkwfdb58va9whxblz2xjlbykdv8d''; 12 + url = "http://beta.quicklisp.org/archive/cl-emb/2019-05-21/cl-emb-20190521-git.tgz"; 13 + sha256 = "1d6bi2mx1kw7an3maxjp4ldrhkwfdb58va9whxblz2xjlbykdv8d"; 13 14 }; 14 15 15 16 packageName = "cl-emb";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-fad.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-fad''; 4 - version = ''20210124-git''; 4 + baseName = "cl-fad"; 5 + version = "20210124-git"; 5 6 6 7 parasites = [ "cl-fad-test" ]; 7 8 8 - description = ''Portable pathname library''; 9 + description = "Portable pathname library"; 9 10 10 11 deps = [ args."alexandria" args."bordeaux-threads" args."cl-ppcre" args."unit-test" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-fad/2021-01-24/cl-fad-20210124-git.tgz''; 14 - sha256 = ''17vkvkwg4wpyny5x2nsazgpip5nxxahsjngaxjyrj5z15d4lkrm0''; 14 + url = "http://beta.quicklisp.org/archive/cl-fad/2021-01-24/cl-fad-20210124-git.tgz"; 15 + sha256 = "17vkvkwg4wpyny5x2nsazgpip5nxxahsjngaxjyrj5z15d4lkrm0"; 15 16 }; 16 17 17 18 packageName = "cl-fad";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-fuse-meta-fs.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-fuse-meta-fs''; 4 - version = ''20190710-git''; 4 + baseName = "cl-fuse-meta-fs"; 5 + version = "20190710-git"; 5 6 6 - description = ''CFFI bindings to FUSE (Filesystem in user space)''; 7 + description = "CFFI bindings to FUSE (Filesystem in user space)"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-fuse" args."cl-utilities" args."iterate" args."pcall" args."pcall-queue" args."trivial-backtrace" args."trivial-features" args."trivial-utf-8" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-fuse-meta-fs/2019-07-10/cl-fuse-meta-fs-20190710-git.tgz''; 12 - sha256 = ''1c2nyxj7q8njxydn4xiagvnb21zhb1l07q7nhfw0qs2qk6dkasq7''; 12 + url = "http://beta.quicklisp.org/archive/cl-fuse-meta-fs/2019-07-10/cl-fuse-meta-fs-20190710-git.tgz"; 13 + sha256 = "1c2nyxj7q8njxydn4xiagvnb21zhb1l07q7nhfw0qs2qk6dkasq7"; 13 14 }; 14 15 15 16 packageName = "cl-fuse-meta-fs";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-fuse.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-fuse''; 4 - version = ''20200925-git''; 4 + baseName = "cl-fuse"; 5 + version = "20200925-git"; 5 6 6 - description = ''CFFI bindings to FUSE (Filesystem in user space)''; 7 + description = "CFFI bindings to FUSE (Filesystem in user space)"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-utilities" args."iterate" args."trivial-backtrace" args."trivial-features" args."trivial-utf-8" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-fuse/2020-09-25/cl-fuse-20200925-git.tgz''; 12 - sha256 = ''1c5cn0l0md77asw804qssylcbbphw81mfpbijydd0s25q6xga7dp''; 12 + url = "http://beta.quicklisp.org/archive/cl-fuse/2020-09-25/cl-fuse-20200925-git.tgz"; 13 + sha256 = "1c5cn0l0md77asw804qssylcbbphw81mfpbijydd0s25q6xga7dp"; 13 14 }; 14 15 15 16 packageName = "cl-fuse";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-hooks.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-hooks''; 4 - version = ''architecture.hooks-20181210-git''; 4 + baseName = "cl-hooks"; 5 + version = "architecture.hooks-20181210-git"; 5 6 6 7 parasites = [ "cl-hooks/test" ]; 7 8 8 - description = ''This system provides the hooks extension point 9 - mechanism (as known, e.g., from GNU Emacs).''; 9 + description = "This system provides the hooks extension point 10 + mechanism (as known, e.g., from GNU Emacs)."; 10 11 11 12 deps = [ args."alexandria" args."anaphora" args."closer-mop" args."fiveam" args."let-plus" args."trivial-garbage" ]; 12 13 13 14 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/architecture.hooks/2018-12-10/architecture.hooks-20181210-git.tgz''; 15 - sha256 = ''04l8rjmgsd7i580rpm1wndz1jcvfqrmwllnkh3h7als3azi3q2ns''; 15 + url = "http://beta.quicklisp.org/archive/architecture.hooks/2018-12-10/architecture.hooks-20181210-git.tgz"; 16 + sha256 = "04l8rjmgsd7i580rpm1wndz1jcvfqrmwllnkh3h7als3azi3q2ns"; 16 17 }; 17 18 18 19 packageName = "cl-hooks";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-html-diff.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-html-diff''; 4 - version = ''20130128-git''; 4 + baseName = "cl-html-diff"; 5 + version = "20130128-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."cl-difflib" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-html-diff/2013-01-28/cl-html-diff-20130128-git.tgz''; 12 - sha256 = ''0dbqfgfl2qmlk91fncjj804md2crvj0bsvkdxfrsybrhn6dmikci''; 12 + url = "http://beta.quicklisp.org/archive/cl-html-diff/2013-01-28/cl-html-diff-20130128-git.tgz"; 13 + sha256 = "0dbqfgfl2qmlk91fncjj804md2crvj0bsvkdxfrsybrhn6dmikci"; 13 14 }; 14 15 15 16 packageName = "cl-html-diff";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-html-parse.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-html-parse''; 4 - version = ''20200925-git''; 4 + baseName = "cl-html-parse"; 5 + version = "20200925-git"; 5 6 6 - description = ''HTML Parser''; 7 + description = "HTML Parser"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-html-parse/2020-09-25/cl-html-parse-20200925-git.tgz''; 12 - sha256 = ''14pfd4gwjb8ywr79dqrcznw6h8a1il3g5b6cm5x9aiyr49zdv15f''; 12 + url = "http://beta.quicklisp.org/archive/cl-html-parse/2020-09-25/cl-html-parse-20200925-git.tgz"; 13 + sha256 = "14pfd4gwjb8ywr79dqrcznw6h8a1il3g5b6cm5x9aiyr49zdv15f"; 13 14 }; 14 15 15 16 packageName = "cl-html-parse";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-html5-parser.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-html5-parser''; 4 - version = ''20190521-git''; 4 + baseName = "cl-html5-parser"; 5 + version = "20190521-git"; 5 6 6 - description = ''A HTML5 parser for Common Lisp''; 7 + description = "A HTML5 parser for Common Lisp"; 7 8 8 9 deps = [ args."cl-ppcre" args."flexi-streams" args."string-case" args."trivial-gray-streams" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-html5-parser/2019-05-21/cl-html5-parser-20190521-git.tgz''; 12 - sha256 = ''055jz0yqgjncvy2dxvnwg4iwdvmfsvkch46v58nymz5gi8gaaz7p''; 12 + url = "http://beta.quicklisp.org/archive/cl-html5-parser/2019-05-21/cl-html5-parser-20190521-git.tgz"; 13 + sha256 = "055jz0yqgjncvy2dxvnwg4iwdvmfsvkch46v58nymz5gi8gaaz7p"; 13 14 }; 14 15 15 16 packageName = "cl-html5-parser";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-interpol.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-interpol''; 4 - version = ''20201220-git''; 4 + baseName = "cl-interpol"; 5 + version = "20201220-git"; 5 6 6 7 parasites = [ "cl-interpol-test" ]; 7 8 8 - description = ''System lacks description''; 9 + description = "System lacks description"; 9 10 10 11 deps = [ args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."named-readtables" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-interpol/2020-12-20/cl-interpol-20201220-git.tgz''; 14 - sha256 = ''1q3zxsbl5br08lv481jsqmq8r9yayp44x6icixcxx5sdz6fbcd3d''; 14 + url = "http://beta.quicklisp.org/archive/cl-interpol/2020-12-20/cl-interpol-20201220-git.tgz"; 15 + sha256 = "1q3zxsbl5br08lv481jsqmq8r9yayp44x6icixcxx5sdz6fbcd3d"; 15 16 }; 16 17 17 18 packageName = "cl-interpol";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-jpeg.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-jpeg''; 4 - version = ''20170630-git''; 4 + baseName = "cl-jpeg"; 5 + version = "20170630-git"; 5 6 6 - description = ''A self-contained baseline JPEG codec implementation''; 7 + description = "A self-contained baseline JPEG codec implementation"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-jpeg/2017-06-30/cl-jpeg-20170630-git.tgz''; 12 - sha256 = ''1wwzn2valhh5ka7qkmab59pb1ijagcj296553fp8z03migl0sil0''; 12 + url = "http://beta.quicklisp.org/archive/cl-jpeg/2017-06-30/cl-jpeg-20170630-git.tgz"; 13 + sha256 = "1wwzn2valhh5ka7qkmab59pb1ijagcj296553fp8z03migl0sil0"; 13 14 }; 14 15 15 16 packageName = "cl-jpeg";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-json.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-json''; 4 - version = ''20141217-git''; 4 + baseName = "cl-json"; 5 + version = "20141217-git"; 5 6 6 7 parasites = [ "cl-json.test" ]; 7 8 8 - description = ''JSON in Lisp. JSON (JavaScript Object Notation) is a lightweight data-interchange format.''; 9 + description = "JSON in Lisp. JSON (JavaScript Object Notation) is a lightweight data-interchange format."; 9 10 10 11 deps = [ args."fiveam" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-json/2014-12-17/cl-json-20141217-git.tgz''; 14 - sha256 = ''00cfppyi6njsbpv1x03jcv4zwplg0q1138174l3wjkvi3gsql17g''; 14 + url = "http://beta.quicklisp.org/archive/cl-json/2014-12-17/cl-json-20141217-git.tgz"; 15 + sha256 = "00cfppyi6njsbpv1x03jcv4zwplg0q1138174l3wjkvi3gsql17g"; 15 16 }; 16 17 17 18 packageName = "cl-json";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-l10n-cldr.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-l10n-cldr''; 4 - version = ''20120909-darcs''; 4 + baseName = "cl-l10n-cldr"; 5 + version = "20120909-darcs"; 5 6 6 - description = ''The necessary CLDR files for cl-l10n packaged in a QuickLisp friendly way.''; 7 + description = "The necessary CLDR files for cl-l10n packaged in a QuickLisp friendly way."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-l10n-cldr/2012-09-09/cl-l10n-cldr-20120909-darcs.tgz''; 12 - sha256 = ''03l81bx8izvzwzw0qah34l4k47l4gmhr917phhhl81qp55x7zbiv''; 12 + url = "http://beta.quicklisp.org/archive/cl-l10n-cldr/2012-09-09/cl-l10n-cldr-20120909-darcs.tgz"; 13 + sha256 = "03l81bx8izvzwzw0qah34l4k47l4gmhr917phhhl81qp55x7zbiv"; 13 14 }; 14 15 15 16 packageName = "cl-l10n-cldr";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-l10n.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-l10n''; 4 - version = ''20161204-darcs''; 4 + baseName = "cl-l10n"; 5 + version = "20161204-darcs"; 5 6 6 7 parasites = [ "cl-l10n/test" ]; 7 8 8 - description = ''Portable CL Locale Support''; 9 + description = "Portable CL Locale Support"; 9 10 10 11 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cl-fad" args."cl-l10n-cldr" args."cl-ppcre" args."closer-mop" args."closure-common" args."cxml" args."flexi-streams" args."hu_dot_dwim_dot_stefil" args."iterate" args."local-time" args."metabang-bind" args."parse-number" args."puri" args."trivial-features" args."trivial-gray-streams" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-l10n/2016-12-04/cl-l10n-20161204-darcs.tgz''; 14 - sha256 = ''1r8jgwks21az78c5kdxgw5llk9ml423vjkv1f93qg1vx3zma6vzl''; 14 + url = "http://beta.quicklisp.org/archive/cl-l10n/2016-12-04/cl-l10n-20161204-darcs.tgz"; 15 + sha256 = "1r8jgwks21az78c5kdxgw5llk9ml423vjkv1f93qg1vx3zma6vzl"; 15 16 }; 16 17 17 18 packageName = "cl-l10n";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-libuv.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-libuv''; 4 - version = ''20200610-git''; 4 + baseName = "cl-libuv"; 5 + version = "20200610-git"; 5 6 6 - description = ''Low-level libuv bindings for Common Lisp.''; 7 + description = "Low-level libuv bindings for Common Lisp."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-libuv/2020-06-10/cl-libuv-20200610-git.tgz''; 12 - sha256 = ''1ywk1z1ibyk3z0irg5azjrjk3x08ixv30fx4qa0p500fmbfhha19''; 12 + url = "http://beta.quicklisp.org/archive/cl-libuv/2020-06-10/cl-libuv-20200610-git.tgz"; 13 + sha256 = "1ywk1z1ibyk3z0irg5azjrjk3x08ixv30fx4qa0p500fmbfhha19"; 13 14 }; 14 15 15 16 packageName = "cl-libuv";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-locale.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-locale''; 4 - version = ''20151031-git''; 4 + baseName = "cl-locale"; 5 + version = "20151031-git"; 5 6 6 - description = ''Simple i18n library for Common Lisp''; 7 + description = "Simple i18n library for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."anaphora" args."arnesi" args."cl-annot" args."cl-syntax" args."cl-syntax-annot" args."closer-mop" args."collectors" args."iterate" args."named-readtables" args."symbol-munger" args."trivial-types" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-locale/2015-10-31/cl-locale-20151031-git.tgz''; 12 - sha256 = ''14j4xazrx2v5cj4q4irfwra0ksvl2l0s7073fimpwc0xqjfsnjpg''; 12 + url = "http://beta.quicklisp.org/archive/cl-locale/2015-10-31/cl-locale-20151031-git.tgz"; 13 + sha256 = "14j4xazrx2v5cj4q4irfwra0ksvl2l0s7073fimpwc0xqjfsnjpg"; 13 14 }; 14 15 15 16 packageName = "cl-locale";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-markup.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-markup''; 4 - version = ''20131003-git''; 4 + baseName = "cl-markup"; 5 + version = "20131003-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-markup/2013-10-03/cl-markup-20131003-git.tgz''; 12 - sha256 = ''1ik3a5k6axq941zbf6zyig553i5gnypbcxdq9l7bfxp8w18vbj0r''; 12 + url = "http://beta.quicklisp.org/archive/cl-markup/2013-10-03/cl-markup-20131003-git.tgz"; 13 + sha256 = "1ik3a5k6axq941zbf6zyig553i5gnypbcxdq9l7bfxp8w18vbj0r"; 13 14 }; 14 15 15 16 packageName = "cl-markup";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-mysql.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-mysql''; 4 - version = ''20200610-git''; 4 + baseName = "cl-mysql"; 5 + version = "20200610-git"; 5 6 6 - description = ''Common Lisp MySQL library bindings''; 7 + description = "Common Lisp MySQL library bindings"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-mysql/2020-06-10/cl-mysql-20200610-git.tgz''; 12 - sha256 = ''0fzyqzz01zn9fy8v766lib3dghg9yq5wawa0hcmxslms7knzxz7w''; 12 + url = "http://beta.quicklisp.org/archive/cl-mysql/2020-06-10/cl-mysql-20200610-git.tgz"; 13 + sha256 = "0fzyqzz01zn9fy8v766lib3dghg9yq5wawa0hcmxslms7knzxz7w"; 13 14 }; 14 15 15 16 packageName = "cl-mysql";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-paths-ttf.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-paths-ttf''; 4 - version = ''cl-vectors-20180228-git''; 4 + baseName = "cl-paths-ttf"; 5 + version = "cl-vectors-20180228-git"; 5 6 6 - description = ''cl-paths-ttf: vectorial paths manipulation''; 7 + description = "cl-paths-ttf: vectorial paths manipulation"; 7 8 8 9 deps = [ args."cl-paths" args."zpb-ttf" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz''; 12 - sha256 = ''0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly''; 12 + url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; 13 + sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly"; 13 14 }; 14 15 15 16 packageName = "cl-paths-ttf";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-paths.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-paths''; 4 - version = ''cl-vectors-20180228-git''; 4 + baseName = "cl-paths"; 5 + version = "cl-vectors-20180228-git"; 5 6 6 - description = ''cl-paths: vectorial paths manipulation''; 7 + description = "cl-paths: vectorial paths manipulation"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz''; 12 - sha256 = ''0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly''; 12 + url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; 13 + sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly"; 13 14 }; 14 15 15 16 packageName = "cl-paths";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-pdf.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-pdf''; 4 - version = ''20210228-git''; 4 + baseName = "cl-pdf"; 5 + version = "20210228-git"; 5 6 6 - description = ''Common Lisp PDF Generation Library''; 7 + description = "Common Lisp PDF Generation Library"; 7 8 8 9 deps = [ args."iterate" args."uiop" args."zpb-ttf" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-pdf/2021-02-28/cl-pdf-20210228-git.tgz''; 12 - sha256 = ''1m1nq91p49gfc9iccja2wbhglrv0mgzhqvliss7jr0j6icv66x3y''; 12 + url = "http://beta.quicklisp.org/archive/cl-pdf/2021-02-28/cl-pdf-20210228-git.tgz"; 13 + sha256 = "1m1nq91p49gfc9iccja2wbhglrv0mgzhqvliss7jr0j6icv66x3y"; 13 14 }; 14 15 15 16 packageName = "cl-pdf";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-postgres.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-postgres''; 4 - version = ''postmodern-20210124-git''; 4 + baseName = "cl-postgres"; 5 + version = "postmodern-20210124-git"; 5 6 6 7 parasites = [ "cl-postgres/simple-date-tests" "cl-postgres/tests" ]; 7 8 8 - description = ''Low-level client library for PostgreSQL''; 9 + description = "Low-level client library for PostgreSQL"; 9 10 10 11 deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-ppcre" args."fiveam" args."ironclad" args."md5" args."simple-date" args."simple-date_slash_postgres-glue" args."split-sequence" args."uax-15" args."usocket" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/postmodern/2021-01-24/postmodern-20210124-git.tgz''; 14 - sha256 = ''1fl103fga5iq2gf1p15xvbrmmjrcv2bbi3lz1zv32j6smy5aymhc''; 14 + url = "http://beta.quicklisp.org/archive/postmodern/2021-01-24/postmodern-20210124-git.tgz"; 15 + sha256 = "1fl103fga5iq2gf1p15xvbrmmjrcv2bbi3lz1zv32j6smy5aymhc"; 15 16 }; 16 17 17 18 packageName = "cl-postgres";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-postgres_plus_local-time.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-postgres_plus_local-time''; 4 - version = ''local-time-20210124-git''; 4 + baseName = "cl-postgres_plus_local-time"; 5 + version = "local-time-20210124-git"; 5 6 6 - description = ''Integration between cl-postgres and local-time''; 7 + description = "Integration between cl-postgres and local-time"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-postgres" args."cl-ppcre" args."ironclad" args."local-time" args."md5" args."split-sequence" args."uax-15" args."usocket" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/local-time/2021-01-24/local-time-20210124-git.tgz''; 12 - sha256 = ''0bz5z0rd8gfd22bpqkalaijxlrk806zc010cvgd4qjapbrxzjg3s''; 12 + url = "http://beta.quicklisp.org/archive/local-time/2021-01-24/local-time-20210124-git.tgz"; 13 + sha256 = "0bz5z0rd8gfd22bpqkalaijxlrk806zc010cvgd4qjapbrxzjg3s"; 13 14 }; 14 15 15 16 packageName = "cl-postgres+local-time";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ppcre-template.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-ppcre-template''; 4 - version = ''cl-unification-20200925-git''; 4 + baseName = "cl-ppcre-template"; 5 + version = "cl-unification-20200925-git"; 5 6 6 - description = ''A system used to conditionally load the CL-PPCRE Template. 7 + description = "A system used to conditionally load the CL-PPCRE Template. 7 8 8 9 This system is not required and it is handled only if CL-PPCRE is 9 10 available. If it is, then the library provides the 10 - REGULAR-EXPRESSION-TEMPLATE.''; 11 + REGULAR-EXPRESSION-TEMPLATE."; 11 12 12 13 deps = [ args."cl-ppcre" args."cl-unification" ]; 13 14 14 15 src = fetchurl { 15 - url = ''http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz''; 16 - sha256 = ''05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais''; 16 + url = "http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz"; 17 + sha256 = "05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais"; 17 18 }; 18 19 19 20 packageName = "cl-ppcre-template";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ppcre-unicode.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-ppcre-unicode''; 4 - version = ''cl-ppcre-20190521-git''; 4 + baseName = "cl-ppcre-unicode"; 5 + version = "cl-ppcre-20190521-git"; 5 6 6 7 parasites = [ "cl-ppcre-unicode-test" ]; 7 8 8 - description = ''Perl-compatible regular expression library (Unicode)''; 9 + description = "Perl-compatible regular expression library (Unicode)"; 9 10 10 11 deps = [ args."cl-ppcre" args."cl-ppcre-test" args."cl-unicode" args."flexi-streams" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz''; 14 - sha256 = ''0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx''; 14 + url = "http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz"; 15 + sha256 = "0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx"; 15 16 }; 16 17 17 18 packageName = "cl-ppcre-unicode";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ppcre.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-ppcre''; 4 - version = ''20190521-git''; 4 + baseName = "cl-ppcre"; 5 + version = "20190521-git"; 5 6 6 7 parasites = [ "cl-ppcre-test" ]; 7 8 8 - description = ''Perl-compatible regular expression library''; 9 + description = "Perl-compatible regular expression library"; 9 10 10 11 deps = [ args."flexi-streams" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz''; 14 - sha256 = ''0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx''; 14 + url = "http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz"; 15 + sha256 = "0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx"; 15 16 }; 16 17 17 18 packageName = "cl-ppcre";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-prevalence.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-prevalence''; 4 - version = ''20210228-git''; 4 + baseName = "cl-prevalence"; 5 + version = "20210228-git"; 5 6 6 - description = ''Common Lisp Prevalence Package''; 7 + description = "Common Lisp Prevalence Package"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."s-sysdeps" args."s-xml" args."split-sequence" args."usocket" args."usocket-server" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-prevalence/2021-02-28/cl-prevalence-20210228-git.tgz''; 12 - sha256 = ''0irx60xa7ivlnjg1qzhl7x5sgdjqk53nrx0nji29q639h71czfpl''; 12 + url = "http://beta.quicklisp.org/archive/cl-prevalence/2021-02-28/cl-prevalence-20210228-git.tgz"; 13 + sha256 = "0irx60xa7ivlnjg1qzhl7x5sgdjqk53nrx0nji29q639h71czfpl"; 13 14 }; 14 15 15 16 packageName = "cl-prevalence";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-project.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-project''; 4 - version = ''20200715-git''; 4 + baseName = "cl-project"; 5 + version = "20200715-git"; 5 6 6 - description = ''Generate a skeleton for modern project''; 7 + description = "Generate a skeleton for modern project"; 7 8 8 9 deps = [ args."alexandria" args."anaphora" args."cl-ansi-text" args."cl-colors" args."cl-colors2" args."cl-emb" args."cl-ppcre" args."let-plus" args."local-time" args."prove" args."uiop" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-project/2020-07-15/cl-project-20200715-git.tgz''; 12 - sha256 = ''044rx97wc839a8q2wv271s07bnsasl6x5fx4gr5pvy34jbrhp306''; 12 + url = "http://beta.quicklisp.org/archive/cl-project/2020-07-15/cl-project-20200715-git.tgz"; 13 + sha256 = "044rx97wc839a8q2wv271s07bnsasl6x5fx4gr5pvy34jbrhp306"; 13 14 }; 14 15 15 16 packageName = "cl-project";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-protobufs.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-protobufs''; 4 - version = ''20200325-git''; 4 + baseName = "cl-protobufs"; 5 + version = "20200325-git"; 5 6 6 - description = ''Protobufs for Common Lisp''; 7 + description = "Protobufs for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."closer-mop" args."trivial-features" args."trivial-garbage" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-protobufs/2020-03-25/cl-protobufs-20200325-git.tgz''; 12 - sha256 = ''1sgvp038bvd3mq2f0xh4wawf8h21jmw449yjyahidh1zfqdibpin''; 12 + url = "http://beta.quicklisp.org/archive/cl-protobufs/2020-03-25/cl-protobufs-20200325-git.tgz"; 13 + sha256 = "1sgvp038bvd3mq2f0xh4wawf8h21jmw449yjyahidh1zfqdibpin"; 13 14 }; 14 15 15 16 packageName = "cl-protobufs";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-qprint.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-qprint''; 4 - version = ''20150804-git''; 4 + baseName = "cl-qprint"; 5 + version = "20150804-git"; 5 6 6 - description = ''Encode and decode quoted-printable encoded strings.''; 7 + description = "Encode and decode quoted-printable encoded strings."; 7 8 8 9 deps = [ args."flexi-streams" args."trivial-gray-streams" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-qprint/2015-08-04/cl-qprint-20150804-git.tgz''; 12 - sha256 = ''042nq9airkc4yaqzpmly5iszmkbwfn38wsgi9k361ldf1y54lq28''; 12 + url = "http://beta.quicklisp.org/archive/cl-qprint/2015-08-04/cl-qprint-20150804-git.tgz"; 13 + sha256 = "042nq9airkc4yaqzpmly5iszmkbwfn38wsgi9k361ldf1y54lq28"; 13 14 }; 14 15 15 16 packageName = "cl-qprint";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-reexport.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-reexport''; 4 - version = ''20210228-git''; 4 + baseName = "cl-reexport"; 5 + version = "20210228-git"; 5 6 6 - description = ''Reexport external symbols in other packages.''; 7 + description = "Reexport external symbols in other packages."; 7 8 8 9 deps = [ args."alexandria" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-reexport/2021-02-28/cl-reexport-20210228-git.tgz''; 12 - sha256 = ''1ay0ng5nnbq200g4wxs0h7byx24za4yk208nhfsmksahk5qj1qra''; 12 + url = "http://beta.quicklisp.org/archive/cl-reexport/2021-02-28/cl-reexport-20210228-git.tgz"; 13 + sha256 = "1ay0ng5nnbq200g4wxs0h7byx24za4yk208nhfsmksahk5qj1qra"; 13 14 }; 14 15 15 16 packageName = "cl-reexport";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-slice.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-slice''; 4 - version = ''20171130-git''; 4 + baseName = "cl-slice"; 5 + version = "20171130-git"; 5 6 6 7 parasites = [ "cl-slice-tests" ]; 7 8 8 - description = ''DSL for array slices in Common Lisp.''; 9 + description = "DSL for array slices in Common Lisp."; 9 10 10 11 deps = [ args."alexandria" args."anaphora" args."clunit" args."let-plus" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-slice/2017-11-30/cl-slice-20171130-git.tgz''; 14 - sha256 = ''0nay95qsnck40kdxjgjdii5rcgrdhf880pg9ajmbxilgw84xb2zn''; 14 + url = "http://beta.quicklisp.org/archive/cl-slice/2017-11-30/cl-slice-20171130-git.tgz"; 15 + sha256 = "0nay95qsnck40kdxjgjdii5rcgrdhf880pg9ajmbxilgw84xb2zn"; 15 16 }; 16 17 17 18 packageName = "cl-slice";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-smtp.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-smtp''; 4 - version = ''20210228-git''; 4 + baseName = "cl-smtp"; 5 + version = "20210228-git"; 5 6 6 - description = ''Common Lisp smtp client.''; 7 + description = "Common Lisp smtp client."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl_plus_ssl" args."cl-base64" args."flexi-streams" args."split-sequence" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."usocket" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-smtp/2021-02-28/cl-smtp-20210228-git.tgz''; 12 - sha256 = ''1x965jyhifx8hss2v6qc6lr54nlckchs712dny376krwkl43jh5g''; 12 + url = "http://beta.quicklisp.org/archive/cl-smtp/2021-02-28/cl-smtp-20210228-git.tgz"; 13 + sha256 = "1x965jyhifx8hss2v6qc6lr54nlckchs712dny376krwkl43jh5g"; 13 14 }; 14 15 15 16 packageName = "cl-smtp";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-speedy-queue.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-speedy-queue''; 4 - version = ''20150302-git''; 4 + baseName = "cl-speedy-queue"; 5 + version = "20150302-git"; 5 6 6 - description = ''cl-speedy-queue is a portable, non-consing, optimized queue implementation.''; 7 + description = "cl-speedy-queue is a portable, non-consing, optimized queue implementation."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-speedy-queue/2015-03-02/cl-speedy-queue-20150302-git.tgz''; 12 - sha256 = ''1w83vckk0ldr61vpkwg4i8l2b2yx54cs4ak62j4lxhshax105rqr''; 12 + url = "http://beta.quicklisp.org/archive/cl-speedy-queue/2015-03-02/cl-speedy-queue-20150302-git.tgz"; 13 + sha256 = "1w83vckk0ldr61vpkwg4i8l2b2yx54cs4ak62j4lxhshax105rqr"; 13 14 }; 14 15 15 16 packageName = "cl-speedy-queue";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-store.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-store''; 4 - version = ''20200925-git''; 4 + baseName = "cl-store"; 5 + version = "20200925-git"; 5 6 6 7 parasites = [ "cl-store-tests" ]; 7 8 8 - description = ''Serialization package''; 9 + description = "Serialization package"; 9 10 10 11 deps = [ args."rt" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-store/2020-09-25/cl-store-20200925-git.tgz''; 14 - sha256 = ''0vqlrci1634jgfg6c1dzwvx58qjjwbcbwdbpm7xxw2s823xl9jf3''; 14 + url = "http://beta.quicklisp.org/archive/cl-store/2020-09-25/cl-store-20200925-git.tgz"; 15 + sha256 = "0vqlrci1634jgfg6c1dzwvx58qjjwbcbwdbpm7xxw2s823xl9jf3"; 15 16 }; 16 17 17 18 packageName = "cl-store";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-syntax-annot.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-syntax-annot''; 4 - version = ''cl-syntax-20150407-git''; 4 + baseName = "cl-syntax-annot"; 5 + version = "cl-syntax-20150407-git"; 5 6 6 - description = ''CL-Syntax Reader Syntax for cl-annot''; 7 + description = "CL-Syntax Reader Syntax for cl-annot"; 7 8 8 9 deps = [ args."alexandria" args."cl-annot" args."cl-syntax" args."named-readtables" args."trivial-types" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz''; 12 - sha256 = ''1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n''; 12 + url = "http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz"; 13 + sha256 = "1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n"; 13 14 }; 14 15 15 16 packageName = "cl-syntax-annot";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-syntax-anonfun.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-syntax-anonfun''; 4 - version = ''cl-syntax-20150407-git''; 4 + baseName = "cl-syntax-anonfun"; 5 + version = "cl-syntax-20150407-git"; 5 6 6 - description = ''CL-Syntax Reader Syntax for cl-anonfun''; 7 + description = "CL-Syntax Reader Syntax for cl-anonfun"; 7 8 8 9 deps = [ args."cl-anonfun" args."cl-syntax" args."named-readtables" args."trivial-types" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz''; 12 - sha256 = ''1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n''; 12 + url = "http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz"; 13 + sha256 = "1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n"; 13 14 }; 14 15 15 16 packageName = "cl-syntax-anonfun";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-syntax-markup.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-syntax-markup''; 4 - version = ''cl-syntax-20150407-git''; 4 + baseName = "cl-syntax-markup"; 5 + version = "cl-syntax-20150407-git"; 5 6 6 - description = ''CL-Syntax Reader Syntax for CL-Markup''; 7 + description = "CL-Syntax Reader Syntax for CL-Markup"; 7 8 8 9 deps = [ args."cl-markup" args."cl-syntax" args."named-readtables" args."trivial-types" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz''; 12 - sha256 = ''1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n''; 12 + url = "http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz"; 13 + sha256 = "1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n"; 13 14 }; 14 15 15 16 packageName = "cl-syntax-markup";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-syntax.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-syntax''; 4 - version = ''20150407-git''; 4 + baseName = "cl-syntax"; 5 + version = "20150407-git"; 5 6 6 - description = ''Reader Syntax Coventions for Common Lisp and SLIME''; 7 + description = "Reader Syntax Coventions for Common Lisp and SLIME"; 7 8 8 9 deps = [ args."named-readtables" args."trivial-types" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz''; 12 - sha256 = ''1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n''; 12 + url = "http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz"; 13 + sha256 = "1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n"; 13 14 }; 14 15 15 16 packageName = "cl-syntax";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-syslog.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-syslog''; 4 - version = ''20190202-git''; 4 + baseName = "cl-syslog"; 5 + version = "20190202-git"; 5 6 6 - description = ''Common Lisp syslog interface.''; 7 + description = "Common Lisp syslog interface."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."global-vars" args."local-time" args."split-sequence" args."trivial-features" args."usocket" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-syslog/2019-02-02/cl-syslog-20190202-git.tgz''; 12 - sha256 = ''1kzz613y9fvx33svlwc65vjaj1cafnxz8icds80ww7il7y6alwgh''; 12 + url = "http://beta.quicklisp.org/archive/cl-syslog/2019-02-02/cl-syslog-20190202-git.tgz"; 13 + sha256 = "1kzz613y9fvx33svlwc65vjaj1cafnxz8icds80ww7il7y6alwgh"; 13 14 }; 14 15 15 16 packageName = "cl-syslog";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-test-more.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-test-more''; 4 - version = ''prove-20200218-git''; 4 + baseName = "cl-test-more"; 5 + version = "prove-20200218-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."alexandria" args."anaphora" args."cl-ansi-text" args."cl-colors" args."cl-colors2" args."cl-ppcre" args."let-plus" args."prove" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz''; 12 - sha256 = ''1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn''; 12 + url = "http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz"; 13 + sha256 = "1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn"; 13 14 }; 14 15 15 16 packageName = "cl-test-more";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-typesetting.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-typesetting''; 4 - version = ''20210228-git''; 4 + baseName = "cl-typesetting"; 5 + version = "20210228-git"; 5 6 6 - description = ''Common Lisp Typesetting system''; 7 + description = "Common Lisp Typesetting system"; 7 8 8 9 deps = [ args."cl-pdf" args."iterate" args."zpb-ttf" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-typesetting/2021-02-28/cl-typesetting-20210228-git.tgz''; 12 - sha256 = ''13rmzyzp0glq35jq3qdlmrsdssa6csqp5g455li4wi7kq8clrwnp''; 12 + url = "http://beta.quicklisp.org/archive/cl-typesetting/2021-02-28/cl-typesetting-20210228-git.tgz"; 13 + sha256 = "13rmzyzp0glq35jq3qdlmrsdssa6csqp5g455li4wi7kq8clrwnp"; 13 14 }; 14 15 15 16 packageName = "cl-typesetting";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unicode.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-unicode''; 4 - version = ''20210228-git''; 4 + baseName = "cl-unicode"; 5 + version = "20210228-git"; 5 6 6 7 parasites = [ "cl-unicode/base" "cl-unicode/build" "cl-unicode/test" ]; 7 8 8 - description = ''Portable Unicode Library''; 9 + description = "Portable Unicode Library"; 9 10 10 11 deps = [ args."cl-ppcre" args."flexi-streams" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-unicode/2021-02-28/cl-unicode-20210228-git.tgz''; 14 - sha256 = ''0phy5wppb7m78dixrf2vjq8vas4drfd4qg38al6q8ymkl0yfy5js''; 14 + url = "http://beta.quicklisp.org/archive/cl-unicode/2021-02-28/cl-unicode-20210228-git.tgz"; 15 + sha256 = "0phy5wppb7m78dixrf2vjq8vas4drfd4qg38al6q8ymkl0yfy5js"; 15 16 }; 16 17 17 18 packageName = "cl-unicode";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unification.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-unification''; 4 - version = ''20200925-git''; 4 + baseName = "cl-unification"; 5 + version = "20200925-git"; 5 6 6 - description = ''The CL-UNIFICATION system. 7 + description = "The CL-UNIFICATION system. 7 8 8 - The system contains the definitions for the 'unification' machinery.''; 9 + The system contains the definitions for the 'unification' machinery."; 9 10 10 11 deps = [ ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz''; 14 - sha256 = ''05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais''; 14 + url = "http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz"; 15 + sha256 = "05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais"; 15 16 }; 16 17 17 18 packageName = "cl-unification";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-utilities.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-utilities''; 4 - version = ''1.2.4''; 4 + baseName = "cl-utilities"; 5 + version = "1.2.4"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-utilities/2010-10-06/cl-utilities-1.2.4.tgz''; 12 - sha256 = ''1z2ippnv2wgyxpz15zpif7j7sp1r20fkjhm4n6am2fyp6a3k3a87''; 12 + url = "http://beta.quicklisp.org/archive/cl-utilities/2010-10-06/cl-utilities-1.2.4.tgz"; 13 + sha256 = "1z2ippnv2wgyxpz15zpif7j7sp1r20fkjhm4n6am2fyp6a3k3a87"; 13 14 }; 14 15 15 16 packageName = "cl-utilities";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-vectors.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-vectors''; 4 - version = ''20180228-git''; 4 + baseName = "cl-vectors"; 5 + version = "20180228-git"; 5 6 6 - description = ''cl-paths: vectorial paths manipulation''; 7 + description = "cl-paths: vectorial paths manipulation"; 7 8 8 9 deps = [ args."cl-aa" args."cl-paths" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz''; 12 - sha256 = ''0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly''; 12 + url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; 13 + sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly"; 13 14 }; 14 15 15 16 packageName = "cl-vectors";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-webkit2.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-webkit2''; 4 - version = ''cl-webkit-20210228-git''; 4 + baseName = "cl-webkit2"; 5 + version = "cl-webkit-20210228-git"; 5 6 6 - description = ''An FFI binding to WebKit2GTK+''; 7 + description = "An FFI binding to WebKit2GTK+"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk" args."cl-cffi-gtk-cairo" args."cl-cffi-gtk-gdk" args."cl-cffi-gtk-gdk-pixbuf" args."cl-cffi-gtk-gio" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."cl-cffi-gtk-pango" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-webkit/2021-02-28/cl-webkit-20210228-git.tgz''; 12 - sha256 = ''1r6i64g37palar4hij6c5m240xbn2dwzwaashv015nhjwmra1ms1''; 12 + url = "http://beta.quicklisp.org/archive/cl-webkit/2021-02-28/cl-webkit-20210228-git.tgz"; 13 + sha256 = "1r6i64g37palar4hij6c5m240xbn2dwzwaashv015nhjwmra1ms1"; 13 14 }; 14 15 15 16 packageName = "cl-webkit2";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-who.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-who''; 4 - version = ''20190710-git''; 4 + baseName = "cl-who"; 5 + version = "20190710-git"; 5 6 6 7 parasites = [ "cl-who-test" ]; 7 8 8 - description = ''(X)HTML generation macros''; 9 + description = "(X)HTML generation macros"; 9 10 10 11 deps = [ args."flexi-streams" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-who/2019-07-10/cl-who-20190710-git.tgz''; 14 - sha256 = ''0pbigwn38xikdwvjy9696z9f00dwg565y3wh6ja51q681y8zh9ir''; 14 + url = "http://beta.quicklisp.org/archive/cl-who/2019-07-10/cl-who-20190710-git.tgz"; 15 + sha256 = "0pbigwn38xikdwvjy9696z9f00dwg565y3wh6ja51q681y8zh9ir"; 15 16 }; 16 17 17 18 packageName = "cl-who";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-xmlspam.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl-xmlspam''; 4 - version = ''20101006-http''; 4 + baseName = "cl-xmlspam"; 5 + version = "20101006-http"; 5 6 6 - description = ''Streaming pattern matching for XML''; 7 + description = "Streaming pattern matching for XML"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cl-ppcre" args."closure-common" args."cxml" args."puri" args."trivial-features" args."trivial-gray-streams" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-xmlspam/2010-10-06/cl-xmlspam-20101006-http.tgz''; 12 - sha256 = ''1mx1a6ab4irncrx5pamh7zng35m4c5wh0pw68avaz7fbz81s953h''; 12 + url = "http://beta.quicklisp.org/archive/cl-xmlspam/2010-10-06/cl-xmlspam-20101006-http.tgz"; 13 + sha256 = "1mx1a6ab4irncrx5pamh7zng35m4c5wh0pw68avaz7fbz81s953h"; 13 14 }; 14 15 15 16 packageName = "cl-xmlspam";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl_plus_ssl.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cl_plus_ssl''; 4 - version = ''cl+ssl-20210228-git''; 4 + baseName = "cl_plus_ssl"; 5 + version = "cl+ssl-20210228-git"; 5 6 6 - description = ''Common Lisp interface to OpenSSL.''; 7 + description = "Common Lisp interface to OpenSSL."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."flexi-streams" args."split-sequence" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."uiop" args."usocket" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl+ssl/2021-02-28/cl+ssl-20210228-git.tgz''; 12 - sha256 = ''1njppcg5fm8l0lhf7nf8nfyaz9vsr922y0vfxqdp9hp7qfid8yll''; 12 + url = "http://beta.quicklisp.org/archive/cl+ssl/2021-02-28/cl+ssl-20210228-git.tgz"; 13 + sha256 = "1njppcg5fm8l0lhf7nf8nfyaz9vsr922y0vfxqdp9hp7qfid8yll"; 13 14 }; 14 15 15 16 packageName = "cl+ssl";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-handler-hunchentoot.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clack-handler-hunchentoot''; 4 - version = ''clack-20191007-git''; 4 + baseName = "clack-handler-hunchentoot"; 5 + version = "clack-20191007-git"; 5 6 6 - description = ''Clack handler for Hunchentoot.''; 7 + description = "Clack handler for Hunchentoot."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."chunga" args."cl_plus_ssl" args."cl-base64" args."cl-fad" args."cl-ppcre" args."clack-socket" args."flexi-streams" args."hunchentoot" args."md5" args."rfc2388" args."split-sequence" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."usocket" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz''; 12 - sha256 = ''004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w''; 12 + url = "http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz"; 13 + sha256 = "004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w"; 13 14 }; 14 15 15 16 packageName = "clack-handler-hunchentoot";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-socket.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clack-socket''; 4 - version = ''clack-20191007-git''; 4 + baseName = "clack-socket"; 5 + version = "clack-20191007-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz''; 12 - sha256 = ''004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w''; 12 + url = "http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz"; 13 + sha256 = "004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w"; 13 14 }; 14 15 15 16 packageName = "clack-socket";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-test.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clack-test''; 4 - version = ''clack-20191007-git''; 4 + baseName = "clack-test"; 5 + version = "clack-20191007-git"; 5 6 6 - description = ''Testing Clack Applications.''; 7 + description = "Testing Clack Applications."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."chipz" args."chunga" args."cl_plus_ssl" args."cl-annot" args."cl-base64" args."cl-cookie" args."cl-fad" args."cl-ppcre" args."cl-reexport" args."cl-syntax" args."cl-syntax-annot" args."cl-utilities" args."clack" args."clack-handler-hunchentoot" args."clack-socket" args."dexador" args."dissect" args."fast-http" args."fast-io" args."flexi-streams" args."http-body" args."hunchentoot" args."ironclad" args."jonathan" args."lack" args."lack-component" args."lack-middleware-backtrace" args."lack-util" args."local-time" args."md5" args."named-readtables" args."proc-parse" args."quri" args."rfc2388" args."rove" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."trivial-mimes" args."trivial-types" args."usocket" args."xsubseq" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz''; 12 - sha256 = ''004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w''; 12 + url = "http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz"; 13 + sha256 = "004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w"; 13 14 }; 14 15 15 16 packageName = "clack-test";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-v1-compat.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clack-v1-compat''; 4 - version = ''clack-20191007-git''; 4 + baseName = "clack-v1-compat"; 5 + version = "clack-20191007-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."chipz" args."chunga" args."circular-streams" args."cl_plus_ssl" args."cl-annot" args."cl-base64" args."cl-cookie" args."cl-fad" args."cl-ppcre" args."cl-reexport" args."cl-syntax" args."cl-syntax-annot" args."cl-utilities" args."clack" args."clack-handler-hunchentoot" args."clack-socket" args."clack-test" args."dexador" args."dissect" args."fast-http" args."fast-io" args."flexi-streams" args."http-body" args."hunchentoot" args."ironclad" args."jonathan" args."lack" args."lack-component" args."lack-middleware-backtrace" args."lack-util" args."local-time" args."marshal" args."md5" args."named-readtables" args."proc-parse" args."quri" args."rfc2388" args."rove" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."trivial-mimes" args."trivial-types" args."uiop" args."usocket" args."xsubseq" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz''; 12 - sha256 = ''004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w''; 12 + url = "http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz"; 13 + sha256 = "004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w"; 13 14 }; 14 15 15 16 packageName = "clack-v1-compat";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clack.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clack''; 4 - version = ''20191007-git''; 4 + baseName = "clack"; 5 + version = "20191007-git"; 5 6 6 - description = ''Web application environment for Common Lisp''; 7 + description = "Web application environment for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" args."lack" args."lack-component" args."lack-middleware-backtrace" args."lack-util" args."uiop" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz''; 12 - sha256 = ''004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w''; 12 + url = "http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz"; 13 + sha256 = "004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w"; 13 14 }; 14 15 15 16 packageName = "clack";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clfswm.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clfswm''; 4 - version = ''20161204-git''; 4 + baseName = "clfswm"; 5 + version = "20161204-git"; 5 6 6 - description = ''CLFSWM: Fullscreen Window Manager''; 7 + description = "CLFSWM: Fullscreen Window Manager"; 7 8 8 9 deps = [ args."clx" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clfswm/2016-12-04/clfswm-20161204-git.tgz''; 12 - sha256 = ''1jgz127721dgcv3qm1knc335gy04vzh9gl0hshp256rxi82cpp73''; 12 + url = "http://beta.quicklisp.org/archive/clfswm/2016-12-04/clfswm-20161204-git.tgz"; 13 + sha256 = "1jgz127721dgcv3qm1knc335gy04vzh9gl0hshp256rxi82cpp73"; 13 14 }; 14 15 15 16 packageName = "clfswm";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/closer-mop.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''closer-mop''; 4 - version = ''20210228-git''; 4 + baseName = "closer-mop"; 5 + version = "20210228-git"; 5 6 6 - description = ''Closer to MOP is a compatibility layer that rectifies many of the absent or incorrect CLOS MOP features across a broad range of Common Lisp implementations.''; 7 + description = "Closer to MOP is a compatibility layer that rectifies many of the absent or incorrect CLOS MOP features across a broad range of Common Lisp implementations."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/closer-mop/2021-02-28/closer-mop-20210228-git.tgz''; 12 - sha256 = ''0x3rp2v84zzw5mhcxrgbq2kcb9gs4jn1l9rh4ylsnih89l9lqc6i''; 12 + url = "http://beta.quicklisp.org/archive/closer-mop/2021-02-28/closer-mop-20210228-git.tgz"; 13 + sha256 = "0x3rp2v84zzw5mhcxrgbq2kcb9gs4jn1l9rh4ylsnih89l9lqc6i"; 13 14 }; 14 15 15 16 packageName = "closer-mop";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/closure-common.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''closure-common''; 4 - version = ''20181018-git''; 4 + baseName = "closure-common"; 5 + version = "20181018-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."trivial-features" args."trivial-gray-streams" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/closure-common/2018-10-18/closure-common-20181018-git.tgz''; 12 - sha256 = ''18bp7jnxma9hscp09fa723ws9nnynjil935rp8dy9hp6ypghpxpn''; 12 + url = "http://beta.quicklisp.org/archive/closure-common/2018-10-18/closure-common-20181018-git.tgz"; 13 + sha256 = "18bp7jnxma9hscp09fa723ws9nnynjil935rp8dy9hp6ypghpxpn"; 13 14 }; 14 15 15 16 packageName = "closure-common";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/closure-html.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''closure-html''; 4 - version = ''20180711-git''; 4 + baseName = "closure-html"; 5 + version = "20180711-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."closure-common" args."flexi-streams" args."trivial-features" args."trivial-gray-streams" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/closure-html/2018-07-11/closure-html-20180711-git.tgz''; 12 - sha256 = ''0ljcrz1wix77h1ywp0bixm3pb5ncmr1vdiwh8m1qzkygwpfjr8aq''; 12 + url = "http://beta.quicklisp.org/archive/closure-html/2018-07-11/closure-html-20180711-git.tgz"; 13 + sha256 = "0ljcrz1wix77h1ywp0bixm3pb5ncmr1vdiwh8m1qzkygwpfjr8aq"; 13 14 }; 14 15 15 16 packageName = "closure-html";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clsql-postgresql-socket.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clsql-postgresql-socket''; 4 - version = ''clsql-20210228-git''; 4 + baseName = "clsql-postgresql-socket"; 5 + version = "clsql-20210228-git"; 5 6 6 - description = ''Common Lisp SQL PostgreSQL Socket Driver''; 7 + description = "Common Lisp SQL PostgreSQL Socket Driver"; 7 8 8 9 deps = [ args."clsql" args."md5" args."uffi" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz''; 12 - sha256 = ''0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4''; 12 + url = "http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz"; 13 + sha256 = "0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4"; 13 14 }; 14 15 15 16 packageName = "clsql-postgresql-socket";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clsql-postgresql.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clsql-postgresql''; 4 - version = ''clsql-20210228-git''; 4 + baseName = "clsql-postgresql"; 5 + version = "clsql-20210228-git"; 5 6 6 - description = ''Common Lisp PostgreSQL API Driver''; 7 + description = "Common Lisp PostgreSQL API Driver"; 7 8 8 9 deps = [ args."clsql" args."clsql-uffi" args."uffi" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz''; 12 - sha256 = ''0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4''; 12 + url = "http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz"; 13 + sha256 = "0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4"; 13 14 }; 14 15 15 16 packageName = "clsql-postgresql";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clsql-sqlite3.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clsql-sqlite3''; 4 - version = ''clsql-20210228-git''; 4 + baseName = "clsql-sqlite3"; 5 + version = "clsql-20210228-git"; 5 6 6 - description = ''Common Lisp Sqlite3 Driver''; 7 + description = "Common Lisp Sqlite3 Driver"; 7 8 8 9 deps = [ args."clsql" args."clsql-uffi" args."uffi" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz''; 12 - sha256 = ''0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4''; 12 + url = "http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz"; 13 + sha256 = "0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4"; 13 14 }; 14 15 15 16 packageName = "clsql-sqlite3";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clsql-uffi.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clsql-uffi''; 4 - version = ''clsql-20210228-git''; 4 + baseName = "clsql-uffi"; 5 + version = "clsql-20210228-git"; 5 6 6 - description = ''Common UFFI Helper functions for Common Lisp SQL Interface Library''; 7 + description = "Common UFFI Helper functions for Common Lisp SQL Interface Library"; 7 8 8 9 deps = [ args."clsql" args."uffi" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz''; 12 - sha256 = ''0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4''; 12 + url = "http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz"; 13 + sha256 = "0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4"; 13 14 }; 14 15 15 16 packageName = "clsql-uffi";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clsql.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clsql''; 4 - version = ''20210228-git''; 4 + baseName = "clsql"; 5 + version = "20210228-git"; 5 6 6 - description = ''Common Lisp SQL Interface library''; 7 + description = "Common Lisp SQL Interface library"; 7 8 8 9 deps = [ args."uffi" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz''; 12 - sha256 = ''0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4''; 12 + url = "http://beta.quicklisp.org/archive/clsql/2021-02-28/clsql-20210228-git.tgz"; 13 + sha256 = "0g7racshjy47xbfijymddjwnphp0c93z2lnlgi330g257s9l7vd4"; 13 14 }; 14 15 15 16 packageName = "clsql";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clss.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clss''; 4 - version = ''20191130-git''; 4 + baseName = "clss"; 5 + version = "20191130-git"; 5 6 6 - description = ''A DOM tree searching engine based on CSS selectors.''; 7 + description = "A DOM tree searching engine based on CSS selectors."; 7 8 8 9 deps = [ args."array-utils" args."documentation-utils" args."plump" args."trivial-indent" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clss/2019-11-30/clss-20191130-git.tgz''; 12 - sha256 = ''0cbjzsc90fpa8zqv5s0ri7ncbv6f8azgbbfsxswqfphbibkcpcka''; 12 + url = "http://beta.quicklisp.org/archive/clss/2019-11-30/clss-20191130-git.tgz"; 13 + sha256 = "0cbjzsc90fpa8zqv5s0ri7ncbv6f8azgbbfsxswqfphbibkcpcka"; 13 14 }; 14 15 15 16 packageName = "clss";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clump-2-3-tree.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clump-2-3-tree''; 4 - version = ''clump-20160825-git''; 4 + baseName = "clump-2-3-tree"; 5 + version = "clump-20160825-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."acclimation" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz''; 12 - sha256 = ''1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl''; 12 + url = "http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz"; 13 + sha256 = "1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl"; 13 14 }; 14 15 15 16 packageName = "clump-2-3-tree";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clump-binary-tree.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clump-binary-tree''; 4 - version = ''clump-20160825-git''; 4 + baseName = "clump-binary-tree"; 5 + version = "clump-20160825-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."acclimation" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz''; 12 - sha256 = ''1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl''; 12 + url = "http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz"; 13 + sha256 = "1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl"; 13 14 }; 14 15 15 16 packageName = "clump-binary-tree";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clump.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clump''; 4 - version = ''20160825-git''; 4 + baseName = "clump"; 5 + version = "20160825-git"; 5 6 6 - description = ''Library for operations on different kinds of trees''; 7 + description = "Library for operations on different kinds of trees"; 7 8 8 9 deps = [ args."acclimation" args."clump-2-3-tree" args."clump-binary-tree" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz''; 12 - sha256 = ''1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl''; 12 + url = "http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz"; 13 + sha256 = "1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl"; 13 14 }; 14 15 15 16 packageName = "clump";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clunit.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clunit''; 4 - version = ''20171019-git''; 4 + baseName = "clunit"; 5 + version = "20171019-git"; 5 6 6 - description = ''CLUnit is a Common Lisp unit testing framework.''; 7 + description = "CLUnit is a Common Lisp unit testing framework."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clunit/2017-10-19/clunit-20171019-git.tgz''; 12 - sha256 = ''1rapyh0fbjnksj8j3y6imzya1kw80882w18j0fv9iq1hlp718zs5''; 12 + url = "http://beta.quicklisp.org/archive/clunit/2017-10-19/clunit-20171019-git.tgz"; 13 + sha256 = "1rapyh0fbjnksj8j3y6imzya1kw80882w18j0fv9iq1hlp718zs5"; 13 14 }; 14 15 15 16 packageName = "clunit";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clunit2.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clunit2''; 4 - version = ''20201016-git''; 4 + baseName = "clunit2"; 5 + version = "20201016-git"; 5 6 6 - description = ''CLUnit is a Common Lisp unit testing framework.''; 7 + description = "CLUnit is a Common Lisp unit testing framework."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clunit2/2020-10-16/clunit2-20201016-git.tgz''; 12 - sha256 = ''1mj3c125drq9a3pxrh0r8q3gqgq68yk7qi0zbqh4mkpavl1aspdp''; 12 + url = "http://beta.quicklisp.org/archive/clunit2/2020-10-16/clunit2-20201016-git.tgz"; 13 + sha256 = "1mj3c125drq9a3pxrh0r8q3gqgq68yk7qi0zbqh4mkpavl1aspdp"; 13 14 }; 14 15 15 16 packageName = "clunit2";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clx.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''clx''; 4 - version = ''20200715-git''; 4 + baseName = "clx"; 5 + version = "20200715-git"; 5 6 6 7 parasites = [ "clx/test" ]; 7 8 8 - description = ''An implementation of the X Window System protocol in Lisp.''; 9 + description = "An implementation of the X Window System protocol in Lisp."; 9 10 10 11 deps = [ args."fiasco" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/clx/2020-07-15/clx-20200715-git.tgz''; 14 - sha256 = ''1fvx6m3imvkkd0z5a3jmm2v6mkrndwsidhykrs229rqx343zg8ra''; 14 + url = "http://beta.quicklisp.org/archive/clx/2020-07-15/clx-20200715-git.tgz"; 15 + sha256 = "1fvx6m3imvkkd0z5a3jmm2v6mkrndwsidhykrs229rqx343zg8ra"; 15 16 }; 16 17 17 18 packageName = "clx";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/collectors.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''collectors''; 4 - version = ''20161204-git''; 4 + baseName = "collectors"; 5 + version = "20161204-git"; 5 6 6 7 parasites = [ "collectors-test" ]; 7 8 8 - description = ''A library providing various collector type macros 9 - pulled from arnesi into its own library and stripped of dependencies''; 9 + description = "A library providing various collector type macros 10 + pulled from arnesi into its own library and stripped of dependencies"; 10 11 11 12 deps = [ args."alexandria" args."closer-mop" args."iterate" args."lisp-unit2" args."symbol-munger" ]; 12 13 13 14 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/collectors/2016-12-04/collectors-20161204-git.tgz''; 15 - sha256 = ''0cf2y2yxraqs9v54gbj8hhp7s522gz8qfwwc5hvlhl2s7540b2zf''; 15 + url = "http://beta.quicklisp.org/archive/collectors/2016-12-04/collectors-20161204-git.tgz"; 16 + sha256 = "0cf2y2yxraqs9v54gbj8hhp7s522gz8qfwwc5hvlhl2s7540b2zf"; 16 17 }; 17 18 18 19 packageName = "collectors";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/colorize.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''colorize''; 4 - version = ''20180228-git''; 4 + baseName = "colorize"; 5 + version = "20180228-git"; 5 6 6 - description = ''A Syntax highlighting library''; 7 + description = "A Syntax highlighting library"; 7 8 8 9 deps = [ args."alexandria" args."html-encode" args."split-sequence" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/colorize/2018-02-28/colorize-20180228-git.tgz''; 12 - sha256 = ''1g0xbryavsf17zy9iy0sbqsb4lyva04h93sbaj3iwv12w50fwz2h''; 12 + url = "http://beta.quicklisp.org/archive/colorize/2018-02-28/colorize-20180228-git.tgz"; 13 + sha256 = "1g0xbryavsf17zy9iy0sbqsb4lyva04h93sbaj3iwv12w50fwz2h"; 13 14 }; 14 15 15 16 packageName = "colorize";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/command-line-arguments.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''command-line-arguments''; 4 - version = ''20200325-git''; 4 + baseName = "command-line-arguments"; 5 + version = "20200325-git"; 5 6 6 - description = ''small library to deal with command-line arguments''; 7 + description = "small library to deal with command-line arguments"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/command-line-arguments/2020-03-25/command-line-arguments-20200325-git.tgz''; 12 - sha256 = ''0ny0c0aw3mfjpmf31pnd9zfnylqh8ji2yi636w1f352c13z2w5sz''; 12 + url = "http://beta.quicklisp.org/archive/command-line-arguments/2020-03-25/command-line-arguments-20200325-git.tgz"; 13 + sha256 = "0ny0c0aw3mfjpmf31pnd9zfnylqh8ji2yi636w1f352c13z2w5sz"; 13 14 }; 14 15 15 16 packageName = "command-line-arguments";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/css-lite.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''css-lite''; 4 - version = ''20120407-git''; 4 + baseName = "css-lite"; 5 + version = "20120407-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/css-lite/2012-04-07/css-lite-20120407-git.tgz''; 12 - sha256 = ''1gf1qqaxhly6ixh9ykqhg9b52s8p5wlwi46vp2k29qy7gmx4f1qg''; 12 + url = "http://beta.quicklisp.org/archive/css-lite/2012-04-07/css-lite-20120407-git.tgz"; 13 + sha256 = "1gf1qqaxhly6ixh9ykqhg9b52s8p5wlwi46vp2k29qy7gmx4f1qg"; 13 14 }; 14 15 15 16 packageName = "css-lite";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/css-selectors-simple-tree.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''css-selectors-simple-tree''; 4 - version = ''css-selectors-20160628-git''; 4 + baseName = "css-selectors-simple-tree"; 5 + version = "css-selectors-20160628-git"; 5 6 6 - description = ''An implementation of css selectors that interacts with cl-html5-parser's simple-tree''; 7 + description = "An implementation of css selectors that interacts with cl-html5-parser's simple-tree"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."buildnode" args."cl-html5-parser" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."closure-common" args."closure-html" args."collectors" args."css-selectors" args."cxml" args."flexi-streams" args."iterate" args."named-readtables" args."puri" args."split-sequence" args."string-case" args."swank" args."symbol-munger" args."trivial-features" args."trivial-gray-streams" args."yacc" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz''; 12 - sha256 = ''0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b''; 12 + url = "http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz"; 13 + sha256 = "0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b"; 13 14 }; 14 15 15 16 packageName = "css-selectors-simple-tree";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/css-selectors-stp.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''css-selectors-stp''; 4 - version = ''css-selectors-20160628-git''; 4 + baseName = "css-selectors-stp"; 5 + version = "css-selectors-20160628-git"; 5 6 6 - description = ''An implementation of css selectors that interacts with cxml-stp''; 7 + description = "An implementation of css selectors that interacts with cxml-stp"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."buildnode" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."closure-common" args."closure-html" args."collectors" args."css-selectors" args."cxml" args."cxml-stp" args."flexi-streams" args."iterate" args."named-readtables" args."parse-number" args."puri" args."split-sequence" args."swank" args."symbol-munger" args."trivial-features" args."trivial-gray-streams" args."xpath" args."yacc" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz''; 12 - sha256 = ''0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b''; 12 + url = "http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz"; 13 + sha256 = "0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b"; 13 14 }; 14 15 15 16 packageName = "css-selectors-stp";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/css-selectors.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''css-selectors''; 4 - version = ''20160628-git''; 4 + baseName = "css-selectors"; 5 + version = "20160628-git"; 5 6 6 7 parasites = [ "css-selectors-test" ]; 7 8 8 - description = ''An implementation of css selectors''; 9 + description = "An implementation of css selectors"; 9 10 10 11 deps = [ args."alexandria" args."babel" args."buildnode" args."buildnode-xhtml" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."closure-common" args."closure-html" args."collectors" args."cxml" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" args."puri" args."split-sequence" args."swank" args."symbol-munger" args."trivial-features" args."trivial-gray-streams" args."yacc" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz''; 14 - sha256 = ''0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b''; 14 + url = "http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz"; 15 + sha256 = "0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b"; 15 16 }; 16 17 17 18 packageName = "css-selectors";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cxml-stp.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cxml-stp''; 4 - version = ''20200325-git''; 4 + baseName = "cxml-stp"; 5 + version = "20200325-git"; 5 6 6 7 parasites = [ "cxml-stp/test" ]; 7 8 8 - description = ''System lacks description''; 9 + description = "System lacks description"; 9 10 10 11 deps = [ args."alexandria" args."babel" args."cl-ppcre" args."closure-common" args."cxml" args."cxml_slash_test" args."parse-number" args."puri" args."rt" args."trivial-features" args."trivial-gray-streams" args."xpath" args."xpath_slash_test" args."yacc" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cxml-stp/2020-03-25/cxml-stp-20200325-git.tgz''; 14 - sha256 = ''1y26bksmysvxifqx4lslpbsdvmcqkf7di36a3yyqnjgrb5r0jv1n''; 14 + url = "http://beta.quicklisp.org/archive/cxml-stp/2020-03-25/cxml-stp-20200325-git.tgz"; 15 + sha256 = "1y26bksmysvxifqx4lslpbsdvmcqkf7di36a3yyqnjgrb5r0jv1n"; 15 16 }; 16 17 17 18 packageName = "cxml-stp";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cxml.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''cxml''; 4 - version = ''20200610-git''; 4 + baseName = "cxml"; 5 + version = "20200610-git"; 5 6 6 7 parasites = [ "cxml/dom" "cxml/klacks" "cxml/test" "cxml/xml" ]; 7 8 8 - description = ''Closure XML - a Common Lisp XML parser''; 9 + description = "Closure XML - a Common Lisp XML parser"; 9 10 10 11 deps = [ args."alexandria" args."babel" args."closure-common" args."puri" args."trivial-features" args."trivial-gray-streams" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cxml/2020-06-10/cxml-20200610-git.tgz''; 14 - sha256 = ''0545rh4mfxqx2yn9b48s0hzd5w80kars7hpykbg0lgf7ys5218mq''; 14 + url = "http://beta.quicklisp.org/archive/cxml/2020-06-10/cxml-20200610-git.tgz"; 15 + sha256 = "0545rh4mfxqx2yn9b48s0hzd5w80kars7hpykbg0lgf7ys5218mq"; 15 16 }; 16 17 17 18 packageName = "cxml";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-mysql.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''dbd-mysql''; 4 - version = ''cl-dbi-20210228-git''; 4 + baseName = "dbd-mysql"; 5 + version = "cl-dbi-20210228-git"; 5 6 6 - description = ''Database driver for MySQL.''; 7 + description = "Database driver for MySQL."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-mysql" args."closer-mop" args."dbi" args."split-sequence" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz''; 12 - sha256 = ''0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk''; 12 + url = "http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz"; 13 + sha256 = "0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk"; 13 14 }; 14 15 15 16 packageName = "dbd-mysql";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-postgres.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''dbd-postgres''; 4 - version = ''cl-dbi-20210228-git''; 4 + baseName = "dbd-postgres"; 5 + version = "cl-dbi-20210228-git"; 5 6 6 - description = ''Database driver for PostgreSQL.''; 7 + description = "Database driver for PostgreSQL."; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-postgres" args."cl-ppcre" args."closer-mop" args."dbi" args."ironclad" args."md5" args."split-sequence" args."trivial-garbage" args."uax-15" args."usocket" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz''; 12 - sha256 = ''0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk''; 12 + url = "http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz"; 13 + sha256 = "0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk"; 13 14 }; 14 15 15 16 packageName = "dbd-postgres";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-sqlite3.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''dbd-sqlite3''; 4 - version = ''cl-dbi-20210228-git''; 4 + baseName = "dbd-sqlite3"; 5 + version = "cl-dbi-20210228-git"; 5 6 6 - description = ''Database driver for SQLite3.''; 7 + description = "Database driver for SQLite3."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."closer-mop" args."dbi" args."iterate" args."split-sequence" args."sqlite" args."trivial-features" args."trivial-garbage" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz''; 12 - sha256 = ''0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk''; 12 + url = "http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz"; 13 + sha256 = "0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk"; 13 14 }; 14 15 15 16 packageName = "dbd-sqlite3";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dbi-test.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''dbi-test''; 4 - version = ''cl-dbi-20210228-git''; 4 + baseName = "dbi-test"; 5 + version = "cl-dbi-20210228-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."closer-mop" args."dbi" args."dissect" args."rove" args."split-sequence" args."trivial-gray-streams" args."trivial-types" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz''; 12 - sha256 = ''0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk''; 12 + url = "http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz"; 13 + sha256 = "0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk"; 13 14 }; 14 15 15 16 packageName = "dbi-test";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dbi.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''dbi''; 4 - version = ''cl-20210228-git''; 4 + baseName = "dbi"; 5 + version = "cl-20210228-git"; 5 6 6 7 parasites = [ "dbi/test" ]; 7 8 8 - description = ''Database independent interface for Common Lisp''; 9 + description = "Database independent interface for Common Lisp"; 9 10 10 11 deps = [ args."alexandria" args."bordeaux-threads" args."cl-mysql" args."cl-postgres" args."closer-mop" args."dbd-mysql" args."dbd-postgres" args."dbd-sqlite3" args."dbi-test" args."rove" args."split-sequence" args."sqlite" args."trivial-garbage" args."trivial-types" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz''; 14 - sha256 = ''0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk''; 14 + url = "http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz"; 15 + sha256 = "0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk"; 15 16 }; 16 17 17 18 packageName = "dbi";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dbus.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''dbus''; 4 - version = ''20200610-git''; 4 + baseName = "dbus"; 5 + version = "20200610-git"; 5 6 6 - description = ''A D-BUS client library for Common Lisp''; 7 + description = "A D-BUS client library for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."asdf-package-system" args."babel" args."cl-xmlspam" args."flexi-streams" args."ieee-floats" args."iolib" args."ironclad" args."trivial-garbage" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/dbus/2020-06-10/dbus-20200610-git.tgz''; 12 - sha256 = ''1njwjf1z9xngsfmlddmbcan49vcjqvvxfkhbi62xcxwbn9rgqn79''; 12 + url = "http://beta.quicklisp.org/archive/dbus/2020-06-10/dbus-20200610-git.tgz"; 13 + sha256 = "1njwjf1z9xngsfmlddmbcan49vcjqvvxfkhbi62xcxwbn9rgqn79"; 13 14 }; 14 15 15 16 packageName = "dbus";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dexador.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''dexador''; 4 - version = ''20210228-git''; 4 + baseName = "dexador"; 5 + version = "20210228-git"; 5 6 6 - description = ''Yet another HTTP client for Common Lisp''; 7 + description = "Yet another HTTP client for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."chipz" args."chunga" args."cl_plus_ssl" args."cl-base64" args."cl-cookie" args."cl-ppcre" args."cl-reexport" args."cl-utilities" args."fast-http" args."fast-io" args."flexi-streams" args."local-time" args."proc-parse" args."quri" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."trivial-mimes" args."usocket" args."xsubseq" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/dexador/2021-02-28/dexador-20210228-git.tgz''; 12 - sha256 = ''0glzvi7nbr58izpwr8xzxvlcc78zmgwqaik374rmcy6w89q5ksw7''; 12 + url = "http://beta.quicklisp.org/archive/dexador/2021-02-28/dexador-20210228-git.tgz"; 13 + sha256 = "0glzvi7nbr58izpwr8xzxvlcc78zmgwqaik374rmcy6w89q5ksw7"; 13 14 }; 14 15 15 16 packageName = "dexador";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dissect.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''dissect''; 4 - version = ''20200427-git''; 4 + baseName = "dissect"; 5 + version = "20200427-git"; 5 6 6 - description = ''A lib for introspecting the call stack and active restarts.''; 7 + description = "A lib for introspecting the call stack and active restarts."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/dissect/2020-04-27/dissect-20200427-git.tgz''; 12 - sha256 = ''1d7sri20jma9r105lxv0sx2q60kb8zp7bf023kain3rnyqr74v8a''; 12 + url = "http://beta.quicklisp.org/archive/dissect/2020-04-27/dissect-20200427-git.tgz"; 13 + sha256 = "1d7sri20jma9r105lxv0sx2q60kb8zp7bf023kain3rnyqr74v8a"; 13 14 }; 14 15 15 16 packageName = "dissect";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/djula.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''djula''; 4 - version = ''20210124-git''; 4 + baseName = "djula"; 5 + version = "20210124-git"; 5 6 6 - description = ''An implementation of Django templates for Common Lisp.''; 7 + description = "An implementation of Django templates for Common Lisp."; 7 8 8 9 deps = [ args."access" args."alexandria" args."anaphora" args."arnesi" args."babel" args."cl-annot" args."cl-interpol" args."cl-locale" args."cl-ppcre" args."cl-slice" args."cl-syntax" args."cl-syntax-annot" args."cl-unicode" args."closer-mop" args."collectors" args."flexi-streams" args."gettext" args."iterate" args."let-plus" args."local-time" args."named-readtables" args."parser-combinators" args."split-sequence" args."symbol-munger" args."trivial-backtrace" args."trivial-features" args."trivial-gray-streams" args."trivial-types" args."yacc" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/djula/2021-01-24/djula-20210124-git.tgz''; 12 - sha256 = ''0hkyp5himz73r2l3vbwkwsd1as4f75ih6wh7v1wbabpbjwh2j2vx''; 12 + url = "http://beta.quicklisp.org/archive/djula/2021-01-24/djula-20210124-git.tgz"; 13 + sha256 = "0hkyp5himz73r2l3vbwkwsd1as4f75ih6wh7v1wbabpbjwh2j2vx"; 13 14 }; 14 15 15 16 packageName = "djula";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/do-urlencode.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''do-urlencode''; 4 - version = ''20181018-git''; 4 + baseName = "do-urlencode"; 5 + version = "20181018-git"; 5 6 6 - description = ''Percent Encoding (aka URL Encoding) library''; 7 + description = "Percent Encoding (aka URL Encoding) library"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/do-urlencode/2018-10-18/do-urlencode-20181018-git.tgz''; 12 - sha256 = ''1cajd219s515y65kp562c6xczqaq0p4lyp13iv00z6i44rijmfp2''; 12 + url = "http://beta.quicklisp.org/archive/do-urlencode/2018-10-18/do-urlencode-20181018-git.tgz"; 13 + sha256 = "1cajd219s515y65kp562c6xczqaq0p4lyp13iv00z6i44rijmfp2"; 13 14 }; 14 15 15 16 packageName = "do-urlencode";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/documentation-utils.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''documentation-utils''; 4 - version = ''20190710-git''; 4 + baseName = "documentation-utils"; 5 + version = "20190710-git"; 5 6 6 - description = ''A few simple tools to help you with documenting your library.''; 7 + description = "A few simple tools to help you with documenting your library."; 7 8 8 9 deps = [ args."trivial-indent" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/documentation-utils/2019-07-10/documentation-utils-20190710-git.tgz''; 12 - sha256 = ''1n3z8sw75k2jjpsg6ch5g9s4v56y96dbs4338ajrfdsk3pk4wgj3''; 12 + url = "http://beta.quicklisp.org/archive/documentation-utils/2019-07-10/documentation-utils-20190710-git.tgz"; 13 + sha256 = "1n3z8sw75k2jjpsg6ch5g9s4v56y96dbs4338ajrfdsk3pk4wgj3"; 13 14 }; 14 15 15 16 packageName = "documentation-utils";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/drakma.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''drakma''; 4 - version = ''v2.0.7''; 4 + baseName = "drakma"; 5 + version = "v2.0.7"; 5 6 6 - description = ''Full-featured http/https client based on usocket''; 7 + description = "Full-featured http/https client based on usocket"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."chipz" args."chunga" args."cl_plus_ssl" args."cl-base64" args."cl-ppcre" args."flexi-streams" args."puri" args."split-sequence" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."usocket" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/drakma/2019-11-30/drakma-v2.0.7.tgz''; 12 - sha256 = ''1r0sh0nsx7fq24yybazjw8n7grk1b85l52x523axwchnnaj58kzw''; 12 + url = "http://beta.quicklisp.org/archive/drakma/2019-11-30/drakma-v2.0.7.tgz"; 13 + sha256 = "1r0sh0nsx7fq24yybazjw8n7grk1b85l52x523axwchnnaj58kzw"; 13 14 }; 14 15 15 16 packageName = "drakma";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/eager-future2.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''eager-future2''; 4 - version = ''20191130-git''; 4 + baseName = "eager-future2"; 5 + version = "20191130-git"; 5 6 6 - description = ''Parallel programming library providing the futures/promises synchronization mechanism''; 7 + description = "Parallel programming library providing the futures/promises synchronization mechanism"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."trivial-garbage" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/eager-future2/2019-11-30/eager-future2-20191130-git.tgz''; 12 - sha256 = ''01pvgcp6d4hz1arpvsv73m8xnbv8qm2d0qychpxc72d0m71p6ks0''; 12 + url = "http://beta.quicklisp.org/archive/eager-future2/2019-11-30/eager-future2-20191130-git.tgz"; 13 + sha256 = "01pvgcp6d4hz1arpvsv73m8xnbv8qm2d0qychpxc72d0m71p6ks0"; 13 14 }; 14 15 15 16 packageName = "eager-future2";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/enchant.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''enchant''; 4 - version = ''cl-20190521-git''; 4 + baseName = "enchant"; 5 + version = "cl-20190521-git"; 5 6 6 - description = ''Programming interface for Enchant spell-checker library''; 7 + description = "Programming interface for Enchant spell-checker library"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-enchant/2019-05-21/cl-enchant-20190521-git.tgz''; 12 - sha256 = ''16ag48fr74m536an8fak5z0lfjdb265gv1ajai1lqg0vq2l5mr14''; 12 + url = "http://beta.quicklisp.org/archive/cl-enchant/2019-05-21/cl-enchant-20190521-git.tgz"; 13 + sha256 = "16ag48fr74m536an8fak5z0lfjdb265gv1ajai1lqg0vq2l5mr14"; 13 14 }; 14 15 15 16 packageName = "enchant";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/esrap-peg.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''esrap-peg''; 4 - version = ''20191007-git''; 4 + baseName = "esrap-peg"; 5 + version = "20191007-git"; 5 6 6 - description = ''A wrapper around Esrap to allow generating Esrap grammars from PEG definitions''; 7 + description = "A wrapper around Esrap to allow generating Esrap grammars from PEG definitions"; 7 8 8 9 deps = [ args."alexandria" args."cl-unification" args."esrap" args."iterate" args."trivial-with-current-source-form" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/esrap-peg/2019-10-07/esrap-peg-20191007-git.tgz''; 12 - sha256 = ''0285ngcm73rpzmr0ydy6frps2b4q6n4jymjv3ncwsh81x5blfvis''; 12 + url = "http://beta.quicklisp.org/archive/esrap-peg/2019-10-07/esrap-peg-20191007-git.tgz"; 13 + sha256 = "0285ngcm73rpzmr0ydy6frps2b4q6n4jymjv3ncwsh81x5blfvis"; 13 14 }; 14 15 15 16 packageName = "esrap-peg";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/esrap.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''esrap''; 4 - version = ''20201220-git''; 4 + baseName = "esrap"; 5 + version = "20201220-git"; 5 6 6 7 parasites = [ "esrap/tests" ]; 7 8 8 - description = ''A Packrat / Parsing Grammar / TDPL parser for Common Lisp.''; 9 + description = "A Packrat / Parsing Grammar / TDPL parser for Common Lisp."; 9 10 10 11 deps = [ args."alexandria" args."fiveam" args."trivial-with-current-source-form" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/esrap/2020-12-20/esrap-20201220-git.tgz''; 14 - sha256 = ''0yhi4ay98i81nqv9yjlj321azwmiylsw0afdd6y1c1zflfcrzkrk''; 14 + url = "http://beta.quicklisp.org/archive/esrap/2020-12-20/esrap-20201220-git.tgz"; 15 + sha256 = "0yhi4ay98i81nqv9yjlj321azwmiylsw0afdd6y1c1zflfcrzkrk"; 15 16 }; 16 17 17 18 packageName = "esrap";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/external-program.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''external-program''; 4 - version = ''20190307-git''; 4 + baseName = "external-program"; 5 + version = "20190307-git"; 5 6 6 7 parasites = [ "external-program-test" ]; 7 8 8 - description = ''System lacks description''; 9 + description = "System lacks description"; 9 10 10 11 deps = [ args."fiveam" args."trivial-features" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/external-program/2019-03-07/external-program-20190307-git.tgz''; 14 - sha256 = ''1nl3mngh7vp2l9mfbdhni4nc164zznafnl74p1kv9j07n5fcpnyz''; 14 + url = "http://beta.quicklisp.org/archive/external-program/2019-03-07/external-program-20190307-git.tgz"; 15 + sha256 = "1nl3mngh7vp2l9mfbdhni4nc164zznafnl74p1kv9j07n5fcpnyz"; 15 16 }; 16 17 17 18 packageName = "external-program";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-csv.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''fare-csv''; 4 - version = ''20171227-git''; 4 + baseName = "fare-csv"; 5 + version = "20171227-git"; 5 6 6 - description = ''Robust CSV parser and printer''; 7 + description = "Robust CSV parser and printer"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-csv/2017-12-27/fare-csv-20171227-git.tgz''; 12 - sha256 = ''1hkzg05kq2c4xihsfx4wk1k6mmjq2fw40id8vy0315rpa47a5i7x''; 12 + url = "http://beta.quicklisp.org/archive/fare-csv/2017-12-27/fare-csv-20171227-git.tgz"; 13 + sha256 = "1hkzg05kq2c4xihsfx4wk1k6mmjq2fw40id8vy0315rpa47a5i7x"; 13 14 }; 14 15 15 16 packageName = "fare-csv";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-mop.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''fare-mop''; 4 - version = ''20151218-git''; 4 + baseName = "fare-mop"; 5 + version = "20151218-git"; 5 6 6 - description = ''Utilities using the MOP; notably make informative pretty-printing trivial''; 7 + description = "Utilities using the MOP; notably make informative pretty-printing trivial"; 7 8 8 9 deps = [ args."closer-mop" args."fare-utils" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-mop/2015-12-18/fare-mop-20151218-git.tgz''; 12 - sha256 = ''0bvrwqvacy114xsblrk2w28qk6b484a3p0w14mzl264b3wjrdna9''; 12 + url = "http://beta.quicklisp.org/archive/fare-mop/2015-12-18/fare-mop-20151218-git.tgz"; 13 + sha256 = "0bvrwqvacy114xsblrk2w28qk6b484a3p0w14mzl264b3wjrdna9"; 13 14 }; 14 15 15 16 packageName = "fare-mop";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-quasiquote-extras.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''fare-quasiquote-extras''; 4 - version = ''fare-quasiquote-20200925-git''; 4 + baseName = "fare-quasiquote-extras"; 5 + version = "fare-quasiquote-20200925-git"; 5 6 6 - description = ''fare-quasiquote plus extras''; 7 + description = "fare-quasiquote plus extras"; 7 8 8 9 deps = [ args."alexandria" args."closer-mop" args."fare-quasiquote" args."fare-quasiquote-optima" args."fare-quasiquote-readtable" args."fare-utils" args."lisp-namespace" args."named-readtables" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_quasiquote" args."trivia_dot_trivial" args."trivial-cltl2" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz''; 12 - sha256 = ''0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b''; 12 + url = "http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz"; 13 + sha256 = "0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b"; 13 14 }; 14 15 15 16 packageName = "fare-quasiquote-extras";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-quasiquote-optima.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''fare-quasiquote-optima''; 4 - version = ''fare-quasiquote-20200925-git''; 4 + baseName = "fare-quasiquote-optima"; 5 + version = "fare-quasiquote-20200925-git"; 5 6 6 - description = ''fare-quasiquote extension for optima''; 7 + description = "fare-quasiquote extension for optima"; 7 8 8 9 deps = [ args."alexandria" args."closer-mop" args."fare-quasiquote" args."fare-quasiquote-readtable" args."fare-utils" args."lisp-namespace" args."named-readtables" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_quasiquote" args."trivia_dot_trivial" args."trivial-cltl2" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz''; 12 - sha256 = ''0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b''; 12 + url = "http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz"; 13 + sha256 = "0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b"; 13 14 }; 14 15 15 16 packageName = "fare-quasiquote-optima";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-quasiquote-readtable.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''fare-quasiquote-readtable''; 4 - version = ''fare-quasiquote-20200925-git''; 4 + baseName = "fare-quasiquote-readtable"; 5 + version = "fare-quasiquote-20200925-git"; 5 6 6 - description = ''Using fare-quasiquote with named-readtable''; 7 + description = "Using fare-quasiquote with named-readtable"; 7 8 8 9 deps = [ args."fare-quasiquote" args."fare-utils" args."named-readtables" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz''; 12 - sha256 = ''0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b''; 12 + url = "http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz"; 13 + sha256 = "0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b"; 13 14 }; 14 15 15 16 packageName = "fare-quasiquote-readtable";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-quasiquote.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''fare-quasiquote''; 4 - version = ''20200925-git''; 4 + baseName = "fare-quasiquote"; 5 + version = "20200925-git"; 5 6 6 - description = ''Portable, matchable implementation of quasiquote''; 7 + description = "Portable, matchable implementation of quasiquote"; 7 8 8 9 deps = [ args."fare-utils" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz''; 12 - sha256 = ''0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b''; 12 + url = "http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz"; 13 + sha256 = "0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b"; 13 14 }; 14 15 15 16 packageName = "fare-quasiquote";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-utils.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''fare-utils''; 4 - version = ''20170124-git''; 4 + baseName = "fare-utils"; 5 + version = "20170124-git"; 5 6 6 - description = ''Basic functions and macros, interfaces, pure and stateful datastructures''; 7 + description = "Basic functions and macros, interfaces, pure and stateful datastructures"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-utils/2017-01-24/fare-utils-20170124-git.tgz''; 12 - sha256 = ''0jhb018ccn3spkgjywgd0524m5qacn8x15fdiban4zz3amj9dapq''; 12 + url = "http://beta.quicklisp.org/archive/fare-utils/2017-01-24/fare-utils-20170124-git.tgz"; 13 + sha256 = "0jhb018ccn3spkgjywgd0524m5qacn8x15fdiban4zz3amj9dapq"; 13 14 }; 14 15 15 16 packageName = "fare-utils";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fast-http.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''fast-http''; 4 - version = ''20191007-git''; 4 + baseName = "fast-http"; 5 + version = "20191007-git"; 5 6 6 - description = ''A fast HTTP protocol parser in Common Lisp''; 7 + description = "A fast HTTP protocol parser in Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cl-utilities" args."flexi-streams" args."proc-parse" args."smart-buffer" args."trivial-features" args."trivial-gray-streams" args."xsubseq" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fast-http/2019-10-07/fast-http-20191007-git.tgz''; 12 - sha256 = ''00qnl56cfss2blm4pp03dwv84bmkyd0kbarhahclxbn8f7pgwf32''; 12 + url = "http://beta.quicklisp.org/archive/fast-http/2019-10-07/fast-http-20191007-git.tgz"; 13 + sha256 = "00qnl56cfss2blm4pp03dwv84bmkyd0kbarhahclxbn8f7pgwf32"; 13 14 }; 14 15 15 16 packageName = "fast-http";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fast-io.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''fast-io''; 4 - version = ''20200925-git''; 4 + baseName = "fast-io"; 5 + version = "20200925-git"; 5 6 6 - description = ''Alternative I/O mechanism to a stream or vector''; 7 + description = "Alternative I/O mechanism to a stream or vector"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."static-vectors" args."trivial-features" args."trivial-gray-streams" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fast-io/2020-09-25/fast-io-20200925-git.tgz''; 12 - sha256 = ''1rgyr6y20fp3jqnx5snpjf9lngzalip2a28l04ssypwagmhaa975''; 12 + url = "http://beta.quicklisp.org/archive/fast-io/2020-09-25/fast-io-20200925-git.tgz"; 13 + sha256 = "1rgyr6y20fp3jqnx5snpjf9lngzalip2a28l04ssypwagmhaa975"; 13 14 }; 14 15 15 16 packageName = "fast-io";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fiasco.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''fiasco''; 4 - version = ''20200610-git''; 4 + baseName = "fiasco"; 5 + version = "20200610-git"; 5 6 6 7 parasites = [ "fiasco-self-tests" ]; 7 8 8 - description = ''A Common Lisp test framework that treasures your failures, logical continuation of Stefil.''; 9 + description = "A Common Lisp test framework that treasures your failures, logical continuation of Stefil."; 9 10 10 11 deps = [ args."alexandria" args."trivial-gray-streams" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/fiasco/2020-06-10/fiasco-20200610-git.tgz''; 14 - sha256 = ''1wb0ibw6ka9fbsb40zjipn7vh3jbzyfsvcc9gq19nqhbqa8gy9r4''; 14 + url = "http://beta.quicklisp.org/archive/fiasco/2020-06-10/fiasco-20200610-git.tgz"; 15 + sha256 = "1wb0ibw6ka9fbsb40zjipn7vh3jbzyfsvcc9gq19nqhbqa8gy9r4"; 15 16 }; 16 17 17 18 packageName = "fiasco";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/file-attributes.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''file-attributes''; 4 - version = ''20200925-git''; 4 + baseName = "file-attributes"; 5 + version = "20200925-git"; 5 6 6 - description = ''Access to file attributes (uid, gid, atime, mtime, mod)''; 7 + description = "Access to file attributes (uid, gid, atime, mtime, mod)"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."documentation-utils" args."trivial-features" args."trivial-indent" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/file-attributes/2020-09-25/file-attributes-20200925-git.tgz''; 12 - sha256 = ''0wq3gs36zwl8dzknj3c794l60vg1zpf0siwhd7ad9pn81v3mdan7''; 12 + url = "http://beta.quicklisp.org/archive/file-attributes/2020-09-25/file-attributes-20200925-git.tgz"; 13 + sha256 = "0wq3gs36zwl8dzknj3c794l60vg1zpf0siwhd7ad9pn81v3mdan7"; 13 14 }; 14 15 15 16 packageName = "file-attributes";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fiveam.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''fiveam''; 4 - version = ''20200925-git''; 4 + baseName = "fiveam"; 5 + version = "20200925-git"; 5 6 6 7 parasites = [ "fiveam/test" ]; 7 8 8 - description = ''A simple regression testing framework''; 9 + description = "A simple regression testing framework"; 9 10 10 11 deps = [ args."alexandria" args."net_dot_didierverna_dot_asdf-flv" args."trivial-backtrace" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/fiveam/2020-09-25/fiveam-20200925-git.tgz''; 14 - sha256 = ''0j9dzjs4prlx33f5idbcic4amx2mcgnjcyrpc3dd4b7lrw426l0d''; 14 + url = "http://beta.quicklisp.org/archive/fiveam/2020-09-25/fiveam-20200925-git.tgz"; 15 + sha256 = "0j9dzjs4prlx33f5idbcic4amx2mcgnjcyrpc3dd4b7lrw426l0d"; 15 16 }; 16 17 17 18 packageName = "fiveam";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/flexi-streams.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''flexi-streams''; 4 - version = ''20200925-git''; 4 + baseName = "flexi-streams"; 5 + version = "20200925-git"; 5 6 6 7 parasites = [ "flexi-streams-test" ]; 7 8 8 - description = ''Flexible bivalent streams for Common Lisp''; 9 + description = "Flexible bivalent streams for Common Lisp"; 9 10 10 11 deps = [ args."trivial-gray-streams" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/flexi-streams/2020-09-25/flexi-streams-20200925-git.tgz''; 14 - sha256 = ''1hmsryfkjnk4gdv803s3hpp71fpdybfl1jb5hgngxpd5lsrq0gb2''; 14 + url = "http://beta.quicklisp.org/archive/flexi-streams/2020-09-25/flexi-streams-20200925-git.tgz"; 15 + sha256 = "1hmsryfkjnk4gdv803s3hpp71fpdybfl1jb5hgngxpd5lsrq0gb2"; 15 16 }; 16 17 17 18 packageName = "flexi-streams";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/form-fiddle.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''form-fiddle''; 4 - version = ''20190710-git''; 4 + baseName = "form-fiddle"; 5 + version = "20190710-git"; 5 6 6 - description = ''A collection of utilities to destructure lambda forms.''; 7 + description = "A collection of utilities to destructure lambda forms."; 7 8 8 9 deps = [ args."documentation-utils" args."trivial-indent" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/form-fiddle/2019-07-10/form-fiddle-20190710-git.tgz''; 12 - sha256 = ''12zmqm2vls043kaka7jp6pnsvkxlyv6x183yjyrs8jk461qfydwl''; 12 + url = "http://beta.quicklisp.org/archive/form-fiddle/2019-07-10/form-fiddle-20190710-git.tgz"; 13 + sha256 = "12zmqm2vls043kaka7jp6pnsvkxlyv6x183yjyrs8jk461qfydwl"; 13 14 }; 14 15 15 16 packageName = "form-fiddle";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/fset.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''fset''; 4 - version = ''20200925-git''; 4 + baseName = "fset"; 5 + version = "20200925-git"; 5 6 6 7 parasites = [ "fset/test" ]; 7 8 8 - description = ''A functional set-theoretic collections library. 9 + description = "A functional set-theoretic collections library. 9 10 See: http://www.ergy.com/FSet.html 10 - ''; 11 + "; 11 12 12 13 deps = [ args."misc-extensions" args."mt19937" args."named-readtables" ]; 13 14 14 15 src = fetchurl { 15 - url = ''http://beta.quicklisp.org/archive/fset/2020-09-25/fset-20200925-git.tgz''; 16 - sha256 = ''19fr6ds1a493b0kbsligpn7i771r1yfshbbkdp0hxs4l792l05wv''; 16 + url = "http://beta.quicklisp.org/archive/fset/2020-09-25/fset-20200925-git.tgz"; 17 + sha256 = "19fr6ds1a493b0kbsligpn7i771r1yfshbbkdp0hxs4l792l05wv"; 17 18 }; 18 19 19 20 packageName = "fset";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/gettext.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''gettext''; 4 - version = ''20171130-git''; 4 + baseName = "gettext"; 5 + version = "20171130-git"; 5 6 6 - description = ''An pure Common Lisp implementation of gettext runtime. gettext is an internationalization and localization (i18n) system commonly used for writing multilingual programs on Unix-like computer operating systems.''; 7 + description = "An pure Common Lisp implementation of gettext runtime. gettext is an internationalization and localization (i18n) system commonly used for writing multilingual programs on Unix-like computer operating systems."; 7 8 8 9 deps = [ args."flexi-streams" args."split-sequence" args."trivial-gray-streams" args."yacc" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/gettext/2017-11-30/gettext-20171130-git.tgz''; 12 - sha256 = ''0nb8i66sb5qmpnk6rk2adlr87m322bra0xpirp63872mybd3y6yd''; 12 + url = "http://beta.quicklisp.org/archive/gettext/2017-11-30/gettext-20171130-git.tgz"; 13 + sha256 = "0nb8i66sb5qmpnk6rk2adlr87m322bra0xpirp63872mybd3y6yd"; 13 14 }; 14 15 15 16 packageName = "gettext";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/global-vars.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''global-vars''; 4 - version = ''20141106-git''; 4 + baseName = "global-vars"; 5 + version = "20141106-git"; 5 6 6 - description = ''Define efficient global variables.''; 7 + description = "Define efficient global variables."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/global-vars/2014-11-06/global-vars-20141106-git.tgz''; 12 - sha256 = ''0bjgmsifs9vrq409rfrsgrhlxwklvls1dpvh2d706i0incxq957j''; 12 + url = "http://beta.quicklisp.org/archive/global-vars/2014-11-06/global-vars-20141106-git.tgz"; 13 + sha256 = "0bjgmsifs9vrq409rfrsgrhlxwklvls1dpvh2d706i0incxq957j"; 13 14 }; 14 15 15 16 packageName = "global-vars";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/html-encode.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''html-encode''; 4 - version = ''1.2''; 4 + baseName = "html-encode"; 5 + version = "1.2"; 5 6 6 - description = ''A library for encoding text in various web-savvy encodings.''; 7 + description = "A library for encoding text in various web-savvy encodings."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-1.2.tgz''; 12 - sha256 = ''06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf''; 12 + url = "http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-1.2.tgz"; 13 + sha256 = "06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf"; 13 14 }; 14 15 15 16 packageName = "html-encode";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/http-body.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''http-body''; 4 - version = ''20190813-git''; 4 + baseName = "http-body"; 5 + version = "20190813-git"; 5 6 6 - description = ''HTTP POST data parser for Common Lisp''; 7 + description = "HTTP POST data parser for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-annot" args."cl-ppcre" args."cl-syntax" args."cl-syntax-annot" args."cl-utilities" args."fast-http" args."fast-io" args."flexi-streams" args."jonathan" args."named-readtables" args."proc-parse" args."quri" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."trivial-types" args."xsubseq" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/http-body/2019-08-13/http-body-20190813-git.tgz''; 12 - sha256 = ''1mc4xinqnvjr7cdyaywdb5lv9k34pal7lhp6f9a660r1rbxybvy8''; 12 + url = "http://beta.quicklisp.org/archive/http-body/2019-08-13/http-body-20190813-git.tgz"; 13 + sha256 = "1mc4xinqnvjr7cdyaywdb5lv9k34pal7lhp6f9a660r1rbxybvy8"; 13 14 }; 14 15 15 16 packageName = "http-body";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''hu_dot_dwim_dot_asdf''; 4 - version = ''20200925-darcs''; 4 + baseName = "hu_dot_dwim_dot_asdf"; 5 + version = "20200925-darcs"; 5 6 6 - description = ''Various ASDF extensions such as attached test and documentation system, explicit development support, etc.''; 7 + description = "Various ASDF extensions such as attached test and documentation system, explicit development support, etc."; 7 8 8 9 deps = [ args."uiop" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/hu.dwim.asdf/2020-09-25/hu.dwim.asdf-20200925-darcs.tgz''; 12 - sha256 = ''1812gk65x8yy8s817zhzga52zvdlagws4sw6a8f6zk7yaaa6br8h''; 12 + url = "http://beta.quicklisp.org/archive/hu.dwim.asdf/2020-09-25/hu.dwim.asdf-20200925-darcs.tgz"; 13 + sha256 = "1812gk65x8yy8s817zhzga52zvdlagws4sw6a8f6zk7yaaa6br8h"; 13 14 }; 14 15 15 16 packageName = "hu.dwim.asdf";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_defclass-star.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''hu_dot_dwim_dot_defclass-star''; 4 - version = ''stable-git''; 4 + baseName = "hu_dot_dwim_dot_defclass-star"; 5 + version = "stable-git"; 5 6 6 - description = ''Simplify class like definitions with defclass* and friends.''; 7 + description = "Simplify class like definitions with defclass* and friends."; 7 8 8 9 deps = [ args."hu_dot_dwim_dot_asdf" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/hu.dwim.defclass-star/2021-02-28/hu.dwim.defclass-star-stable-git.tgz''; 12 - sha256 = ''1zj4c9pz7y69gclyd7kzf6d6s1r0am49czgvp2axbv7w50j5caf9''; 12 + url = "http://beta.quicklisp.org/archive/hu.dwim.defclass-star/2021-02-28/hu.dwim.defclass-star-stable-git.tgz"; 13 + sha256 = "1zj4c9pz7y69gclyd7kzf6d6s1r0am49czgvp2axbv7w50j5caf9"; 13 14 }; 14 15 15 16 packageName = "hu.dwim.defclass-star";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_stefil.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''hu_dot_dwim_dot_stefil''; 4 - version = ''20200218-darcs''; 4 + baseName = "hu_dot_dwim_dot_stefil"; 5 + version = "20200218-darcs"; 5 6 6 7 parasites = [ "hu.dwim.stefil/test" ]; 7 8 8 - description = ''A Simple Test Framework In Lisp.''; 9 + description = "A Simple Test Framework In Lisp."; 9 10 10 11 deps = [ args."alexandria" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz''; 14 - sha256 = ''16p25pq9fhk0dny6r43yl9z24g6qm6dag9zf2cila9v9jh3r76qf''; 14 + url = "http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz"; 15 + sha256 = "16p25pq9fhk0dny6r43yl9z24g6qm6dag9zf2cila9v9jh3r76qf"; 15 16 }; 16 17 17 18 packageName = "hu.dwim.stefil";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/hunchentoot.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''hunchentoot''; 4 - version = ''v1.3.0''; 4 + baseName = "hunchentoot"; 5 + version = "v1.3.0"; 5 6 6 7 parasites = [ "hunchentoot-dev" "hunchentoot-test" ]; 7 8 8 - description = ''Hunchentoot is a HTTP server based on USOCKET and 9 + description = "Hunchentoot is a HTTP server based on USOCKET and 9 10 BORDEAUX-THREADS. It supports HTTP 1.1, serves static files, has a 10 11 simple framework for user-defined handlers and can be extended 11 - through subclassing.''; 12 + through subclassing."; 12 13 13 14 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."chunga" args."cl_plus_ssl" args."cl-base64" args."cl-fad" args."cl-ppcre" args."cl-who" args."cxml-stp" args."drakma" args."flexi-streams" args."md5" args."rfc2388" args."split-sequence" args."swank" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."usocket" args."xpath" ]; 14 15 15 16 src = fetchurl { 16 - url = ''http://beta.quicklisp.org/archive/hunchentoot/2020-06-10/hunchentoot-v1.3.0.tgz''; 17 - sha256 = ''08znpi5lq2dhgv6mhvabk3w4ggrg31dbv4k6gmshr18xd2lq43i8''; 17 + url = "http://beta.quicklisp.org/archive/hunchentoot/2020-06-10/hunchentoot-v1.3.0.tgz"; 18 + sha256 = "08znpi5lq2dhgv6mhvabk3w4ggrg31dbv4k6gmshr18xd2lq43i8"; 18 19 }; 19 20 20 21 packageName = "hunchentoot";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/idna.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''idna''; 4 - version = ''20120107-git''; 4 + baseName = "idna"; 5 + version = "20120107-git"; 5 6 6 - description = ''IDNA (international domain names) string encoding and decoding routines''; 7 + description = "IDNA (international domain names) string encoding and decoding routines"; 7 8 8 9 deps = [ args."split-sequence" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/idna/2012-01-07/idna-20120107-git.tgz''; 12 - sha256 = ''0q9hja9v5q7z89p0bzm2whchn05hymn3255fr5zj3fkja8akma5c''; 12 + url = "http://beta.quicklisp.org/archive/idna/2012-01-07/idna-20120107-git.tgz"; 13 + sha256 = "0q9hja9v5q7z89p0bzm2whchn05hymn3255fr5zj3fkja8akma5c"; 13 14 }; 14 15 15 16 packageName = "idna";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/ieee-floats.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''ieee-floats''; 4 - version = ''20170830-git''; 4 + baseName = "ieee-floats"; 5 + version = "20170830-git"; 5 6 6 7 parasites = [ "ieee-floats-tests" ]; 7 8 8 - description = ''Convert floating point values to IEEE 754 binary representation''; 9 + description = "Convert floating point values to IEEE 754 binary representation"; 9 10 10 11 deps = [ args."fiveam" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/ieee-floats/2017-08-30/ieee-floats-20170830-git.tgz''; 14 - sha256 = ''15c4q4w3cda82vqlpvdfrnah6ms6vxbjf4a0chd10daw72rwayqk''; 14 + url = "http://beta.quicklisp.org/archive/ieee-floats/2017-08-30/ieee-floats-20170830-git.tgz"; 15 + sha256 = "15c4q4w3cda82vqlpvdfrnah6ms6vxbjf4a0chd10daw72rwayqk"; 15 16 }; 16 17 17 18 packageName = "ieee-floats";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/inferior-shell.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''inferior-shell''; 4 - version = ''20200925-git''; 4 + baseName = "inferior-shell"; 5 + version = "20200925-git"; 5 6 6 7 parasites = [ "inferior-shell/test" ]; 7 8 8 - description = ''spawn local or remote processes and shell pipes''; 9 + description = "spawn local or remote processes and shell pipes"; 9 10 10 11 deps = [ args."alexandria" args."closer-mop" args."fare-mop" args."fare-quasiquote" args."fare-quasiquote-extras" args."fare-quasiquote-optima" args."fare-quasiquote-readtable" args."fare-utils" args."hu_dot_dwim_dot_stefil" args."introspect-environment" args."iterate" args."lisp-namespace" args."named-readtables" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_quasiquote" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/inferior-shell/2020-09-25/inferior-shell-20200925-git.tgz''; 14 - sha256 = ''1hykybcmdpcjk0irl4f1lmqc4aawpp1zfvh27qp6mldsibra7l80''; 14 + url = "http://beta.quicklisp.org/archive/inferior-shell/2020-09-25/inferior-shell-20200925-git.tgz"; 15 + sha256 = "1hykybcmdpcjk0irl4f1lmqc4aawpp1zfvh27qp6mldsibra7l80"; 15 16 }; 16 17 17 18 packageName = "inferior-shell";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/introspect-environment.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''introspect-environment''; 4 - version = ''20200715-git''; 4 + baseName = "introspect-environment"; 5 + version = "20200715-git"; 5 6 6 - description = ''Small interface to portable but nonstandard introspection of CL environments.''; 7 + description = "Small interface to portable but nonstandard introspection of CL environments."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/introspect-environment/2020-07-15/introspect-environment-20200715-git.tgz''; 12 - sha256 = ''1m2vqpbrvjb0mkmi2n5rg3j0dr68hyv23lbw6s474hylx02nw5ns''; 12 + url = "http://beta.quicklisp.org/archive/introspect-environment/2020-07-15/introspect-environment-20200715-git.tgz"; 13 + sha256 = "1m2vqpbrvjb0mkmi2n5rg3j0dr68hyv23lbw6s474hylx02nw5ns"; 13 14 }; 14 15 15 16 packageName = "introspect-environment";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''iolib''; 4 - version = ''v0.8.3''; 4 + baseName = "iolib"; 5 + version = "v0.8.3"; 5 6 6 7 parasites = [ "iolib/multiplex" "iolib/os" "iolib/pathnames" "iolib/sockets" "iolib/streams" "iolib/syscalls" "iolib/trivial-sockets" "iolib/zstreams" ]; 7 8 8 - description = ''I/O library.''; 9 + description = "I/O library."; 9 10 10 11 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."idna" args."iolib_dot_asdf" args."iolib_dot_base" args."iolib_dot_common-lisp" args."iolib_dot_conf" args."iolib_dot_grovel" args."split-sequence" args."swap-bytes" args."trivial-features" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz''; 14 - sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c''; 14 + url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 15 + sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 15 16 }; 16 17 17 18 packageName = "iolib";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_asdf.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''iolib_dot_asdf''; 4 - version = ''iolib-v0.8.3''; 4 + baseName = "iolib_dot_asdf"; 5 + version = "iolib-v0.8.3"; 5 6 6 - description = ''A few ASDF component classes.''; 7 + description = "A few ASDF component classes."; 7 8 8 9 deps = [ args."alexandria" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz''; 12 - sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c''; 12 + url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 13 + sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 13 14 }; 14 15 15 16 packageName = "iolib.asdf";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_base.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''iolib_dot_base''; 4 - version = ''iolib-v0.8.3''; 4 + baseName = "iolib_dot_base"; 5 + version = "iolib-v0.8.3"; 5 6 6 - description = ''Base IOlib package, used instead of CL.''; 7 + description = "Base IOlib package, used instead of CL."; 7 8 8 9 deps = [ args."alexandria" args."iolib_dot_asdf" args."iolib_dot_common-lisp" args."iolib_dot_conf" args."split-sequence" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz''; 12 - sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c''; 12 + url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 13 + sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 13 14 }; 14 15 15 16 packageName = "iolib.base";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_common-lisp.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''iolib_dot_common-lisp''; 4 - version = ''iolib-v0.8.3''; 4 + baseName = "iolib_dot_common-lisp"; 5 + version = "iolib-v0.8.3"; 5 6 6 - description = ''Slightly modified Common Lisp.''; 7 + description = "Slightly modified Common Lisp."; 7 8 8 9 deps = [ args."alexandria" args."iolib_dot_asdf" args."iolib_dot_conf" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz''; 12 - sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c''; 12 + url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 13 + sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 13 14 }; 14 15 15 16 packageName = "iolib.common-lisp";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_conf.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''iolib_dot_conf''; 4 - version = ''iolib-v0.8.3''; 4 + baseName = "iolib_dot_conf"; 5 + version = "iolib-v0.8.3"; 5 6 6 - description = ''Compile-time configuration for IOLib.''; 7 + description = "Compile-time configuration for IOLib."; 7 8 8 9 deps = [ args."alexandria" args."iolib_dot_asdf" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz''; 12 - sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c''; 12 + url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 13 + sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 13 14 }; 14 15 15 16 packageName = "iolib.conf";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_grovel.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''iolib_dot_grovel''; 4 - version = ''iolib-v0.8.3''; 4 + baseName = "iolib_dot_grovel"; 5 + version = "iolib-v0.8.3"; 5 6 6 - description = ''The CFFI Groveller''; 7 + description = "The CFFI Groveller"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."iolib_dot_asdf" args."iolib_dot_base" args."iolib_dot_common-lisp" args."iolib_dot_conf" args."split-sequence" args."trivial-features" args."uiop" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz''; 12 - sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c''; 12 + url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 13 + sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 13 14 }; 14 15 15 16 packageName = "iolib.grovel";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/ironclad.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''ironclad''; 4 - version = ''v0.54''; 4 + baseName = "ironclad"; 5 + version = "v0.54"; 5 6 6 7 parasites = [ "ironclad/tests" ]; 7 8 8 - description = ''A cryptographic toolkit written in pure Common Lisp''; 9 + description = "A cryptographic toolkit written in pure Common Lisp"; 9 10 10 11 deps = [ args."alexandria" args."bordeaux-threads" args."rt" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/ironclad/2021-01-24/ironclad-v0.54.tgz''; 14 - sha256 = ''01mpsnjx8cgn3wx2n0dkv8v83z93da9zrxncn58ghbpyq3z1i4w2''; 14 + url = "http://beta.quicklisp.org/archive/ironclad/2021-01-24/ironclad-v0.54.tgz"; 15 + sha256 = "01mpsnjx8cgn3wx2n0dkv8v83z93da9zrxncn58ghbpyq3z1i4w2"; 15 16 }; 16 17 17 18 packageName = "ironclad";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iterate.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''iterate''; 4 - version = ''20210228-git''; 4 + baseName = "iterate"; 5 + version = "20210228-git"; 5 6 6 7 parasites = [ "iterate/tests" ]; 7 8 8 - description = ''Jonathan Amsterdam's iterator/gatherer/accumulator facility''; 9 + description = "Jonathan Amsterdam's iterator/gatherer/accumulator facility"; 9 10 10 11 deps = [ ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/iterate/2021-02-28/iterate-20210228-git.tgz''; 14 - sha256 = ''1bd6m1lxmd6an75z7j61sms4v54bfxmg1n1w7zd7fm2kb15vai46''; 14 + url = "http://beta.quicklisp.org/archive/iterate/2021-02-28/iterate-20210228-git.tgz"; 15 + sha256 = "1bd6m1lxmd6an75z7j61sms4v54bfxmg1n1w7zd7fm2kb15vai46"; 15 16 }; 16 17 17 18 packageName = "iterate";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/jonathan.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''jonathan''; 4 - version = ''20200925-git''; 4 + baseName = "jonathan"; 5 + version = "20200925-git"; 5 6 6 - description = ''High performance JSON encoder and decoder. Currently support: SBCL, CCL.''; 7 + description = "High performance JSON encoder and decoder. Currently support: SBCL, CCL."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-annot" args."cl-ppcre" args."cl-syntax" args."cl-syntax-annot" args."fast-io" args."named-readtables" args."proc-parse" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."trivial-types" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/jonathan/2020-09-25/jonathan-20200925-git.tgz''; 12 - sha256 = ''1y5v3g351nsy7px0frdr2asmcy0lyfbj73ic1f5yf4q65hrgvryx''; 12 + url = "http://beta.quicklisp.org/archive/jonathan/2020-09-25/jonathan-20200925-git.tgz"; 13 + sha256 = "1y5v3g351nsy7px0frdr2asmcy0lyfbj73ic1f5yf4q65hrgvryx"; 13 14 }; 14 15 15 16 packageName = "jonathan";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/jpl-queues.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''jpl-queues''; 4 - version = ''0.1''; 4 + baseName = "jpl-queues"; 5 + version = "0.1"; 5 6 6 - description = ''A few different kinds of queues, with optional 7 - multithreading synchronization.''; 7 + description = "A few different kinds of queues, with optional 8 + multithreading synchronization."; 8 9 9 10 deps = [ args."alexandria" args."bordeaux-threads" args."jpl-util" ]; 10 11 11 12 src = fetchurl { 12 - url = ''http://beta.quicklisp.org/archive/jpl-queues/2010-10-06/jpl-queues-0.1.tgz''; 13 - sha256 = ''1wvvv7j117h9a42qaj1g4fh4mji28xqs7s60rn6d11gk9jl76h96''; 13 + url = "http://beta.quicklisp.org/archive/jpl-queues/2010-10-06/jpl-queues-0.1.tgz"; 14 + sha256 = "1wvvv7j117h9a42qaj1g4fh4mji28xqs7s60rn6d11gk9jl76h96"; 14 15 }; 15 16 16 17 packageName = "jpl-queues";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/jpl-util.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''jpl-util''; 4 - version = ''cl-20151031-git''; 4 + baseName = "jpl-util"; 5 + version = "cl-20151031-git"; 5 6 6 - description = ''Sundry utilities for J.P. Larocque.''; 7 + description = "Sundry utilities for J.P. Larocque."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-jpl-util/2015-10-31/cl-jpl-util-20151031-git.tgz''; 12 - sha256 = ''1a3sfamgrqgsf0ql3fkbpmjbs837v1b3nxqxp4mkisp6yxanmhzx''; 12 + url = "http://beta.quicklisp.org/archive/cl-jpl-util/2015-10-31/cl-jpl-util-20151031-git.tgz"; 13 + sha256 = "1a3sfamgrqgsf0ql3fkbpmjbs837v1b3nxqxp4mkisp6yxanmhzx"; 13 14 }; 14 15 15 16 packageName = "jpl-util";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/kmrcl.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''kmrcl''; 4 - version = ''20201016-git''; 4 + baseName = "kmrcl"; 5 + version = "20201016-git"; 5 6 6 7 parasites = [ "kmrcl/test" ]; 7 8 8 - description = ''System lacks description''; 9 + description = "System lacks description"; 9 10 10 11 deps = [ args."rt" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/kmrcl/2020-10-16/kmrcl-20201016-git.tgz''; 14 - sha256 = ''0i0k61385hrzbg15qs1wprz6sis7mx2abxv1hqcc2f53rqm9b2hf''; 14 + url = "http://beta.quicklisp.org/archive/kmrcl/2020-10-16/kmrcl-20201016-git.tgz"; 15 + sha256 = "0i0k61385hrzbg15qs1wprz6sis7mx2abxv1hqcc2f53rqm9b2hf"; 15 16 }; 16 17 17 18 packageName = "kmrcl";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-component.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lack-component''; 4 - version = ''lack-20201016-git''; 4 + baseName = "lack-component"; 5 + version = "lack-20201016-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz''; 12 - sha256 = ''124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan''; 12 + url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz"; 13 + sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan"; 13 14 }; 14 15 15 16 packageName = "lack-component";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-middleware-backtrace.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lack-middleware-backtrace''; 4 - version = ''lack-20201016-git''; 4 + baseName = "lack-middleware-backtrace"; 5 + version = "lack-20201016-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."uiop" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz''; 12 - sha256 = ''124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan''; 12 + url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz"; 13 + sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan"; 13 14 }; 14 15 15 16 packageName = "lack-middleware-backtrace";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-util.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lack-util''; 4 - version = ''lack-20201016-git''; 4 + baseName = "lack-util"; 5 + version = "lack-20201016-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz''; 12 - sha256 = ''124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan''; 12 + url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz"; 13 + sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan"; 13 14 }; 14 15 15 16 packageName = "lack-util";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lack''; 4 - version = ''20201016-git''; 4 + baseName = "lack"; 5 + version = "20201016-git"; 5 6 6 - description = ''A minimal Clack''; 7 + description = "A minimal Clack"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" args."lack-component" args."lack-util" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz''; 12 - sha256 = ''124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan''; 12 + url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz"; 13 + sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan"; 13 14 }; 14 15 15 16 packageName = "lack";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/let-plus.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''let-plus''; 4 - version = ''20191130-git''; 4 + baseName = "let-plus"; 5 + version = "20191130-git"; 5 6 6 7 parasites = [ "let-plus/tests" ]; 7 8 8 - description = ''Destructuring extension of LET*.''; 9 + description = "Destructuring extension of LET*."; 9 10 10 11 deps = [ args."alexandria" args."anaphora" args."lift" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/let-plus/2019-11-30/let-plus-20191130-git.tgz''; 14 - sha256 = ''0zj0fgb7lvczgpz4jq8q851p77kma7ikn7hd2jk2c37iv4nmz29p''; 14 + url = "http://beta.quicklisp.org/archive/let-plus/2019-11-30/let-plus-20191130-git.tgz"; 15 + sha256 = "0zj0fgb7lvczgpz4jq8q851p77kma7ikn7hd2jk2c37iv4nmz29p"; 15 16 }; 16 17 17 18 packageName = "let-plus";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lev.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lev''; 4 - version = ''20150505-git''; 4 + baseName = "lev"; 5 + version = "20150505-git"; 5 6 6 - description = ''libev bindings for Common Lisp''; 7 + description = "libev bindings for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lev/2015-05-05/lev-20150505-git.tgz''; 12 - sha256 = ''0lkkzb221ks4f0qjgh6pr5lyvb4884a87p96ir4m36x411pyk5xl''; 12 + url = "http://beta.quicklisp.org/archive/lev/2015-05-05/lev-20150505-git.tgz"; 13 + sha256 = "0lkkzb221ks4f0qjgh6pr5lyvb4884a87p96ir4m36x411pyk5xl"; 13 14 }; 14 15 15 16 packageName = "lev";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lfarm-client.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lfarm-client''; 4 - version = ''lfarm-20150608-git''; 4 + baseName = "lfarm-client"; 5 + version = "lfarm-20150608-git"; 5 6 6 - description = ''Client component of lfarm, a library for distributing work across machines.''; 7 + description = "Client component of lfarm, a library for distributing work across machines."; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."cl-store" args."flexi-streams" args."lfarm-common" args."lparallel" args."split-sequence" args."trivial-gray-streams" args."usocket" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz''; 12 - sha256 = ''1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66''; 12 + url = "http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz"; 13 + sha256 = "1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66"; 13 14 }; 14 15 15 16 packageName = "lfarm-client";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/lfarm-common.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lfarm-common''; 4 - version = ''lfarm-20150608-git''; 4 + baseName = "lfarm-common"; 5 + version = "lfarm-20150608-git"; 5 6 6 - description = ''(private) Common components of lfarm, a library for distributing 7 - work across machines.''; 7 + description = "(private) Common components of lfarm, a library for distributing 8 + work across machines."; 8 9 9 10 deps = [ args."alexandria" args."bordeaux-threads" args."cl-store" args."flexi-streams" args."split-sequence" args."trivial-gray-streams" args."usocket" ]; 10 11 11 12 src = fetchurl { 12 - url = ''http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz''; 13 - sha256 = ''1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66''; 13 + url = "http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz"; 14 + sha256 = "1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66"; 14 15 }; 15 16 16 17 packageName = "lfarm-common";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lfarm-server.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lfarm-server''; 4 - version = ''lfarm-20150608-git''; 4 + baseName = "lfarm-server"; 5 + version = "lfarm-20150608-git"; 5 6 6 - description = ''Server component of lfarm, a library for distributing work across machines.''; 7 + description = "Server component of lfarm, a library for distributing work across machines."; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."cl-store" args."flexi-streams" args."lfarm-common" args."split-sequence" args."trivial-gray-streams" args."usocket" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz''; 12 - sha256 = ''1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66''; 12 + url = "http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz"; 13 + sha256 = "1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66"; 13 14 }; 14 15 15 16 packageName = "lfarm-server";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lfarm-ssl.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lfarm-ssl''; 4 - version = ''lfarm-20150608-git''; 4 + baseName = "lfarm-ssl"; 5 + version = "lfarm-20150608-git"; 5 6 6 - description = ''SSL support for lfarm''; 7 + description = "SSL support for lfarm"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl_plus_ssl" args."cl-store" args."flexi-streams" args."lfarm-common" args."split-sequence" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."usocket" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz''; 12 - sha256 = ''1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66''; 12 + url = "http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz"; 13 + sha256 = "1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66"; 13 14 }; 14 15 15 16 packageName = "lfarm-ssl";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lift.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lift''; 4 - version = ''20190521-git''; 4 + baseName = "lift"; 5 + version = "20190521-git"; 5 6 6 - description = ''LIsp Framework for Testing''; 7 + description = "LIsp Framework for Testing"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lift/2019-05-21/lift-20190521-git.tgz''; 12 - sha256 = ''0cinilin9bxzsj3mzd4488zx2irvyl5qpbykv0xbyfz2mjh94ac9''; 12 + url = "http://beta.quicklisp.org/archive/lift/2019-05-21/lift-20190521-git.tgz"; 13 + sha256 = "0cinilin9bxzsj3mzd4488zx2irvyl5qpbykv0xbyfz2mjh94ac9"; 13 14 }; 14 15 15 16 packageName = "lift";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lisp-namespace.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lisp-namespace''; 4 - version = ''20171130-git''; 4 + baseName = "lisp-namespace"; 5 + version = "20171130-git"; 5 6 6 - description = ''Provides LISP-N --- extensible namespaces in Common Lisp.''; 7 + description = "Provides LISP-N --- extensible namespaces in Common Lisp."; 7 8 8 9 deps = [ args."alexandria" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lisp-namespace/2017-11-30/lisp-namespace-20171130-git.tgz''; 12 - sha256 = ''0vxk06c5434kcjv9p414yk23gs4rkibfq695is9y7wglck31fz2j''; 12 + url = "http://beta.quicklisp.org/archive/lisp-namespace/2017-11-30/lisp-namespace-20171130-git.tgz"; 13 + sha256 = "0vxk06c5434kcjv9p414yk23gs4rkibfq695is9y7wglck31fz2j"; 13 14 }; 14 15 15 16 packageName = "lisp-namespace";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lisp-unit2.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lisp-unit2''; 4 - version = ''20180131-git''; 4 + baseName = "lisp-unit2"; 5 + version = "20180131-git"; 5 6 6 7 parasites = [ "lisp-unit2-test" ]; 7 8 8 - description = ''Common Lisp library that supports unit testing.''; 9 + description = "Common Lisp library that supports unit testing."; 9 10 10 11 deps = [ args."alexandria" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."iterate" args."named-readtables" args."symbol-munger" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/lisp-unit2/2018-01-31/lisp-unit2-20180131-git.tgz''; 14 - sha256 = ''04kwrg605mqzf3ghshgbygvvryk5kipl6gyc5kdaxafjxvhxaak7''; 14 + url = "http://beta.quicklisp.org/archive/lisp-unit2/2018-01-31/lisp-unit2-20180131-git.tgz"; 15 + sha256 = "04kwrg605mqzf3ghshgbygvvryk5kipl6gyc5kdaxafjxvhxaak7"; 15 16 }; 16 17 17 18 packageName = "lisp-unit2";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/local-time.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''local-time''; 4 - version = ''20210124-git''; 4 + baseName = "local-time"; 5 + version = "20210124-git"; 5 6 6 7 parasites = [ "local-time/test" ]; 7 8 8 - description = ''A library for manipulating dates and times, based on a paper by Erik Naggum''; 9 + description = "A library for manipulating dates and times, based on a paper by Erik Naggum"; 9 10 10 11 deps = [ args."hu_dot_dwim_dot_stefil" args."uiop" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/local-time/2021-01-24/local-time-20210124-git.tgz''; 14 - sha256 = ''0bz5z0rd8gfd22bpqkalaijxlrk806zc010cvgd4qjapbrxzjg3s''; 14 + url = "http://beta.quicklisp.org/archive/local-time/2021-01-24/local-time-20210124-git.tgz"; 15 + sha256 = "0bz5z0rd8gfd22bpqkalaijxlrk806zc010cvgd4qjapbrxzjg3s"; 15 16 }; 16 17 17 18 packageName = "local-time";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/log4cl.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''log4cl''; 4 - version = ''20200925-git''; 4 + baseName = "log4cl"; 5 + version = "20200925-git"; 5 6 6 7 parasites = [ "log4cl/syslog" "log4cl/test" ]; 7 8 8 - description = ''System lacks description''; 9 + description = "System lacks description"; 9 10 10 11 deps = [ args."alexandria" args."bordeaux-threads" args."stefil" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/log4cl/2020-09-25/log4cl-20200925-git.tgz''; 14 - sha256 = ''1z98ly71hsbd46i0dqqv2s3cm9y8bi0pl3yg8a168vz629c6mdrf''; 14 + url = "http://beta.quicklisp.org/archive/log4cl/2020-09-25/log4cl-20200925-git.tgz"; 15 + sha256 = "1z98ly71hsbd46i0dqqv2s3cm9y8bi0pl3yg8a168vz629c6mdrf"; 15 16 }; 16 17 17 18 packageName = "log4cl";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lparallel.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lparallel''; 4 - version = ''20160825-git''; 4 + baseName = "lparallel"; 5 + version = "20160825-git"; 5 6 6 - description = ''Parallelism for Common Lisp''; 7 + description = "Parallelism for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lparallel/2016-08-25/lparallel-20160825-git.tgz''; 12 - sha256 = ''0wwwwszbj6m0b2rsp8mpn4m6y7xk448bw8fb7gy0ggmsdfgchfr1''; 12 + url = "http://beta.quicklisp.org/archive/lparallel/2016-08-25/lparallel-20160825-git.tgz"; 13 + sha256 = "0wwwwszbj6m0b2rsp8mpn4m6y7xk448bw8fb7gy0ggmsdfgchfr1"; 13 14 }; 14 15 15 16 packageName = "lparallel";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lquery.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''lquery''; 4 - version = ''20201220-git''; 4 + baseName = "lquery"; 5 + version = "20201220-git"; 5 6 6 - description = ''A library to allow jQuery-like HTML/DOM manipulation.''; 7 + description = "A library to allow jQuery-like HTML/DOM manipulation."; 7 8 8 9 deps = [ args."array-utils" args."clss" args."documentation-utils" args."form-fiddle" args."plump" args."trivial-indent" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lquery/2020-12-20/lquery-20201220-git.tgz''; 12 - sha256 = ''0mfnk1p73aihraklw802j5mjgc8cjxva0mdf0c4p7b253crf15jx''; 12 + url = "http://beta.quicklisp.org/archive/lquery/2020-12-20/lquery-20201220-git.tgz"; 13 + sha256 = "0mfnk1p73aihraklw802j5mjgc8cjxva0mdf0c4p7b253crf15jx"; 13 14 }; 14 15 15 16 packageName = "lquery";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/map-set.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''map-set''; 4 - version = ''20190307-hg''; 4 + baseName = "map-set"; 5 + version = "20190307-hg"; 5 6 6 - description = ''Set-like data structure.''; 7 + description = "Set-like data structure."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/map-set/2019-03-07/map-set-20190307-hg.tgz''; 12 - sha256 = ''1x7yh4gzdvypr1q45qgmjln5pjlh82bfpk6sqyrihrldmwwnbzg9''; 12 + url = "http://beta.quicklisp.org/archive/map-set/2019-03-07/map-set-20190307-hg.tgz"; 13 + sha256 = "1x7yh4gzdvypr1q45qgmjln5pjlh82bfpk6sqyrihrldmwwnbzg9"; 13 14 }; 14 15 15 16 packageName = "map-set";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/marshal.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''marshal''; 4 - version = ''cl-20201016-git''; 4 + baseName = "marshal"; 5 + version = "cl-20201016-git"; 5 6 6 - description = ''marshal: Simple (de)serialization of Lisp datastructures.''; 7 + description = "marshal: Simple (de)serialization of Lisp datastructures."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-marshal/2020-10-16/cl-marshal-20201016-git.tgz''; 12 - sha256 = ''03j52yhgpc2myypgy07213l20rznxvf6m3sfbzy2wyapcmv7nxnz''; 12 + url = "http://beta.quicklisp.org/archive/cl-marshal/2020-10-16/cl-marshal-20201016-git.tgz"; 13 + sha256 = "03j52yhgpc2myypgy07213l20rznxvf6m3sfbzy2wyapcmv7nxnz"; 13 14 }; 14 15 15 16 packageName = "marshal";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/md5.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''md5''; 4 - version = ''20180228-git''; 4 + baseName = "md5"; 5 + version = "20180228-git"; 5 6 6 - description = ''The MD5 Message-Digest Algorithm RFC 1321''; 7 + description = "The MD5 Message-Digest Algorithm RFC 1321"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/md5/2018-02-28/md5-20180228-git.tgz''; 12 - sha256 = ''1261ix6bmkjyx8bkpj6ksa0kgyrhngm31as77dyy3vfg6dvrsnd4''; 12 + url = "http://beta.quicklisp.org/archive/md5/2018-02-28/md5-20180228-git.tgz"; 13 + sha256 = "1261ix6bmkjyx8bkpj6ksa0kgyrhngm31as77dyy3vfg6dvrsnd4"; 13 14 }; 14 15 15 16 packageName = "md5";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/metabang-bind.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''metabang-bind''; 4 - version = ''20200218-git''; 4 + baseName = "metabang-bind"; 5 + version = "20200218-git"; 5 6 6 - description = ''Bind is a macro that generalizes multiple-value-bind, let, let*, destructuring-bind, structure and slot accessors, and a whole lot more.''; 7 + description = "Bind is a macro that generalizes multiple-value-bind, let, let*, destructuring-bind, structure and slot accessors, and a whole lot more."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/metabang-bind/2020-02-18/metabang-bind-20200218-git.tgz''; 12 - sha256 = ''0mfjzfsv8v6i9ahwldfzznl29i42cmh5srmpgq64ar1vp6bdn1hq''; 12 + url = "http://beta.quicklisp.org/archive/metabang-bind/2020-02-18/metabang-bind-20200218-git.tgz"; 13 + sha256 = "0mfjzfsv8v6i9ahwldfzznl29i42cmh5srmpgq64ar1vp6bdn1hq"; 13 14 }; 14 15 15 16 packageName = "metabang-bind";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/metatilities-base.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''metatilities-base''; 4 - version = ''20191227-git''; 4 + baseName = "metatilities-base"; 5 + version = "20191227-git"; 5 6 6 - description = ''These are metabang.com's Common Lisp basic utilities.''; 7 + description = "These are metabang.com's Common Lisp basic utilities."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/metatilities-base/2019-12-27/metatilities-base-20191227-git.tgz''; 12 - sha256 = ''1mal51p7mknya2ljcwl3wdjvnirw5vvzic6qcnci7qhmfrb1awil''; 12 + url = "http://beta.quicklisp.org/archive/metatilities-base/2019-12-27/metatilities-base-20191227-git.tgz"; 13 + sha256 = "1mal51p7mknya2ljcwl3wdjvnirw5vvzic6qcnci7qhmfrb1awil"; 13 14 }; 14 15 15 16 packageName = "metatilities-base";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/mgl-pax.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''mgl-pax''; 4 - version = ''20210228-git''; 4 + baseName = "mgl-pax"; 5 + version = "20210228-git"; 5 6 6 7 parasites = [ "mgl-pax/test" ]; 7 8 8 - description = ''Exploratory programming tool and documentation 9 - generator.''; 9 + description = "Exploratory programming tool and documentation 10 + generator."; 10 11 11 12 deps = [ args."_3bmd" args."_3bmd-ext-code-blocks" args."alexandria" args."babel" args."bordeaux-threads" args."cl-fad" args."colorize" args."esrap" args."html-encode" args."ironclad" args."named-readtables" args."pythonic-string-reader" args."split-sequence" args."swank" args."trivial-features" args."trivial-with-current-source-form" ]; 12 13 13 14 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/mgl-pax/2021-02-28/mgl-pax-20210228-git.tgz''; 15 - sha256 = ''1dyhbnd69lb6ih89pvg8nn6pwsg25v5xjsfk1i5l1fdib14612cw''; 15 + url = "http://beta.quicklisp.org/archive/mgl-pax/2021-02-28/mgl-pax-20210228-git.tgz"; 16 + sha256 = "1dyhbnd69lb6ih89pvg8nn6pwsg25v5xjsfk1i5l1fdib14612cw"; 16 17 }; 17 18 18 19 packageName = "mgl-pax";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/misc-extensions.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''misc-extensions''; 4 - version = ''20150608-git''; 4 + baseName = "misc-extensions"; 5 + version = "20150608-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/misc-extensions/2015-06-08/misc-extensions-20150608-git.tgz''; 12 - sha256 = ''0pkvi1l5djwpvm0p8m0bcdjm61gxvzy0vgn415gngdixvbbchdqj''; 12 + url = "http://beta.quicklisp.org/archive/misc-extensions/2015-06-08/misc-extensions-20150608-git.tgz"; 13 + sha256 = "0pkvi1l5djwpvm0p8m0bcdjm61gxvzy0vgn415gngdixvbbchdqj"; 13 14 }; 14 15 15 16 packageName = "misc-extensions";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/mk-string-metrics.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''mk-string-metrics''; 4 - version = ''20180131-git''; 4 + baseName = "mk-string-metrics"; 5 + version = "20180131-git"; 5 6 6 - description = ''efficient implementations of various string metric algorithms''; 7 + description = "efficient implementations of various string metric algorithms"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/mk-string-metrics/2018-01-31/mk-string-metrics-20180131-git.tgz''; 12 - sha256 = ''10xb9n6568nh019nq3phijbc7l6hkv69yllfiqvc1zzsprxpkwc4''; 12 + url = "http://beta.quicklisp.org/archive/mk-string-metrics/2018-01-31/mk-string-metrics-20180131-git.tgz"; 13 + sha256 = "10xb9n6568nh019nq3phijbc7l6hkv69yllfiqvc1zzsprxpkwc4"; 13 14 }; 14 15 15 16 packageName = "mk-string-metrics";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/moptilities.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''moptilities''; 4 - version = ''20170403-git''; 4 + baseName = "moptilities"; 5 + version = "20170403-git"; 5 6 6 - description = ''Common Lisp MOP utilities''; 7 + description = "Common Lisp MOP utilities"; 7 8 8 9 deps = [ args."closer-mop" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/moptilities/2017-04-03/moptilities-20170403-git.tgz''; 12 - sha256 = ''0az01wx60ll3nybqlp21f5bps3fnpqhvvfg6d9x84969wdj7q4q8''; 12 + url = "http://beta.quicklisp.org/archive/moptilities/2017-04-03/moptilities-20170403-git.tgz"; 13 + sha256 = "0az01wx60ll3nybqlp21f5bps3fnpqhvvfg6d9x84969wdj7q4q8"; 13 14 }; 14 15 15 16 packageName = "moptilities";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/more-conditions.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''more-conditions''; 4 - version = ''20180831-git''; 4 + baseName = "more-conditions"; 5 + version = "20180831-git"; 5 6 6 7 parasites = [ "more-conditions/test" ]; 7 8 8 - description = ''This system provides some generic condition classes in 9 - conjunction with support functions and macros.''; 9 + description = "This system provides some generic condition classes in 10 + conjunction with support functions and macros."; 10 11 11 12 deps = [ args."alexandria" args."closer-mop" args."fiveam" args."let-plus" ]; 12 13 13 14 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/more-conditions/2018-08-31/more-conditions-20180831-git.tgz''; 15 - sha256 = ''0wa989kv3sl977g9szxkx52fdnww6aj2a9i77363f90iq02vj97x''; 15 + url = "http://beta.quicklisp.org/archive/more-conditions/2018-08-31/more-conditions-20180831-git.tgz"; 16 + sha256 = "0wa989kv3sl977g9szxkx52fdnww6aj2a9i77363f90iq02vj97x"; 16 17 }; 17 18 18 19 packageName = "more-conditions";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/mt19937.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''mt19937''; 4 - version = ''1.1.1''; 4 + baseName = "mt19937"; 5 + version = "1.1.1"; 5 6 6 - description = ''Portable MT19937 Mersenne Twister random number generator''; 7 + description = "Portable MT19937 Mersenne Twister random number generator"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/mt19937/2011-02-19/mt19937-1.1.1.tgz''; 12 - sha256 = ''1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv''; 12 + url = "http://beta.quicklisp.org/archive/mt19937/2011-02-19/mt19937-1.1.1.tgz"; 13 + sha256 = "1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv"; 13 14 }; 14 15 15 16 packageName = "mt19937";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/myway.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''myway''; 4 - version = ''20200325-git''; 4 + baseName = "myway"; 5 + version = "20200325-git"; 5 6 6 - description = ''Sinatra-compatible routing library.''; 7 + description = "Sinatra-compatible routing library."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cl-ppcre" args."cl-utilities" args."map-set" args."quri" args."split-sequence" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/myway/2020-03-25/myway-20200325-git.tgz''; 12 - sha256 = ''07r0mq9n0gmm7n20mkpsnmjvcr4gj9nckpnh1c2mddrb3sag8n15''; 12 + url = "http://beta.quicklisp.org/archive/myway/2020-03-25/myway-20200325-git.tgz"; 13 + sha256 = "07r0mq9n0gmm7n20mkpsnmjvcr4gj9nckpnh1c2mddrb3sag8n15"; 13 14 }; 14 15 15 16 packageName = "myway";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/named-readtables.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''named-readtables''; 4 - version = ''20210124-git''; 4 + baseName = "named-readtables"; 5 + version = "20210124-git"; 5 6 6 7 parasites = [ "named-readtables/test" ]; 7 8 8 - description = ''Library that creates a namespace for named readtable 9 - akin to the namespace of packages.''; 9 + description = "Library that creates a namespace for named readtable 10 + akin to the namespace of packages."; 10 11 11 12 deps = [ ]; 12 13 13 14 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/named-readtables/2021-01-24/named-readtables-20210124-git.tgz''; 15 - sha256 = ''00lbcv1qdb9ldq2kbf1rkn5sh657px9dgqrcynbwjzvla4czadl4''; 15 + url = "http://beta.quicklisp.org/archive/named-readtables/2021-01-24/named-readtables-20210124-git.tgz"; 16 + sha256 = "00lbcv1qdb9ldq2kbf1rkn5sh657px9dgqrcynbwjzvla4czadl4"; 16 17 }; 17 18 18 19 packageName = "named-readtables";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/net-telent-date.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''net-telent-date''; 4 - version = ''net-telent-date_0.42''; 4 + baseName = "net-telent-date"; 5 + version = "net-telent-date_0.42"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/net-telent-date/2010-10-06/net-telent-date_0.42.tgz''; 12 - sha256 = ''06vdlddwi6kx999n1093chwgw0ksbys4j4w9i9zqvw768wxp4li1''; 12 + url = "http://beta.quicklisp.org/archive/net-telent-date/2010-10-06/net-telent-date_0.42.tgz"; 13 + sha256 = "06vdlddwi6kx999n1093chwgw0ksbys4j4w9i9zqvw768wxp4li1"; 13 14 }; 14 15 15 16 packageName = "net-telent-date";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/net_dot_didierverna_dot_asdf-flv.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''net_dot_didierverna_dot_asdf-flv''; 4 - version = ''asdf-flv-version-2.1''; 4 + baseName = "net_dot_didierverna_dot_asdf-flv"; 5 + version = "asdf-flv-version-2.1"; 5 6 6 - description = ''ASDF extension to provide support for file-local variables.''; 7 + description = "ASDF extension to provide support for file-local variables."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/asdf-flv/2016-04-21/asdf-flv-version-2.1.tgz''; 12 - sha256 = ''12k0d4xyv6s9vy6gq18p8c9bm334jsfjly22lhg680kx2zr7y0lc''; 12 + url = "http://beta.quicklisp.org/archive/asdf-flv/2016-04-21/asdf-flv-version-2.1.tgz"; 13 + sha256 = "12k0d4xyv6s9vy6gq18p8c9bm334jsfjly22lhg680kx2zr7y0lc"; 13 14 }; 14 15 15 16 packageName = "net.didierverna.asdf-flv";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/nibbles.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''nibbles''; 4 - version = ''20210124-git''; 4 + baseName = "nibbles"; 5 + version = "20210124-git"; 5 6 6 7 parasites = [ "nibbles/tests" ]; 7 8 8 - description = ''A library for accessing octet-addressed blocks of data in big- and little-endian orders''; 9 + description = "A library for accessing octet-addressed blocks of data in big- and little-endian orders"; 9 10 10 11 deps = [ args."rt" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/nibbles/2021-01-24/nibbles-20210124-git.tgz''; 14 - sha256 = ''0y3h4k7665w7b8ivmql9w6rz3ivfa3h8glk45sn6mwix55xmzp26''; 14 + url = "http://beta.quicklisp.org/archive/nibbles/2021-01-24/nibbles-20210124-git.tgz"; 15 + sha256 = "0y3h4k7665w7b8ivmql9w6rz3ivfa3h8glk45sn6mwix55xmzp26"; 15 16 }; 16 17 17 18 packageName = "nibbles";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/optima.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''optima''; 4 - version = ''20150709-git''; 4 + baseName = "optima"; 5 + version = "20150709-git"; 5 6 6 - description = ''Optimized Pattern Matching Library''; 7 + description = "Optimized Pattern Matching Library"; 7 8 8 9 deps = [ args."alexandria" args."closer-mop" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/optima/2015-07-09/optima-20150709-git.tgz''; 12 - sha256 = ''0vqyqrnx2d8qwa2jlg9l2wn6vrykraj8a1ysz0gxxxnwpqc29hdc''; 12 + url = "http://beta.quicklisp.org/archive/optima/2015-07-09/optima-20150709-git.tgz"; 13 + sha256 = "0vqyqrnx2d8qwa2jlg9l2wn6vrykraj8a1ysz0gxxxnwpqc29hdc"; 13 14 }; 14 15 15 16 packageName = "optima";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/osicat.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''osicat''; 4 - version = ''20210228-git''; 4 + baseName = "osicat"; 5 + version = "20210228-git"; 5 6 6 7 parasites = [ "osicat/tests" ]; 7 8 8 - description = ''A lightweight operating system interface''; 9 + description = "A lightweight operating system interface"; 9 10 10 11 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."rt" args."trivial-features" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/osicat/2021-02-28/osicat-20210228-git.tgz''; 14 - sha256 = ''0g9frahjr2i6fvwd3bzvcz9icx4n4mnwcmsz6gvg5s6wmq5ny6wb''; 14 + url = "http://beta.quicklisp.org/archive/osicat/2021-02-28/osicat-20210228-git.tgz"; 15 + sha256 = "0g9frahjr2i6fvwd3bzvcz9icx4n4mnwcmsz6gvg5s6wmq5ny6wb"; 15 16 }; 16 17 17 18 packageName = "osicat";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/parenscript.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''parenscript''; 4 - version = ''Parenscript-2.7.1''; 4 + baseName = "parenscript"; 5 + version = "Parenscript-2.7.1"; 5 6 6 - description = ''Lisp to JavaScript transpiler''; 7 + description = "Lisp to JavaScript transpiler"; 7 8 8 9 deps = [ args."anaphora" args."cl-ppcre" args."named-readtables" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/parenscript/2018-12-10/Parenscript-2.7.1.tgz''; 12 - sha256 = ''1vbldjzj9py8vqyk0f3rb795cjai0h7p858dflm4l8p0kp4mll6f''; 12 + url = "http://beta.quicklisp.org/archive/parenscript/2018-12-10/Parenscript-2.7.1.tgz"; 13 + sha256 = "1vbldjzj9py8vqyk0f3rb795cjai0h7p858dflm4l8p0kp4mll6f"; 13 14 }; 14 15 15 16 packageName = "parenscript";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/parse-declarations-1_dot_0.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''parse-declarations-1_dot_0''; 4 - version = ''parse-declarations-20101006-darcs''; 4 + baseName = "parse-declarations-1_dot_0"; 5 + version = "parse-declarations-20101006-darcs"; 5 6 6 - description = ''Library to parse and rebuild declarations.''; 7 + description = "Library to parse and rebuild declarations."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/parse-declarations/2010-10-06/parse-declarations-20101006-darcs.tgz''; 12 - sha256 = ''0r85b0jfacd28kr65kw9c13dx4i6id1dpmby68zjy63mqbnyawrd''; 12 + url = "http://beta.quicklisp.org/archive/parse-declarations/2010-10-06/parse-declarations-20101006-darcs.tgz"; 13 + sha256 = "0r85b0jfacd28kr65kw9c13dx4i6id1dpmby68zjy63mqbnyawrd"; 13 14 }; 14 15 15 16 packageName = "parse-declarations-1.0";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/parse-number.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''parse-number''; 4 - version = ''v1.7''; 4 + baseName = "parse-number"; 5 + version = "v1.7"; 5 6 6 7 parasites = [ "parse-number/tests" ]; 7 8 8 - description = ''Number parsing library''; 9 + description = "Number parsing library"; 9 10 10 11 deps = [ ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/parse-number/2018-02-28/parse-number-v1.7.tgz''; 14 - sha256 = ''11ji8856ipmqki5i4cw1zgx8hahfi8x1raz1xb20c4rmgad6nsha''; 14 + url = "http://beta.quicklisp.org/archive/parse-number/2018-02-28/parse-number-v1.7.tgz"; 15 + sha256 = "11ji8856ipmqki5i4cw1zgx8hahfi8x1raz1xb20c4rmgad6nsha"; 15 16 }; 16 17 17 18 packageName = "parse-number";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/parser-combinators.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''parser-combinators''; 4 - version = ''cl-20131111-git''; 4 + baseName = "parser-combinators"; 5 + version = "cl-20131111-git"; 5 6 6 - description = ''An implementation of parser combinators for Common Lisp''; 7 + description = "An implementation of parser combinators for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."iterate" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-parser-combinators/2013-11-11/cl-parser-combinators-20131111-git.tgz''; 12 - sha256 = ''0wg1a7favbwqcxyqcy2zxi4l11qsp4ar9fvddmx960grf2d72lds''; 12 + url = "http://beta.quicklisp.org/archive/cl-parser-combinators/2013-11-11/cl-parser-combinators-20131111-git.tgz"; 13 + sha256 = "0wg1a7favbwqcxyqcy2zxi4l11qsp4ar9fvddmx960grf2d72lds"; 13 14 }; 14 15 15 16 packageName = "parser-combinators";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/parser_dot_common-rules.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''parser_dot_common-rules''; 4 - version = ''20200715-git''; 4 + baseName = "parser_dot_common-rules"; 5 + version = "20200715-git"; 5 6 6 7 parasites = [ "parser.common-rules/test" ]; 7 8 8 - description = ''Provides common parsing rules that are useful in many grammars.''; 9 + description = "Provides common parsing rules that are useful in many grammars."; 9 10 10 11 deps = [ args."alexandria" args."anaphora" args."esrap" args."fiveam" args."let-plus" args."split-sequence" args."trivial-with-current-source-form" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/parser.common-rules/2020-07-15/parser.common-rules-20200715-git.tgz''; 14 - sha256 = ''17nw0shhb8079b26ldwpfxggkzs6ysfqm4s4nr1rfhba9mkvxdxy''; 14 + url = "http://beta.quicklisp.org/archive/parser.common-rules/2020-07-15/parser.common-rules-20200715-git.tgz"; 15 + sha256 = "17nw0shhb8079b26ldwpfxggkzs6ysfqm4s4nr1rfhba9mkvxdxy"; 15 16 }; 16 17 17 18 packageName = "parser.common-rules";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/pcall-queue.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''pcall-queue''; 4 - version = ''pcall-0.3''; 4 + baseName = "pcall-queue"; 5 + version = "pcall-0.3"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz''; 12 - sha256 = ''02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y''; 12 + url = "http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz"; 13 + sha256 = "02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y"; 13 14 }; 14 15 15 16 packageName = "pcall-queue";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/pcall.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''pcall''; 4 - version = ''0.3''; 4 + baseName = "pcall"; 5 + version = "0.3"; 5 6 6 7 parasites = [ "pcall-tests" ]; 7 8 8 - description = ''System lacks description''; 9 + description = "System lacks description"; 9 10 10 11 deps = [ args."alexandria" args."bordeaux-threads" args."fiveam" args."pcall-queue" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz''; 14 - sha256 = ''02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y''; 14 + url = "http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz"; 15 + sha256 = "02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y"; 15 16 }; 16 17 17 18 packageName = "pcall";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/plump.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''plump''; 4 - version = ''20210124-git''; 4 + baseName = "plump"; 5 + version = "20210124-git"; 5 6 6 - description = ''An XML / XHTML / HTML parser that aims to be as lenient as possible.''; 7 + description = "An XML / XHTML / HTML parser that aims to be as lenient as possible."; 7 8 8 9 deps = [ args."array-utils" args."documentation-utils" args."trivial-indent" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/plump/2021-01-24/plump-20210124-git.tgz''; 12 - sha256 = ''0br64xiz4mgmmsvkfmi43k2q16rmc6hbqf976x8cdafs3h266jdm''; 12 + url = "http://beta.quicklisp.org/archive/plump/2021-01-24/plump-20210124-git.tgz"; 13 + sha256 = "0br64xiz4mgmmsvkfmi43k2q16rmc6hbqf976x8cdafs3h266jdm"; 13 14 }; 14 15 15 16 packageName = "plump";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/postmodern.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''postmodern''; 4 - version = ''20210124-git''; 4 + baseName = "postmodern"; 5 + version = "20210124-git"; 5 6 6 7 parasites = [ "postmodern/tests" ]; 7 8 8 - description = ''PostgreSQL programming API''; 9 + description = "PostgreSQL programming API"; 9 10 10 11 deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-postgres" args."cl-postgres_plus_local-time" args."cl-postgres_slash_tests" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."fiveam" args."flexi-streams" args."global-vars" args."ironclad" args."local-time" args."md5" args."s-sql" args."s-sql_slash_tests" args."simple-date" args."simple-date_slash_postgres-glue" args."split-sequence" args."uax-15" args."usocket" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/postmodern/2021-01-24/postmodern-20210124-git.tgz''; 14 - sha256 = ''1fl103fga5iq2gf1p15xvbrmmjrcv2bbi3lz1zv32j6smy5aymhc''; 14 + url = "http://beta.quicklisp.org/archive/postmodern/2021-01-24/postmodern-20210124-git.tgz"; 15 + sha256 = "1fl103fga5iq2gf1p15xvbrmmjrcv2bbi3lz1zv32j6smy5aymhc"; 15 16 }; 16 17 17 18 packageName = "postmodern";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/proc-parse.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''proc-parse''; 4 - version = ''20190813-git''; 4 + baseName = "proc-parse"; 5 + version = "20190813-git"; 5 6 6 - description = ''Procedural vector parser''; 7 + description = "Procedural vector parser"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/proc-parse/2019-08-13/proc-parse-20190813-git.tgz''; 12 - sha256 = ''126l7mqxjcgw2limddgrdq63cdhwkhaxabxl9l0bjadf92nczg0j''; 12 + url = "http://beta.quicklisp.org/archive/proc-parse/2019-08-13/proc-parse-20190813-git.tgz"; 13 + sha256 = "126l7mqxjcgw2limddgrdq63cdhwkhaxabxl9l0bjadf92nczg0j"; 13 14 }; 14 15 15 16 packageName = "proc-parse";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/prove-asdf.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''prove-asdf''; 4 - version = ''prove-20200218-git''; 4 + baseName = "prove-asdf"; 5 + version = "prove-20200218-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz''; 12 - sha256 = ''1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn''; 12 + url = "http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz"; 13 + sha256 = "1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn"; 13 14 }; 14 15 15 16 packageName = "prove-asdf";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/prove.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''prove''; 4 - version = ''20200218-git''; 4 + baseName = "prove"; 5 + version = "20200218-git"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ args."alexandria" args."anaphora" args."cl-ansi-text" args."cl-colors" args."cl-colors2" args."cl-ppcre" args."let-plus" args."uiop" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz''; 12 - sha256 = ''1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn''; 12 + url = "http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz"; 13 + sha256 = "1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn"; 13 14 }; 14 15 15 16 packageName = "prove";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/ptester.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''ptester''; 4 - version = ''20160929-git''; 4 + baseName = "ptester"; 5 + version = "20160929-git"; 5 6 6 - description = ''Portable test harness package''; 7 + description = "Portable test harness package"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/ptester/2016-09-29/ptester-20160929-git.tgz''; 12 - sha256 = ''04rlq1zljhxc65pm31bah3sq3as24l0sdivz440s79qlnnyh13hz''; 12 + url = "http://beta.quicklisp.org/archive/ptester/2016-09-29/ptester-20160929-git.tgz"; 13 + sha256 = "04rlq1zljhxc65pm31bah3sq3as24l0sdivz440s79qlnnyh13hz"; 13 14 }; 14 15 15 16 packageName = "ptester";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/puri.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''puri''; 4 - version = ''20201016-git''; 4 + baseName = "puri"; 5 + version = "20201016-git"; 5 6 6 7 parasites = [ "puri/test" ]; 7 8 8 - description = ''Portable Universal Resource Indentifier Library''; 9 + description = "Portable Universal Resource Indentifier Library"; 9 10 10 11 deps = [ args."ptester" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/puri/2020-10-16/puri-20201016-git.tgz''; 14 - sha256 = ''16h7gip6d0564s9yba3jg0rjzndmysv531hcrngvi3j3sandjfzx''; 14 + url = "http://beta.quicklisp.org/archive/puri/2020-10-16/puri-20201016-git.tgz"; 15 + sha256 = "16h7gip6d0564s9yba3jg0rjzndmysv531hcrngvi3j3sandjfzx"; 15 16 }; 16 17 17 18 packageName = "puri";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/pythonic-string-reader.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''pythonic-string-reader''; 4 - version = ''20180711-git''; 4 + baseName = "pythonic-string-reader"; 5 + version = "20180711-git"; 5 6 6 - description = ''A simple and unintrusive read table modification that allows for 7 - simple string literal definition that doesn't require escaping characters.''; 7 + description = "A simple and unintrusive read table modification that allows for 8 + simple string literal definition that doesn't require escaping characters."; 8 9 9 10 deps = [ args."named-readtables" ]; 10 11 11 12 src = fetchurl { 12 - url = ''http://beta.quicklisp.org/archive/pythonic-string-reader/2018-07-11/pythonic-string-reader-20180711-git.tgz''; 13 - sha256 = ''0gr6sbkmfwca9r0xa5vczjm4s9psbrqy5hvijkp5g42b0b7x5myx''; 13 + url = "http://beta.quicklisp.org/archive/pythonic-string-reader/2018-07-11/pythonic-string-reader-20180711-git.tgz"; 14 + sha256 = "0gr6sbkmfwca9r0xa5vczjm4s9psbrqy5hvijkp5g42b0b7x5myx"; 14 15 }; 15 16 16 17 packageName = "pythonic-string-reader";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/query-fs.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''query-fs''; 4 - version = ''20200610-git''; 4 + baseName = "query-fs"; 5 + version = "20200610-git"; 5 6 6 - description = ''High-level virtual FS using CL-Fuse-Meta-FS to represent results of queries''; 7 + description = "High-level virtual FS using CL-Fuse-Meta-FS to represent results of queries"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-fuse" args."cl-fuse-meta-fs" args."cl-ppcre" args."cl-utilities" args."command-line-arguments" args."iterate" args."pcall" args."pcall-queue" args."trivial-backtrace" args."trivial-features" args."trivial-utf-8" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/query-fs/2020-06-10/query-fs-20200610-git.tgz''; 12 - sha256 = ''1kcq2xs5dqwbhapknrynanwqn3c9h4cpi7hf362il2p6v6y4r413''; 12 + url = "http://beta.quicklisp.org/archive/query-fs/2020-06-10/query-fs-20200610-git.tgz"; 13 + sha256 = "1kcq2xs5dqwbhapknrynanwqn3c9h4cpi7hf362il2p6v6y4r413"; 13 14 }; 14 15 15 16 packageName = "query-fs";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/quri.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''quri''; 4 - version = ''20210228-git''; 4 + baseName = "quri"; 5 + version = "20210228-git"; 5 6 6 - description = ''Yet another URI library for Common Lisp''; 7 + description = "Yet another URI library for Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cl-utilities" args."split-sequence" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/quri/2021-02-28/quri-20210228-git.tgz''; 12 - sha256 = ''03hq6x715kv37c089b73f6j8b0f4ywhxr37wbw9any2jcgrswx0g''; 12 + url = "http://beta.quicklisp.org/archive/quri/2021-02-28/quri-20210228-git.tgz"; 13 + sha256 = "03hq6x715kv37c089b73f6j8b0f4ywhxr37wbw9any2jcgrswx0g"; 13 14 }; 14 15 15 16 packageName = "quri";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/rfc2388.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''rfc2388''; 4 - version = ''20180831-git''; 4 + baseName = "rfc2388"; 5 + version = "20180831-git"; 5 6 6 - description = ''Implementation of RFC 2388''; 7 + description = "Implementation of RFC 2388"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/rfc2388/2018-08-31/rfc2388-20180831-git.tgz''; 12 - sha256 = ''1r7vvrlq2wl213bm2aknkf34ynpl8y4nbkfir79srrdsl1337z33''; 12 + url = "http://beta.quicklisp.org/archive/rfc2388/2018-08-31/rfc2388-20180831-git.tgz"; 13 + sha256 = "1r7vvrlq2wl213bm2aknkf34ynpl8y4nbkfir79srrdsl1337z33"; 13 14 }; 14 15 15 16 packageName = "rfc2388";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/rove.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''rove''; 4 - version = ''20200325-git''; 4 + baseName = "rove"; 5 + version = "20200325-git"; 5 6 6 - description = ''Yet another testing framework intended to be a successor of Prove''; 7 + description = "Yet another testing framework intended to be a successor of Prove"; 7 8 8 9 deps = [ args."bordeaux-threads" args."dissect" args."trivial-gray-streams" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/rove/2020-03-25/rove-20200325-git.tgz''; 12 - sha256 = ''0zn8d3408rgy2nibia5hdfbf80ix1fgssywx01izx7z99l5x50z5''; 12 + url = "http://beta.quicklisp.org/archive/rove/2020-03-25/rove-20200325-git.tgz"; 13 + sha256 = "0zn8d3408rgy2nibia5hdfbf80ix1fgssywx01izx7z99l5x50z5"; 13 14 }; 14 15 15 16 packageName = "rove";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/rt.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''rt''; 4 - version = ''20101006-git''; 4 + baseName = "rt"; 5 + version = "20101006-git"; 5 6 6 - description = ''MIT Regression Tester''; 7 + description = "MIT Regression Tester"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/rt/2010-10-06/rt-20101006-git.tgz''; 12 - sha256 = ''1jncar0xwkqk8yrc2dln389ivvgzs7ijdhhs3zpfyi5d21f0qa1v''; 12 + url = "http://beta.quicklisp.org/archive/rt/2010-10-06/rt-20101006-git.tgz"; 13 + sha256 = "1jncar0xwkqk8yrc2dln389ivvgzs7ijdhhs3zpfyi5d21f0qa1v"; 13 14 }; 14 15 15 16 packageName = "rt";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/s-sql.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''s-sql''; 4 - version = ''postmodern-20210124-git''; 4 + baseName = "s-sql"; 5 + version = "postmodern-20210124-git"; 5 6 6 7 parasites = [ "s-sql/tests" ]; 7 8 8 - description = ''Lispy DSL for SQL''; 9 + description = "Lispy DSL for SQL"; 9 10 10 11 deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-postgres" args."cl-postgres_slash_tests" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."fiveam" args."global-vars" args."ironclad" args."md5" args."postmodern" args."split-sequence" args."uax-15" args."usocket" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/postmodern/2021-01-24/postmodern-20210124-git.tgz''; 14 - sha256 = ''1fl103fga5iq2gf1p15xvbrmmjrcv2bbi3lz1zv32j6smy5aymhc''; 14 + url = "http://beta.quicklisp.org/archive/postmodern/2021-01-24/postmodern-20210124-git.tgz"; 15 + sha256 = "1fl103fga5iq2gf1p15xvbrmmjrcv2bbi3lz1zv32j6smy5aymhc"; 15 16 }; 16 17 17 18 packageName = "s-sql";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/s-sysdeps.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''s-sysdeps''; 4 - version = ''20210228-git''; 4 + baseName = "s-sysdeps"; 5 + version = "20210228-git"; 5 6 6 - description = ''An abstraction layer over platform dependent functionality''; 7 + description = "An abstraction layer over platform dependent functionality"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."split-sequence" args."usocket" args."usocket-server" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/s-sysdeps/2021-02-28/s-sysdeps-20210228-git.tgz''; 12 - sha256 = ''0pybgicif1qavvix9183g4ahjrgcax3qf2ab523cas8l79lr1xkw''; 12 + url = "http://beta.quicklisp.org/archive/s-sysdeps/2021-02-28/s-sysdeps-20210228-git.tgz"; 13 + sha256 = "0pybgicif1qavvix9183g4ahjrgcax3qf2ab523cas8l79lr1xkw"; 13 14 }; 14 15 15 16 packageName = "s-sysdeps";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/s-xml.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''s-xml''; 4 - version = ''20150608-git''; 4 + baseName = "s-xml"; 5 + version = "20150608-git"; 5 6 6 7 parasites = [ "s-xml.examples" "s-xml.test" ]; 7 8 8 - description = ''Simple Common Lisp XML Parser''; 9 + description = "Simple Common Lisp XML Parser"; 9 10 10 11 deps = [ ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/s-xml/2015-06-08/s-xml-20150608-git.tgz''; 14 - sha256 = ''0cy36wqzasqma4maw9djq1vdwsp5hxq8svlbnhbv9sq9zzys5viq''; 14 + url = "http://beta.quicklisp.org/archive/s-xml/2015-06-08/s-xml-20150608-git.tgz"; 15 + sha256 = "0cy36wqzasqma4maw9djq1vdwsp5hxq8svlbnhbv9sq9zzys5viq"; 15 16 }; 16 17 17 18 packageName = "s-xml";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/salza2.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''salza2''; 4 - version = ''2.0.9''; 4 + baseName = "salza2"; 5 + version = "2.0.9"; 5 6 6 - description = ''Create compressed data in the ZLIB, DEFLATE, or GZIP 7 - data formats''; 7 + description = "Create compressed data in the ZLIB, DEFLATE, or GZIP 8 + data formats"; 8 9 9 10 deps = [ ]; 10 11 11 12 src = fetchurl { 12 - url = ''http://beta.quicklisp.org/archive/salza2/2013-07-20/salza2-2.0.9.tgz''; 13 - sha256 = ''1m0hksgvq3njd9xa2nxlm161vgzw77djxmisq08v9pz2bz16v8va''; 13 + url = "http://beta.quicklisp.org/archive/salza2/2013-07-20/salza2-2.0.9.tgz"; 14 + sha256 = "1m0hksgvq3njd9xa2nxlm161vgzw77djxmisq08v9pz2bz16v8va"; 14 15 }; 15 16 16 17 packageName = "salza2";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/serapeum.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''serapeum''; 4 - version = ''20210228-git''; 4 + baseName = "serapeum"; 5 + version = "20210228-git"; 5 6 6 - description = ''Utilities beyond Alexandria.''; 7 + description = "Utilities beyond Alexandria."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."closer-mop" args."fare-quasiquote" args."fare-quasiquote-extras" args."fare-quasiquote-optima" args."fare-quasiquote-readtable" args."fare-utils" args."global-vars" args."introspect-environment" args."iterate" args."lisp-namespace" args."named-readtables" args."parse-declarations-1_dot_0" args."parse-number" args."split-sequence" args."string-case" args."trivia" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_quasiquote" args."trivia_dot_trivial" args."trivial-cltl2" args."trivial-features" args."trivial-file-size" args."trivial-garbage" args."trivial-macroexpand-all" args."type-i" args."uiop" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/serapeum/2021-02-28/serapeum-20210228-git.tgz''; 12 - sha256 = ''1dici8bmvrx5h74disrlvwns8f8jl746i4cyzyclswhv208x2m3x''; 12 + url = "http://beta.quicklisp.org/archive/serapeum/2021-02-28/serapeum-20210228-git.tgz"; 13 + sha256 = "1dici8bmvrx5h74disrlvwns8f8jl746i4cyzyclswhv208x2m3x"; 13 14 }; 14 15 15 16 packageName = "serapeum";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/simple-date-time.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''simple-date-time''; 4 - version = ''20160421-git''; 4 + baseName = "simple-date-time"; 5 + version = "20160421-git"; 5 6 6 - description = ''date and time library for common lisp''; 7 + description = "date and time library for common lisp"; 7 8 8 9 deps = [ args."cl-ppcre" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/simple-date-time/2016-04-21/simple-date-time-20160421-git.tgz''; 12 - sha256 = ''1db9n7pspxkqkzz12829a1lp7v4ghrnlb7g3wh04yz6m224d3i4h''; 12 + url = "http://beta.quicklisp.org/archive/simple-date-time/2016-04-21/simple-date-time-20160421-git.tgz"; 13 + sha256 = "1db9n7pspxkqkzz12829a1lp7v4ghrnlb7g3wh04yz6m224d3i4h"; 13 14 }; 14 15 15 16 packageName = "simple-date-time";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/simple-date.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''simple-date''; 4 - version = ''postmodern-20210124-git''; 4 + baseName = "simple-date"; 5 + version = "postmodern-20210124-git"; 5 6 6 7 parasites = [ "simple-date/tests" ]; 7 8 8 - description = ''Simple date library that can be used with postmodern''; 9 + description = "Simple date library that can be used with postmodern"; 9 10 10 11 deps = [ args."fiveam" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/postmodern/2021-01-24/postmodern-20210124-git.tgz''; 14 - sha256 = ''1fl103fga5iq2gf1p15xvbrmmjrcv2bbi3lz1zv32j6smy5aymhc''; 14 + url = "http://beta.quicklisp.org/archive/postmodern/2021-01-24/postmodern-20210124-git.tgz"; 15 + sha256 = "1fl103fga5iq2gf1p15xvbrmmjrcv2bbi3lz1zv32j6smy5aymhc"; 15 16 }; 16 17 17 18 packageName = "simple-date";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/simple-tasks.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''simple-tasks''; 4 - version = ''20190710-git''; 4 + baseName = "simple-tasks"; 5 + version = "20190710-git"; 5 6 6 - description = ''A very simple task scheduling framework.''; 7 + description = "A very simple task scheduling framework."; 7 8 8 9 deps = [ args."alexandria" args."array-utils" args."bordeaux-threads" args."dissect" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/simple-tasks/2019-07-10/simple-tasks-20190710-git.tgz''; 12 - sha256 = ''12y5phnbj9s2fsrz1ab6xj857zf1fv8kjk7jj2mdjs6k2d8gk8v3''; 12 + url = "http://beta.quicklisp.org/archive/simple-tasks/2019-07-10/simple-tasks-20190710-git.tgz"; 13 + sha256 = "12y5phnbj9s2fsrz1ab6xj857zf1fv8kjk7jj2mdjs6k2d8gk8v3"; 13 14 }; 14 15 15 16 packageName = "simple-tasks";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/smart-buffer.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''smart-buffer''; 4 - version = ''20160628-git''; 4 + baseName = "smart-buffer"; 5 + version = "20160628-git"; 5 6 6 - description = ''Smart octets buffer''; 7 + description = "Smart octets buffer"; 7 8 8 9 deps = [ args."flexi-streams" args."trivial-gray-streams" args."uiop" args."xsubseq" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/smart-buffer/2016-06-28/smart-buffer-20160628-git.tgz''; 12 - sha256 = ''1wp50snkc8739n91xlnfnq1dzz3kfp0awgp92m7xbpcw3hbaib1s''; 12 + url = "http://beta.quicklisp.org/archive/smart-buffer/2016-06-28/smart-buffer-20160628-git.tgz"; 13 + sha256 = "1wp50snkc8739n91xlnfnq1dzz3kfp0awgp92m7xbpcw3hbaib1s"; 13 14 }; 14 15 15 16 packageName = "smart-buffer";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/split-sequence.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''split-sequence''; 4 - version = ''v2.0.0''; 4 + baseName = "split-sequence"; 5 + version = "v2.0.0"; 5 6 6 7 parasites = [ "split-sequence/tests" ]; 7 8 8 - description = ''Splits a sequence into a list of subsequences 9 - delimited by objects satisfying a test.''; 9 + description = "Splits a sequence into a list of subsequences 10 + delimited by objects satisfying a test."; 10 11 11 12 deps = [ args."fiveam" ]; 12 13 13 14 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/split-sequence/2019-05-21/split-sequence-v2.0.0.tgz''; 15 - sha256 = ''09cmmswzl1kahvlzgqv8lqm9qcnz5iqg8f26fw3mm9rb3dcp7aba''; 15 + url = "http://beta.quicklisp.org/archive/split-sequence/2019-05-21/split-sequence-v2.0.0.tgz"; 16 + sha256 = "09cmmswzl1kahvlzgqv8lqm9qcnz5iqg8f26fw3mm9rb3dcp7aba"; 16 17 }; 17 18 18 19 packageName = "split-sequence";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/sqlite.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''sqlite''; 4 - version = ''cl-20190813-git''; 4 + baseName = "sqlite"; 5 + version = "cl-20190813-git"; 5 6 6 - description = ''CL-SQLITE package is an interface to the SQLite embedded relational database engine.''; 7 + description = "CL-SQLITE package is an interface to the SQLite embedded relational database engine."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."cffi" args."iterate" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-sqlite/2019-08-13/cl-sqlite-20190813-git.tgz''; 12 - sha256 = ''07zla2h7i7ggmzsyj33f12vpxvcbbvq6x022c2dy13flx8a83rmk''; 12 + url = "http://beta.quicklisp.org/archive/cl-sqlite/2019-08-13/cl-sqlite-20190813-git.tgz"; 13 + sha256 = "07zla2h7i7ggmzsyj33f12vpxvcbbvq6x022c2dy13flx8a83rmk"; 13 14 }; 14 15 15 16 packageName = "sqlite";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/static-vectors.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''static-vectors''; 4 - version = ''v1.8.6''; 4 + baseName = "static-vectors"; 5 + version = "v1.8.6"; 5 6 6 7 parasites = [ "static-vectors/test" ]; 7 8 8 - description = ''Create vectors allocated in static memory.''; 9 + description = "Create vectors allocated in static memory."; 9 10 10 11 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."fiveam" args."trivial-features" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/static-vectors/2020-06-10/static-vectors-v1.8.6.tgz''; 14 - sha256 = ''0s549cxd8a8ix6jl4dfxj2nh01nl9f4hgnlmb88w7iixanxn58mc''; 14 + url = "http://beta.quicklisp.org/archive/static-vectors/2020-06-10/static-vectors-v1.8.6.tgz"; 15 + sha256 = "0s549cxd8a8ix6jl4dfxj2nh01nl9f4hgnlmb88w7iixanxn58mc"; 15 16 }; 16 17 17 18 packageName = "static-vectors";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/stefil.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''stefil''; 4 - version = ''20181210-git''; 4 + baseName = "stefil"; 5 + version = "20181210-git"; 5 6 6 7 parasites = [ "stefil-test" ]; 7 8 8 - description = ''Stefil - Simple Test Framework In Lisp''; 9 + description = "Stefil - Simple Test Framework In Lisp"; 9 10 10 11 deps = [ args."alexandria" args."iterate" args."metabang-bind" args."swank" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/stefil/2018-12-10/stefil-20181210-git.tgz''; 14 - sha256 = ''10dr8yjrjc2pyx55knds5llh9k716khlvbkmpxh0vn8rdmxmz96g''; 14 + url = "http://beta.quicklisp.org/archive/stefil/2018-12-10/stefil-20181210-git.tgz"; 15 + sha256 = "10dr8yjrjc2pyx55knds5llh9k716khlvbkmpxh0vn8rdmxmz96g"; 15 16 }; 16 17 17 18 packageName = "stefil";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/str.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''str''; 4 - version = ''cl-20210124-git''; 4 + baseName = "str"; 5 + version = "cl-20210124-git"; 5 6 6 - description = ''Modern, consistent and terse Common Lisp string manipulation library.''; 7 + description = "Modern, consistent and terse Common Lisp string manipulation library."; 7 8 8 9 deps = [ args."cl-change-case" args."cl-ppcre" args."cl-ppcre-unicode" args."cl-unicode" args."flexi-streams" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-str/2021-01-24/cl-str-20210124-git.tgz''; 12 - sha256 = ''07y24mx8gmhwz6px63llgsz15aqicqa4m8gd5zwxy708xggv73jc''; 12 + url = "http://beta.quicklisp.org/archive/cl-str/2021-01-24/cl-str-20210124-git.tgz"; 13 + sha256 = "07y24mx8gmhwz6px63llgsz15aqicqa4m8gd5zwxy708xggv73jc"; 13 14 }; 14 15 15 16 packageName = "str";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/string-case.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''string-case''; 4 - version = ''20180711-git''; 4 + baseName = "string-case"; 5 + version = "20180711-git"; 5 6 6 - description = ''string-case is a macro that generates specialised decision trees to dispatch on string equality''; 7 + description = "string-case is a macro that generates specialised decision trees to dispatch on string equality"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/string-case/2018-07-11/string-case-20180711-git.tgz''; 12 - sha256 = ''1n36ign4bv0idw14zyayn6i0n3iaff9yw92kpjh3qmdcq3asv90z''; 12 + url = "http://beta.quicklisp.org/archive/string-case/2018-07-11/string-case-20180711-git.tgz"; 13 + sha256 = "1n36ign4bv0idw14zyayn6i0n3iaff9yw92kpjh3qmdcq3asv90z"; 13 14 }; 14 15 15 16 packageName = "string-case";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/stumpwm.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''stumpwm''; 4 - version = ''20210228-git''; 4 + baseName = "stumpwm"; 5 + version = "20210228-git"; 5 6 6 - description = ''A tiling, keyboard driven window manager''; 7 + description = "A tiling, keyboard driven window manager"; 7 8 8 9 deps = [ args."alexandria" args."cl-ppcre" args."clx" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/stumpwm/2021-02-28/stumpwm-20210228-git.tgz''; 12 - sha256 = ''0vfhn90vfyhlbjkfkzx0i7i6qh79p9q4c4hhsym80niz508xw5v8''; 12 + url = "http://beta.quicklisp.org/archive/stumpwm/2021-02-28/stumpwm-20210228-git.tgz"; 13 + sha256 = "0vfhn90vfyhlbjkfkzx0i7i6qh79p9q4c4hhsym80niz508xw5v8"; 13 14 }; 14 15 15 16 packageName = "stumpwm";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/swank.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''swank''; 4 - version = ''slime-v2.26.1''; 4 + baseName = "swank"; 5 + version = "slime-v2.26.1"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/slime/2020-12-20/slime-v2.26.1.tgz''; 12 - sha256 = ''12q3la9lwzs01x0ii5vss0i8i78lgyjrn3adr3rs027f4b7386ny''; 12 + url = "http://beta.quicklisp.org/archive/slime/2020-12-20/slime-v2.26.1.tgz"; 13 + sha256 = "12q3la9lwzs01x0ii5vss0i8i78lgyjrn3adr3rs027f4b7386ny"; 13 14 }; 14 15 15 16 packageName = "swank";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/swap-bytes.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''swap-bytes''; 4 - version = ''v1.2''; 4 + baseName = "swap-bytes"; 5 + version = "v1.2"; 5 6 6 7 parasites = [ "swap-bytes/test" ]; 7 8 8 - description = ''Optimized byte-swapping primitives.''; 9 + description = "Optimized byte-swapping primitives."; 9 10 10 11 deps = [ args."fiveam" args."trivial-features" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/swap-bytes/2019-11-30/swap-bytes-v1.2.tgz''; 14 - sha256 = ''05g37m4cpsszh16jz7kiscd6m6l66ms73f3s6s94i56c49jfxdy8''; 14 + url = "http://beta.quicklisp.org/archive/swap-bytes/2019-11-30/swap-bytes-v1.2.tgz"; 15 + sha256 = "05g37m4cpsszh16jz7kiscd6m6l66ms73f3s6s94i56c49jfxdy8"; 15 16 }; 16 17 17 18 packageName = "swap-bytes";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/symbol-munger.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''symbol-munger''; 4 - version = ''20150407-git''; 4 + baseName = "symbol-munger"; 5 + version = "20150407-git"; 5 6 6 - description = ''Functions to convert between the spacing and 7 - capitalization conventions of various environments''; 7 + description = "Functions to convert between the spacing and 8 + capitalization conventions of various environments"; 8 9 9 10 deps = [ args."alexandria" args."iterate" ]; 10 11 11 12 src = fetchurl { 12 - url = ''http://beta.quicklisp.org/archive/symbol-munger/2015-04-07/symbol-munger-20150407-git.tgz''; 13 - sha256 = ''0dccli8557kvyy2rngh646rmavf96p7xqn5bry65d7c1f61lyqv6''; 13 + url = "http://beta.quicklisp.org/archive/symbol-munger/2015-04-07/symbol-munger-20150407-git.tgz"; 14 + sha256 = "0dccli8557kvyy2rngh646rmavf96p7xqn5bry65d7c1f61lyqv6"; 14 15 }; 15 16 16 17 packageName = "symbol-munger";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivia''; 4 - version = ''20210228-git''; 4 + baseName = "trivia"; 5 + version = "20210228-git"; 5 6 6 - description = ''NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase''; 7 + description = "NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase"; 7 8 8 9 deps = [ args."alexandria" args."closer-mop" args."introspect-environment" args."iterate" args."lisp-namespace" args."trivia_dot_balland2006" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz''; 12 - sha256 = ''0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6''; 12 + url = "http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz"; 13 + sha256 = "0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6"; 13 14 }; 14 15 15 16 packageName = "trivia";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_balland2006.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivia_dot_balland2006''; 4 - version = ''trivia-20210228-git''; 4 + baseName = "trivia_dot_balland2006"; 5 + version = "trivia-20210228-git"; 5 6 6 - description = ''Optimizer for Trivia based on (Balland 2006)''; 7 + description = "Optimizer for Trivia based on (Balland 2006)"; 7 8 8 9 deps = [ args."alexandria" args."closer-mop" args."introspect-environment" args."iterate" args."lisp-namespace" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" args."type-i" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz''; 12 - sha256 = ''0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6''; 12 + url = "http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz"; 13 + sha256 = "0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6"; 13 14 }; 14 15 15 16 packageName = "trivia.balland2006";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level0.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivia_dot_level0''; 4 - version = ''trivia-20210228-git''; 4 + baseName = "trivia_dot_level0"; 5 + version = "trivia-20210228-git"; 5 6 6 - description = ''Bootstrapping Pattern Matching Library for implementing Trivia''; 7 + description = "Bootstrapping Pattern Matching Library for implementing Trivia"; 7 8 8 9 deps = [ args."alexandria" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz''; 12 - sha256 = ''0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6''; 12 + url = "http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz"; 13 + sha256 = "0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6"; 13 14 }; 14 15 15 16 packageName = "trivia.level0";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level1.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivia_dot_level1''; 4 - version = ''trivia-20210228-git''; 4 + baseName = "trivia_dot_level1"; 5 + version = "trivia-20210228-git"; 5 6 6 - description = ''Core patterns of Trivia''; 7 + description = "Core patterns of Trivia"; 7 8 8 9 deps = [ args."alexandria" args."trivia_dot_level0" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz''; 12 - sha256 = ''0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6''; 12 + url = "http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz"; 13 + sha256 = "0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6"; 13 14 }; 14 15 15 16 packageName = "trivia.level1";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level2.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivia_dot_level2''; 4 - version = ''trivia-20210228-git''; 4 + baseName = "trivia_dot_level2"; 5 + version = "trivia-20210228-git"; 5 6 6 - description = ''NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase''; 7 + description = "NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase"; 7 8 8 9 deps = [ args."alexandria" args."closer-mop" args."lisp-namespace" args."trivia_dot_level0" args."trivia_dot_level1" args."trivial-cltl2" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz''; 12 - sha256 = ''0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6''; 12 + url = "http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz"; 13 + sha256 = "0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6"; 13 14 }; 14 15 15 16 packageName = "trivia.level2";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_quasiquote.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivia_dot_quasiquote''; 4 - version = ''trivia-20210228-git''; 4 + baseName = "trivia_dot_quasiquote"; 5 + version = "trivia-20210228-git"; 5 6 6 - description = ''fare-quasiquote extension for trivia''; 7 + description = "fare-quasiquote extension for trivia"; 7 8 8 9 deps = [ args."alexandria" args."closer-mop" args."fare-quasiquote" args."fare-quasiquote-readtable" args."fare-utils" args."lisp-namespace" args."named-readtables" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz''; 12 - sha256 = ''0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6''; 12 + url = "http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz"; 13 + sha256 = "0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6"; 13 14 }; 14 15 15 16 packageName = "trivia.quasiquote";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_trivial.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivia_dot_trivial''; 4 - version = ''trivia-20210228-git''; 4 + baseName = "trivia_dot_trivial"; 5 + version = "trivia-20210228-git"; 5 6 6 - description = ''Base level system of Trivia with a trivial optimizer. 7 + description = "Base level system of Trivia with a trivial optimizer. 7 8 Systems that intend to enhance Trivia should depend on this package, not the TRIVIA system, 8 - in order to avoid the circular dependency.''; 9 + in order to avoid the circular dependency."; 9 10 10 11 deps = [ args."alexandria" args."closer-mop" args."lisp-namespace" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivial-cltl2" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz''; 14 - sha256 = ''0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6''; 14 + url = "http://beta.quicklisp.org/archive/trivia/2021-02-28/trivia-20210228-git.tgz"; 15 + sha256 = "0qqyspq2mryl87wgrm43sj7d2wqb1pckk7fjvnmmyrf5kz5p4pc6"; 15 16 }; 16 17 17 18 packageName = "trivia.trivial";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-backtrace.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-backtrace''; 4 - version = ''20200610-git''; 4 + baseName = "trivial-backtrace"; 5 + version = "20200610-git"; 5 6 6 - description = ''trivial-backtrace''; 7 + description = "trivial-backtrace"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-backtrace/2020-06-10/trivial-backtrace-20200610-git.tgz''; 12 - sha256 = ''0slz2chal6vpiqx9zmjh4cnihhw794rq3267s7kz7livpiv52rks''; 12 + url = "http://beta.quicklisp.org/archive/trivial-backtrace/2020-06-10/trivial-backtrace-20200610-git.tgz"; 13 + sha256 = "0slz2chal6vpiqx9zmjh4cnihhw794rq3267s7kz7livpiv52rks"; 13 14 }; 14 15 15 16 packageName = "trivial-backtrace";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-clipboard.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-clipboard''; 4 - version = ''20210228-git''; 4 + baseName = "trivial-clipboard"; 5 + version = "20210228-git"; 5 6 6 - description = ''trivial-clipboard let access system clipboard.''; 7 + description = "trivial-clipboard let access system clipboard."; 7 8 8 9 deps = [ args."uiop" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-clipboard/2021-02-28/trivial-clipboard-20210228-git.tgz''; 12 - sha256 = ''1fmxkz97qrjkc320w849r1411f7j2ghf3g9xh5lczcapgjwq8f0l''; 12 + url = "http://beta.quicklisp.org/archive/trivial-clipboard/2021-02-28/trivial-clipboard-20210228-git.tgz"; 13 + sha256 = "1fmxkz97qrjkc320w849r1411f7j2ghf3g9xh5lczcapgjwq8f0l"; 13 14 }; 14 15 15 16 packageName = "trivial-clipboard";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-cltl2.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-cltl2''; 4 - version = ''20200325-git''; 4 + baseName = "trivial-cltl2"; 5 + version = "20200325-git"; 5 6 6 - description = ''Compatibility package exporting CLtL2 functionality''; 7 + description = "Compatibility package exporting CLtL2 functionality"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-cltl2/2020-03-25/trivial-cltl2-20200325-git.tgz''; 12 - sha256 = ''0hahi36v47alsvamg62d0cgay8l0razcgxl089ifj6sqy7s8iwys''; 12 + url = "http://beta.quicklisp.org/archive/trivial-cltl2/2020-03-25/trivial-cltl2-20200325-git.tgz"; 13 + sha256 = "0hahi36v47alsvamg62d0cgay8l0razcgxl089ifj6sqy7s8iwys"; 13 14 }; 14 15 15 16 packageName = "trivial-cltl2";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-features.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-features''; 4 - version = ''20210228-git''; 4 + baseName = "trivial-features"; 5 + version = "20210228-git"; 5 6 6 - description = ''Ensures consistent *FEATURES* across multiple CLs.''; 7 + description = "Ensures consistent *FEATURES* across multiple CLs."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-features/2021-02-28/trivial-features-20210228-git.tgz''; 12 - sha256 = ''1najk88r8nlpbxm8mjfj8b22f9chr9h2hxg9wqz87kkmhg4rfwwj''; 12 + url = "http://beta.quicklisp.org/archive/trivial-features/2021-02-28/trivial-features-20210228-git.tgz"; 13 + sha256 = "1najk88r8nlpbxm8mjfj8b22f9chr9h2hxg9wqz87kkmhg4rfwwj"; 13 14 }; 14 15 15 16 packageName = "trivial-features";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-file-size.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-file-size''; 4 - version = ''20200427-git''; 4 + baseName = "trivial-file-size"; 5 + version = "20200427-git"; 5 6 6 7 parasites = [ "trivial-file-size/tests" ]; 7 8 8 - description = ''Stat a file's size.''; 9 + description = "Stat a file's size."; 9 10 10 11 deps = [ args."fiveam" args."uiop" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/trivial-file-size/2020-04-27/trivial-file-size-20200427-git.tgz''; 14 - sha256 = ''1vspkgygrldbjb4gdm1fsn04j50rwil41x0fvvm4fxm84rwrscsa''; 14 + url = "http://beta.quicklisp.org/archive/trivial-file-size/2020-04-27/trivial-file-size-20200427-git.tgz"; 15 + sha256 = "1vspkgygrldbjb4gdm1fsn04j50rwil41x0fvvm4fxm84rwrscsa"; 15 16 }; 16 17 17 18 packageName = "trivial-file-size";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-garbage.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-garbage''; 4 - version = ''20200925-git''; 4 + baseName = "trivial-garbage"; 5 + version = "20200925-git"; 5 6 6 7 parasites = [ "trivial-garbage/tests" ]; 7 8 8 - description = ''Portable finalizers, weak hash-tables and weak pointers.''; 9 + description = "Portable finalizers, weak hash-tables and weak pointers."; 9 10 10 11 deps = [ args."rt" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/trivial-garbage/2020-09-25/trivial-garbage-20200925-git.tgz''; 14 - sha256 = ''00iw2iw6qzji9b2gwy798l54jdk185sxh1k7m2qd9srs8s730k83''; 14 + url = "http://beta.quicklisp.org/archive/trivial-garbage/2020-09-25/trivial-garbage-20200925-git.tgz"; 15 + sha256 = "00iw2iw6qzji9b2gwy798l54jdk185sxh1k7m2qd9srs8s730k83"; 15 16 }; 16 17 17 18 packageName = "trivial-garbage";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-gray-streams.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-gray-streams''; 4 - version = ''20210124-git''; 4 + baseName = "trivial-gray-streams"; 5 + version = "20210124-git"; 5 6 6 - description = ''Compatibility layer for Gray Streams (see http://www.cliki.net/Gray%20streams).''; 7 + description = "Compatibility layer for Gray Streams (see http://www.cliki.net/Gray%20streams)."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-gray-streams/2021-01-24/trivial-gray-streams-20210124-git.tgz''; 12 - sha256 = ''0swqcw3649279qyn5lc42xqgi13jc4kd7hf3iasf4vfli8lhb3n6''; 12 + url = "http://beta.quicklisp.org/archive/trivial-gray-streams/2021-01-24/trivial-gray-streams-20210124-git.tgz"; 13 + sha256 = "0swqcw3649279qyn5lc42xqgi13jc4kd7hf3iasf4vfli8lhb3n6"; 13 14 }; 14 15 15 16 packageName = "trivial-gray-streams";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-indent.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-indent''; 4 - version = ''20191007-git''; 4 + baseName = "trivial-indent"; 5 + version = "20191007-git"; 5 6 6 - description = ''A very simple library to allow indentation hints for SWANK.''; 7 + description = "A very simple library to allow indentation hints for SWANK."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-indent/2019-10-07/trivial-indent-20191007-git.tgz''; 12 - sha256 = ''0v5isxg6lfbgcpmndb3c515d7bswhwqgjm97li85w39krnw1bfmv''; 12 + url = "http://beta.quicklisp.org/archive/trivial-indent/2019-10-07/trivial-indent-20191007-git.tgz"; 13 + sha256 = "0v5isxg6lfbgcpmndb3c515d7bswhwqgjm97li85w39krnw1bfmv"; 13 14 }; 14 15 15 16 packageName = "trivial-indent";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-macroexpand-all.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-macroexpand-all''; 4 - version = ''20171023-git''; 4 + baseName = "trivial-macroexpand-all"; 5 + version = "20171023-git"; 5 6 6 - description = ''Call each implementation's macroexpand-all equivalent''; 7 + description = "Call each implementation's macroexpand-all equivalent"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-macroexpand-all/2017-10-23/trivial-macroexpand-all-20171023-git.tgz''; 12 - sha256 = ''0h5h9zn32pn26x7ll9h08g0csr2f5hvk1wgbr7kdhx5zbrszd7zm''; 12 + url = "http://beta.quicklisp.org/archive/trivial-macroexpand-all/2017-10-23/trivial-macroexpand-all-20171023-git.tgz"; 13 + sha256 = "0h5h9zn32pn26x7ll9h08g0csr2f5hvk1wgbr7kdhx5zbrszd7zm"; 13 14 }; 14 15 15 16 packageName = "trivial-macroexpand-all";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-main-thread.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-main-thread''; 4 - version = ''20190710-git''; 4 + baseName = "trivial-main-thread"; 5 + version = "20190710-git"; 5 6 6 - description = ''Compatibility library to run things in the main thread.''; 7 + description = "Compatibility library to run things in the main thread."; 7 8 8 9 deps = [ args."alexandria" args."array-utils" args."bordeaux-threads" args."dissect" args."simple-tasks" args."trivial-features" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-main-thread/2019-07-10/trivial-main-thread-20190710-git.tgz''; 12 - sha256 = ''1zj12rc29rrff5grmi7sjxfzdv78khbb4sg43hy2cb33hykpvg2h''; 12 + url = "http://beta.quicklisp.org/archive/trivial-main-thread/2019-07-10/trivial-main-thread-20190710-git.tgz"; 13 + sha256 = "1zj12rc29rrff5grmi7sjxfzdv78khbb4sg43hy2cb33hykpvg2h"; 13 14 }; 14 15 15 16 packageName = "trivial-main-thread";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-mimes.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-mimes''; 4 - version = ''20200715-git''; 4 + baseName = "trivial-mimes"; 5 + version = "20200715-git"; 5 6 6 - description = ''Tiny library to detect mime types in files.''; 7 + description = "Tiny library to detect mime types in files."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-mimes/2020-07-15/trivial-mimes-20200715-git.tgz''; 12 - sha256 = ''10mk1v5ad0m3bg5pl7lqhh827jvg5jb896807vmi8wznwk7zaif1''; 12 + url = "http://beta.quicklisp.org/archive/trivial-mimes/2020-07-15/trivial-mimes-20200715-git.tgz"; 13 + sha256 = "10mk1v5ad0m3bg5pl7lqhh827jvg5jb896807vmi8wznwk7zaif1"; 13 14 }; 14 15 15 16 packageName = "trivial-mimes";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-package-local-nicknames.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-package-local-nicknames''; 4 - version = ''20200610-git''; 4 + baseName = "trivial-package-local-nicknames"; 5 + version = "20200610-git"; 5 6 6 - description = ''Portability library for package-local nicknames''; 7 + description = "Portability library for package-local nicknames"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-package-local-nicknames/2020-06-10/trivial-package-local-nicknames-20200610-git.tgz''; 12 - sha256 = ''1wabkcwz0v144rb2w3rvxlcj264indfnvlyigk1wds7nq0c8lwk5''; 12 + url = "http://beta.quicklisp.org/archive/trivial-package-local-nicknames/2020-06-10/trivial-package-local-nicknames-20200610-git.tgz"; 13 + sha256 = "1wabkcwz0v144rb2w3rvxlcj264indfnvlyigk1wds7nq0c8lwk5"; 13 14 }; 14 15 15 16 packageName = "trivial-package-local-nicknames";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-types.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-types''; 4 - version = ''20120407-git''; 4 + baseName = "trivial-types"; 5 + version = "20120407-git"; 5 6 6 - description = ''Trivial type definitions''; 7 + description = "Trivial type definitions"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-types/2012-04-07/trivial-types-20120407-git.tgz''; 12 - sha256 = ''0y3lfbbvi2qp2cwswzmk1awzqrsrrcfkcm1qn744bgm1fiqhxbxx''; 12 + url = "http://beta.quicklisp.org/archive/trivial-types/2012-04-07/trivial-types-20120407-git.tgz"; 13 + sha256 = "0y3lfbbvi2qp2cwswzmk1awzqrsrrcfkcm1qn744bgm1fiqhxbxx"; 13 14 }; 14 15 15 16 packageName = "trivial-types";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-utf-8.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-utf-8''; 4 - version = ''20200925-git''; 4 + baseName = "trivial-utf-8"; 5 + version = "20200925-git"; 5 6 6 7 parasites = [ "trivial-utf-8/doc" "trivial-utf-8/tests" ]; 7 8 8 - description = ''A small library for doing UTF-8-based input and output.''; 9 + description = "A small library for doing UTF-8-based input and output."; 9 10 10 11 deps = [ args."mgl-pax" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/trivial-utf-8/2020-09-25/trivial-utf-8-20200925-git.tgz''; 14 - sha256 = ''06v9jif4f5xyl5jd7ldg69ds7cypf72xl7nda5q55fssmgcydi1b''; 14 + url = "http://beta.quicklisp.org/archive/trivial-utf-8/2020-09-25/trivial-utf-8-20200925-git.tgz"; 15 + sha256 = "06v9jif4f5xyl5jd7ldg69ds7cypf72xl7nda5q55fssmgcydi1b"; 15 16 }; 16 17 17 18 packageName = "trivial-utf-8";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-with-current-source-form.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''trivial-with-current-source-form''; 4 - version = ''20200427-git''; 4 + baseName = "trivial-with-current-source-form"; 5 + version = "20200427-git"; 5 6 6 - description = ''Helps macro writers produce better errors for macro users''; 7 + description = "Helps macro writers produce better errors for macro users"; 7 8 8 9 deps = [ args."alexandria" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-with-current-source-form/2020-04-27/trivial-with-current-source-form-20200427-git.tgz''; 12 - sha256 = ''05zkj42f071zhg7swfyklg44k0zc893c9li9virkigzmvhids84f''; 12 + url = "http://beta.quicklisp.org/archive/trivial-with-current-source-form/2020-04-27/trivial-with-current-source-form-20200427-git.tgz"; 13 + sha256 = "05zkj42f071zhg7swfyklg44k0zc893c9li9virkigzmvhids84f"; 13 14 }; 14 15 15 16 packageName = "trivial-with-current-source-form";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/type-i.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''type-i''; 4 - version = ''20191227-git''; 4 + baseName = "type-i"; 5 + version = "20191227-git"; 5 6 6 - description = ''Type Inference Utility on Fundamentally 1-arg Predicates''; 7 + description = "Type Inference Utility on Fundamentally 1-arg Predicates"; 7 8 8 9 deps = [ args."alexandria" args."closer-mop" args."introspect-environment" args."lisp-namespace" args."trivia_dot_level0" args."trivia_dot_level1" args."trivia_dot_level2" args."trivia_dot_trivial" args."trivial-cltl2" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/type-i/2019-12-27/type-i-20191227-git.tgz''; 12 - sha256 = ''0f8q6klqjgz1kdyhisfkk07izvgs04jchlv2kl3srjxfr5dj5jl5''; 12 + url = "http://beta.quicklisp.org/archive/type-i/2019-12-27/type-i-20191227-git.tgz"; 13 + sha256 = "0f8q6klqjgz1kdyhisfkk07izvgs04jchlv2kl3srjxfr5dj5jl5"; 13 14 }; 14 15 15 16 packageName = "type-i";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/uax-15.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''uax-15''; 4 - version = ''20210228-git''; 4 + baseName = "uax-15"; 5 + version = "20210228-git"; 5 6 6 7 parasites = [ "uax-15/tests" ]; 7 8 8 - description = ''Common lisp implementation of Unicode normalization functions :nfc, :nfd, :nfkc and :nfkd (Uax-15)''; 9 + description = "Common lisp implementation of Unicode normalization functions :nfc, :nfd, :nfkc and :nfkd (Uax-15)"; 9 10 10 11 deps = [ args."cl-ppcre" args."fiveam" args."split-sequence" args."uiop" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/uax-15/2021-02-28/uax-15-20210228-git.tgz''; 14 - sha256 = ''1vf590djzyika6200zqw4mbqrajcmv7g5swydimnvk7xqzpa8ksp''; 14 + url = "http://beta.quicklisp.org/archive/uax-15/2021-02-28/uax-15-20210228-git.tgz"; 15 + sha256 = "1vf590djzyika6200zqw4mbqrajcmv7g5swydimnvk7xqzpa8ksp"; 15 16 }; 16 17 17 18 packageName = "uax-15";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/uffi.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''uffi''; 4 - version = ''20180228-git''; 4 + baseName = "uffi"; 5 + version = "20180228-git"; 5 6 6 - description = ''Universal Foreign Function Library for Common Lisp''; 7 + description = "Universal Foreign Function Library for Common Lisp"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/uffi/2018-02-28/uffi-20180228-git.tgz''; 12 - sha256 = ''1kknzwxsbg2ydy2w0n88y2bq37lqqwg02ffsmz57gqbxvlk26479''; 12 + url = "http://beta.quicklisp.org/archive/uffi/2018-02-28/uffi-20180228-git.tgz"; 13 + sha256 = "1kknzwxsbg2ydy2w0n88y2bq37lqqwg02ffsmz57gqbxvlk26479"; 13 14 }; 14 15 15 16 packageName = "uffi";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/uiop.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''uiop''; 4 - version = ''3.3.4''; 4 + baseName = "uiop"; 5 + version = "3.3.4"; 5 6 6 - description = ''System lacks description''; 7 + description = "System lacks description"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/uiop/2020-02-18/uiop-3.3.4.tgz''; 12 - sha256 = ''0n0fp55ivwi6gzhaywdkngnk2snpp9nn3mz5rq3pnrwldi9q7aav''; 12 + url = "http://beta.quicklisp.org/archive/uiop/2020-02-18/uiop-3.3.4.tgz"; 13 + sha256 = "0n0fp55ivwi6gzhaywdkngnk2snpp9nn3mz5rq3pnrwldi9q7aav"; 13 14 }; 14 15 15 16 packageName = "uiop";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/unit-test.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''unit-test''; 4 - version = ''20120520-git''; 4 + baseName = "unit-test"; 5 + version = "20120520-git"; 5 6 6 - description = ''unit-testing framework for common lisp''; 7 + description = "unit-testing framework for common lisp"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/unit-test/2012-05-20/unit-test-20120520-git.tgz''; 12 - sha256 = ''1bwbx9d2z9qll46ksfh7bgd0dgh4is2dyfhkladq53qycvjywv9l''; 12 + url = "http://beta.quicklisp.org/archive/unit-test/2012-05-20/unit-test-20120520-git.tgz"; 13 + sha256 = "1bwbx9d2z9qll46ksfh7bgd0dgh4is2dyfhkladq53qycvjywv9l"; 13 14 }; 14 15 15 16 packageName = "unit-test";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/unix-options.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''unix-options''; 4 - version = ''20151031-git''; 4 + baseName = "unix-options"; 5 + version = "20151031-git"; 5 6 6 - description = ''Easy to use command line option parser''; 7 + description = "Easy to use command line option parser"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/unix-options/2015-10-31/unix-options-20151031-git.tgz''; 12 - sha256 = ''0c9vbvvyx5qwvns87624gzxjcbdkbkcwssg29cxjfv3ci3qwqcd5''; 12 + url = "http://beta.quicklisp.org/archive/unix-options/2015-10-31/unix-options-20151031-git.tgz"; 13 + sha256 = "0c9vbvvyx5qwvns87624gzxjcbdkbkcwssg29cxjfv3ci3qwqcd5"; 13 14 }; 14 15 15 16 packageName = "unix-options";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/unix-opts.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''unix-opts''; 4 - version = ''20210124-git''; 4 + baseName = "unix-opts"; 5 + version = "20210124-git"; 5 6 6 7 parasites = [ "unix-opts/tests" ]; 7 8 8 - description = ''minimalistic parser of command line arguments''; 9 + description = "minimalistic parser of command line arguments"; 9 10 10 11 deps = [ ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/unix-opts/2021-01-24/unix-opts-20210124-git.tgz''; 14 - sha256 = ''1gjjav035n6297vgc4wi3i64516b8sdyi0d02q0nwicciwg6mwsn''; 14 + url = "http://beta.quicklisp.org/archive/unix-opts/2021-01-24/unix-opts-20210124-git.tgz"; 15 + sha256 = "1gjjav035n6297vgc4wi3i64516b8sdyi0d02q0nwicciwg6mwsn"; 15 16 }; 16 17 17 18 packageName = "unix-opts";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/usocket-server.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''usocket-server''; 4 - version = ''usocket-0.8.3''; 4 + baseName = "usocket-server"; 5 + version = "usocket-0.8.3"; 5 6 6 - description = ''Universal socket library for Common Lisp (server side)''; 7 + description = "Universal socket library for Common Lisp (server side)"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."split-sequence" args."usocket" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz''; 12 - sha256 = ''19gl72r9jqms8slzn7i7bww2cqng9mhiqqhhccadlrx2xv6d3lm7''; 12 + url = "http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz"; 13 + sha256 = "19gl72r9jqms8slzn7i7bww2cqng9mhiqqhhccadlrx2xv6d3lm7"; 13 14 }; 14 15 15 16 packageName = "usocket-server";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/usocket.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''usocket''; 4 - version = ''0.8.3''; 4 + baseName = "usocket"; 5 + version = "0.8.3"; 5 6 6 - description = ''Universal socket library for Common Lisp''; 7 + description = "Universal socket library for Common Lisp"; 7 8 8 9 deps = [ args."split-sequence" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz''; 12 - sha256 = ''19gl72r9jqms8slzn7i7bww2cqng9mhiqqhhccadlrx2xv6d3lm7''; 12 + url = "http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz"; 13 + sha256 = "19gl72r9jqms8slzn7i7bww2cqng9mhiqqhhccadlrx2xv6d3lm7"; 13 14 }; 14 15 15 16 packageName = "usocket";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/utilities_dot_print-items.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''utilities_dot_print-items''; 4 - version = ''20190813-git''; 4 + baseName = "utilities_dot_print-items"; 5 + version = "20190813-git"; 5 6 6 7 parasites = [ "utilities.print-items/test" ]; 7 8 8 - description = ''A protocol for flexible and composable printing.''; 9 + description = "A protocol for flexible and composable printing."; 9 10 10 11 deps = [ args."alexandria" args."fiveam" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/utilities.print-items/2019-08-13/utilities.print-items-20190813-git.tgz''; 14 - sha256 = ''12l4kzz621qfcg8p5qzyxp4n4hh9wdlpiziykwb4c80g32rdwkc2''; 14 + url = "http://beta.quicklisp.org/archive/utilities.print-items/2019-08-13/utilities.print-items-20190813-git.tgz"; 15 + sha256 = "12l4kzz621qfcg8p5qzyxp4n4hh9wdlpiziykwb4c80g32rdwkc2"; 15 16 }; 16 17 17 18 packageName = "utilities.print-items";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/utilities_dot_print-tree.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''utilities_dot_print-tree''; 4 - version = ''20200325-git''; 4 + baseName = "utilities_dot_print-tree"; 5 + version = "20200325-git"; 5 6 6 7 parasites = [ "utilities.print-tree/test" ]; 7 8 8 - description = ''This system provides simple facilities for printing tree structures.''; 9 + description = "This system provides simple facilities for printing tree structures."; 9 10 10 11 deps = [ args."alexandria" args."fiveam" args."uiop" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/utilities.print-tree/2020-03-25/utilities.print-tree-20200325-git.tgz''; 14 - sha256 = ''1nam8g2ppzkzpkwwhmil9y68is43ljpvc7hd64zxp4zsaqab5dww''; 14 + url = "http://beta.quicklisp.org/archive/utilities.print-tree/2020-03-25/utilities.print-tree-20200325-git.tgz"; 15 + sha256 = "1nam8g2ppzkzpkwwhmil9y68is43ljpvc7hd64zxp4zsaqab5dww"; 15 16 }; 16 17 17 18 packageName = "utilities.print-tree";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/uuid.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''uuid''; 4 - version = ''20200715-git''; 4 + baseName = "uuid"; 5 + version = "20200715-git"; 5 6 6 - description = ''UUID Generation''; 7 + description = "UUID Generation"; 7 8 8 9 deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" args."trivial-utf-8" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/uuid/2020-07-15/uuid-20200715-git.tgz''; 12 - sha256 = ''1ymir6hgax1vbbcgyprnwbsx224ih03a55v10l35xridwyzhzrx0''; 12 + url = "http://beta.quicklisp.org/archive/uuid/2020-07-15/uuid-20200715-git.tgz"; 13 + sha256 = "1ymir6hgax1vbbcgyprnwbsx224ih03a55v10l35xridwyzhzrx0"; 13 14 }; 14 15 15 16 packageName = "uuid";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/vom.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''vom''; 4 - version = ''20160825-git''; 4 + baseName = "vom"; 5 + version = "20160825-git"; 5 6 6 - description = ''A tiny logging utility.''; 7 + description = "A tiny logging utility."; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/vom/2016-08-25/vom-20160825-git.tgz''; 12 - sha256 = ''0mvln0xx8qnrsmaj7c0f2ilgahvf078qvhqag7qs3j26xmamjm93''; 12 + url = "http://beta.quicklisp.org/archive/vom/2016-08-25/vom-20160825-git.tgz"; 13 + sha256 = "0mvln0xx8qnrsmaj7c0f2ilgahvf078qvhqag7qs3j26xmamjm93"; 13 14 }; 14 15 15 16 packageName = "vom";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/woo.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''woo''; 4 - version = ''20200427-git''; 4 + baseName = "woo"; 5 + version = "20200427-git"; 5 6 6 - description = ''An asynchronous HTTP server written in Common Lisp''; 7 + description = "An asynchronous HTTP server written in Common Lisp"; 7 8 8 9 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-utilities" args."clack-socket" args."fast-http" args."fast-io" args."flexi-streams" args."lev" args."proc-parse" args."quri" args."smart-buffer" args."split-sequence" args."static-vectors" args."swap-bytes" args."trivial-features" args."trivial-gray-streams" args."trivial-utf-8" args."vom" args."xsubseq" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/woo/2020-04-27/woo-20200427-git.tgz''; 12 - sha256 = ''1mmgwgf9n74zab96x1n4faij30l2vk19xy74fcp0xnpj4lrp7v29''; 12 + url = "http://beta.quicklisp.org/archive/woo/2020-04-27/woo-20200427-git.tgz"; 13 + sha256 = "1mmgwgf9n74zab96x1n4faij30l2vk19xy74fcp0xnpj4lrp7v29"; 13 14 }; 14 15 15 16 packageName = "woo";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/wookie.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''wookie''; 4 - version = ''20191130-git''; 4 + baseName = "wookie"; 5 + version = "20191130-git"; 5 6 6 - description = ''An evented webserver for Common Lisp.''; 7 + description = "An evented webserver for Common Lisp."; 7 8 8 9 deps = [ args."alexandria" args."babel" args."blackbird" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."chunga" args."cl-async" args."cl-async-base" args."cl-async-ssl" args."cl-async-util" args."cl-fad" args."cl-libuv" args."cl-ppcre" args."cl-utilities" args."do-urlencode" args."fast-http" args."fast-io" args."flexi-streams" args."proc-parse" args."quri" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."vom" args."xsubseq" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/wookie/2019-11-30/wookie-20191130-git.tgz''; 12 - sha256 = ''13f9fi7yv28lag79z03jrnm7aih2x5zwvh4hw9cadw75956975d2''; 12 + url = "http://beta.quicklisp.org/archive/wookie/2019-11-30/wookie-20191130-git.tgz"; 13 + sha256 = "13f9fi7yv28lag79z03jrnm7aih2x5zwvh4hw9cadw75956975d2"; 13 14 }; 14 15 15 16 packageName = "wookie";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/xembed.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''xembed''; 4 - version = ''clx-20191130-git''; 4 + baseName = "xembed"; 5 + version = "clx-20191130-git"; 5 6 6 - description = ''An implementation of the XEMBED protocol that integrates with CLX.''; 7 + description = "An implementation of the XEMBED protocol that integrates with CLX."; 7 8 8 9 deps = [ args."clx" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clx-xembed/2019-11-30/clx-xembed-20191130-git.tgz''; 12 - sha256 = ''1ik5gxzhn9j7827jg6g8rk2wa5jby11n2db24y6wrf0ldnbpj7jd''; 12 + url = "http://beta.quicklisp.org/archive/clx-xembed/2019-11-30/clx-xembed-20191130-git.tgz"; 13 + sha256 = "1ik5gxzhn9j7827jg6g8rk2wa5jby11n2db24y6wrf0ldnbpj7jd"; 13 14 }; 14 15 15 16 packageName = "xembed";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/xkeyboard.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''xkeyboard''; 4 - version = ''clx-20120811-git''; 4 + baseName = "xkeyboard"; 5 + version = "clx-20120811-git"; 5 6 6 7 parasites = [ "xkeyboard-test" ]; 7 8 8 - description = ''XKeyboard is X11 extension for clx of the same name.''; 9 + description = "XKeyboard is X11 extension for clx of the same name."; 9 10 10 11 deps = [ args."clx" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/clx-xkeyboard/2012-08-11/clx-xkeyboard-20120811-git.tgz''; 14 - sha256 = ''11q70drx3xn7rvk528qlnzpnxd6hg6801kc54ys3jz1l7074458n''; 14 + url = "http://beta.quicklisp.org/archive/clx-xkeyboard/2012-08-11/clx-xkeyboard-20120811-git.tgz"; 15 + sha256 = "11q70drx3xn7rvk528qlnzpnxd6hg6801kc54ys3jz1l7074458n"; 15 16 }; 16 17 17 18 packageName = "xkeyboard";
+7 -6
pkgs/development/lisp-modules/quicklisp-to-nix-output/xml_dot_location.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''xml_dot_location''; 4 - version = ''20200325-git''; 4 + baseName = "xml_dot_location"; 5 + version = "20200325-git"; 5 6 6 7 parasites = [ "xml.location/test" ]; 7 8 8 - description = ''This system provides a convenient interface for 9 - manipulating XML data. It is inspired by the xmltio library.''; 9 + description = "This system provides a convenient interface for 10 + manipulating XML data. It is inspired by the xmltio library."; 10 11 11 12 deps = [ args."alexandria" args."anaphora" args."babel" args."cl-ppcre" args."closer-mop" args."closure-common" args."cxml" args."cxml-stp" args."iterate" args."let-plus" args."lift" args."more-conditions" args."parse-number" args."puri" args."split-sequence" args."trivial-features" args."trivial-gray-streams" args."xpath" args."yacc" ]; 12 13 13 14 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/xml.location/2020-03-25/xml.location-20200325-git.tgz''; 15 - sha256 = ''0wfccj1p1al0w9pc5rhxpsvm3wb2lr5fc4cfjyg751pwsasjikwx''; 15 + url = "http://beta.quicklisp.org/archive/xml.location/2020-03-25/xml.location-20200325-git.tgz"; 16 + sha256 = "0wfccj1p1al0w9pc5rhxpsvm3wb2lr5fc4cfjyg751pwsasjikwx"; 16 17 }; 17 18 18 19 packageName = "xml.location";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/xmls.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''xmls''; 4 - version = ''3.0.2''; 4 + baseName = "xmls"; 5 + version = "3.0.2"; 5 6 6 7 parasites = [ "xmls/test" "xmls/unit-test" ]; 7 8 8 - description = ''System lacks description''; 9 + description = "System lacks description"; 9 10 10 11 deps = [ args."fiveam" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/xmls/2018-04-30/xmls-3.0.2.tgz''; 14 - sha256 = ''1r7mvw62zjcg45j3hm8jlbiisad2b415pghn6qcmhl03dmgp7kgi''; 14 + url = "http://beta.quicklisp.org/archive/xmls/2018-04-30/xmls-3.0.2.tgz"; 15 + sha256 = "1r7mvw62zjcg45j3hm8jlbiisad2b415pghn6qcmhl03dmgp7kgi"; 15 16 }; 16 17 17 18 packageName = "xmls";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/xpath.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''xpath''; 4 - version = ''plexippus-20190521-git''; 4 + baseName = "xpath"; 5 + version = "plexippus-20190521-git"; 5 6 6 7 parasites = [ "xpath/test" ]; 7 8 8 - description = ''An implementation of the XML Path Language (XPath) Version 1.0''; 9 + description = "An implementation of the XML Path Language (XPath) Version 1.0"; 9 10 10 11 deps = [ args."alexandria" args."babel" args."cl-ppcre" args."closure-common" args."cxml" args."parse-number" args."puri" args."trivial-features" args."trivial-gray-streams" args."yacc" ]; 11 12 12 13 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/plexippus-xpath/2019-05-21/plexippus-xpath-20190521-git.tgz''; 14 - sha256 = ''15357w1rlmahld4rh8avix7m40mwiiv7n2vlyc57ldw2k1m0n7xa''; 14 + url = "http://beta.quicklisp.org/archive/plexippus-xpath/2019-05-21/plexippus-xpath-20190521-git.tgz"; 15 + sha256 = "15357w1rlmahld4rh8avix7m40mwiiv7n2vlyc57ldw2k1m0n7xa"; 15 16 }; 16 17 17 18 packageName = "xpath";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/xsubseq.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''xsubseq''; 4 - version = ''20170830-git''; 4 + baseName = "xsubseq"; 5 + version = "20170830-git"; 5 6 6 - description = ''Efficient way to manage "subseq"s in Common Lisp''; 7 + description = "Efficient way to manage \"subseq\"s in Common Lisp"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/xsubseq/2017-08-30/xsubseq-20170830-git.tgz''; 12 - sha256 = ''1am63wkha97hyvkqf4ydx3q07mqpa0chkx65znr7kmqi83a8waml''; 12 + url = "http://beta.quicklisp.org/archive/xsubseq/2017-08-30/xsubseq-20170830-git.tgz"; 13 + sha256 = "1am63wkha97hyvkqf4ydx3q07mqpa0chkx65znr7kmqi83a8waml"; 13 14 }; 14 15 15 16 packageName = "xsubseq";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/yacc.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''yacc''; 4 - version = ''cl-20101006-darcs''; 4 + baseName = "yacc"; 5 + version = "cl-20101006-darcs"; 5 6 6 - description = ''A LALR(1) parser generator for Common Lisp''; 7 + description = "A LALR(1) parser generator for Common Lisp"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-yacc/2010-10-06/cl-yacc-20101006-darcs.tgz''; 12 - sha256 = ''0cymvl0arp4yahqcnhxggs1z2g42bf6z4ix75ba7wbsi52zirjp7''; 12 + url = "http://beta.quicklisp.org/archive/cl-yacc/2010-10-06/cl-yacc-20101006-darcs.tgz"; 13 + sha256 = "0cymvl0arp4yahqcnhxggs1z2g42bf6z4ix75ba7wbsi52zirjp7"; 13 14 }; 14 15 15 16 packageName = "yacc";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/yason.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''yason''; 4 - version = ''v0.7.8''; 4 + baseName = "yason"; 5 + version = "v0.7.8"; 5 6 6 - description = ''JSON parser/encoder''; 7 + description = "JSON parser/encoder"; 7 8 8 9 deps = [ args."alexandria" args."trivial-gray-streams" ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/yason/2019-12-27/yason-v0.7.8.tgz''; 12 - sha256 = ''11d51i2iw4nxsparwbh3s6w9zyms3wi0z0fprwz1d3sqlf03j6f1''; 12 + url = "http://beta.quicklisp.org/archive/yason/2019-12-27/yason-v0.7.8.tgz"; 13 + sha256 = "11d51i2iw4nxsparwbh3s6w9zyms3wi0z0fprwz1d3sqlf03j6f1"; 13 14 }; 14 15 15 16 packageName = "yason";
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/zpb-ttf.nix
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''zpb-ttf''; 4 - version = ''release-1.0.4''; 4 + baseName = "zpb-ttf"; 5 + version = "release-1.0.4"; 5 6 6 - description = ''Access TrueType font metrics and outlines from Common Lisp''; 7 + description = "Access TrueType font metrics and outlines from Common Lisp"; 7 8 8 9 deps = [ ]; 9 10 10 11 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/zpb-ttf/2021-01-24/zpb-ttf-release-1.0.4.tgz''; 12 - sha256 = ''186jzhmklby2pkmwv3zxw09qh8023f7w5ng2ql46l6abx146s3ll''; 12 + url = "http://beta.quicklisp.org/archive/zpb-ttf/2021-01-24/zpb-ttf-release-1.0.4.tgz"; 13 + sha256 = "186jzhmklby2pkmwv3zxw09qh8023f7w5ng2ql46l6abx146s3ll"; 13 14 }; 14 15 15 16 packageName = "zpb-ttf";
+1
pkgs/development/lisp-modules/quicklisp-to-nix-systems.txt
··· 11 11 bordeaux-threads 12 12 calispel 13 13 caveman 14 + cl-custom-hash-table 14 15 cffi 15 16 cffi-grovel 16 17 cffi-uffi-compat
+8
pkgs/development/lisp-modules/quicklisp-to-nix.nix
··· 3967 3967 })); 3968 3968 3969 3969 3970 + "cl-custom-hash-table" = buildLispPackage 3971 + ((f: x: (x // (f x))) 3972 + (qlOverrides."cl-custom-hash-table" or (x: {})) 3973 + (import ./quicklisp-to-nix-output/cl-custom-hash-table.nix { 3974 + inherit fetchurl; 3975 + })); 3976 + 3977 + 3970 3978 "caveman" = buildLispPackage 3971 3979 ((f: x: (x // (f x))) 3972 3980 (qlOverrides."caveman" or (x: {}))
+6 -5
pkgs/development/lisp-modules/quicklisp-to-nix/nix-package.emb
··· 1 + /* Generated file. */ 1 2 args @ { fetchurl, ... }: 2 3 rec { 3 - baseName = ''<% @var filename %>''; 4 - version = ''<% @var version %>'';<% @if parasites %> 4 + baseName = "<% @var filename %>"; 5 + version = "<% @var version %>";<% @if parasites %> 5 6 6 7 parasites = [<% (dolist (p (getf env :parasites)) (format t " \"~A\"" p)) %> ];<% @endif %> 7 8 8 - description = ''<% @var description %>''; 9 + description = <%= (format nil "~s" (cl-emb::getf-emb "description")) %>; 9 10 10 11 deps = [ <% @loop deps %>args."<% @var filename %>" <% @endloop %>]; 11 12 12 13 src = fetchurl { 13 - url = ''<% @var url %>''; 14 - sha256 = ''<% @var sha256 %>''; 14 + url = "<% @var url %>"; 15 + sha256 = "<% @var sha256 %>"; 15 16 }; 16 17 17 18 packageName = "<% @var name %>";
+5 -1
pkgs/development/mobile/androidenv/ndk-bundle/default.nix
··· 14 14 patchInstructions = lib.optionalString (os == "linux") ('' 15 15 patchShebangs . 16 16 17 + # Fix the shebangs of the auto-generated scripts. 18 + substituteInPlace ./build/tools/make_standalone_toolchain.py \ 19 + --replace '#!/bin/bash' '#!${pkgs.bash}/bin/bash' 20 + 17 21 '' + lib.optionalString (builtins.compareVersions (lib.getVersion package) "21" > 0) '' 18 22 patch -p1 \ 19 23 --no-backup-if-mismatch < ${./make_standalone_toolchain.py_18.patch} || true 20 - wrapProgram $(pwd)/build/tools/make_standalone_toolchain.py --prefix PATH : "${runtime_paths}" 24 + wrapProgram ./build/tools/make_standalone_toolchain.py --prefix PATH : "${runtime_paths}" 21 25 '' + '' 22 26 23 27 # TODO: allow this stuff
+2 -2
pkgs/development/python-modules/braintree/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "braintree"; 9 - version = "4.6.0"; 9 + version = "4.7.0"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "ef19892f99fa497c90684db6d41442e94b2d3b0ed00afe2c574e46d89cb9a89c"; 13 + sha256 = "25a95f95acb7f180b37f8dcf4df7efa84ae0ba6ad9dc4ba0e724e2cc534c3483"; 14 14 }; 15 15 16 16 propagatedBuildInputs = [ requests ];
+5 -4
pkgs/development/python-modules/pyosmium/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, cmake, python 2 2 , libosmium, protozero, boost, expat, bzip2, zlib, pybind11 3 - , nose, shapely, pythonOlder, isPyPy }: 3 + , nose, shapely, pythonOlder, isPyPy, lz4 }: 4 4 5 5 buildPythonPackage rec { 6 6 pname = "pyosmium"; 7 - version = "3.1.0"; 7 + version = "3.1.3"; 8 8 9 9 disabled = pythonOlder "3.4" || isPyPy; 10 10 ··· 12 12 owner = "osmcode"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "0m11hdgiysdhyi5yn6nj8a8ycjzx5hpjy7n1c4j6q5caifj7rf7h"; 15 + sha256 = "11ma8nr7k2ixwwb55fiqvrj5qbmpgkyfk0canz4l0m8b7rcw3qsc"; 16 16 }; 17 17 18 18 nativeBuildInputs = [ cmake ]; 19 - buildInputs = [ libosmium protozero boost expat bzip2 zlib pybind11 ]; 19 + buildInputs = [ libosmium protozero boost expat bzip2 zlib pybind11 lz4 ]; 20 20 21 21 preBuild = "cd .."; 22 22 ··· 27 27 meta = with lib; { 28 28 description = "Python bindings for libosmium"; 29 29 homepage = "https://osmcode.org/pyosmium"; 30 + changelog = "https://github.com/osmcode/pyosmium/blob/v${version}/CHANGELOG.md"; 30 31 license = licenses.bsd2; 31 32 maintainers = with maintainers; [ sikmir ]; 32 33 };
+2 -2
pkgs/development/tools/analysis/checkstyle/default.nix
··· 1 1 { lib, stdenv, fetchurl, makeWrapper, jre }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "8.41"; 4 + version = "8.41.1"; 5 5 pname = "checkstyle"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; 9 - sha256 = "sha256-+XMCstfxOabLDp66pRQtYelrLUOMCWnTc3KbiOlfVzI="; 9 + sha256 = "sha256-zW6gjRu5YEH04xCbsW20FeFfmBg+i+aW3WpViBQigXI="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/development/tools/ocaml/dune/2.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "dune"; 9 - version = "2.8.4"; 9 + version = "2.8.5"; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz"; 13 - sha256 = "1b78f8gk53m68i9igvfpylmvi55h4qqfwymknz1vval4flbj0r2f"; 13 + sha256 = "0a9n8ilsi3kyx5xqvk5s7iikk6y3pkpm5mvsn5za5ivlzf1i40br"; 14 14 }; 15 15 16 16 buildInputs = [ ocaml findlib ];
+3 -3
pkgs/development/tools/rust/cargo-watch/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-watch"; 5 - version = "7.5.1"; 5 + version = "7.6.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "passcod"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Eqg+Ke5n2H6/bPd1W8HL4XLMfdV8ard4SDrCeK0MFOg="; 11 + sha256 = "sha256-vjX8xfwv/DOogji+OQCB9l5ebGBNoLW722TGpZ5Wg80="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-s7ip+/1hZJ8dQGix6yI5fQ4gAw2nHU8+dxxYcVvyTAs="; 14 + cargoSha256 = "sha256-ku+tI0DIofV0EZ413sPjbJDUSqwTxiT8NWBeURrJW1k="; 15 15 16 16 buildInputs = lib.optional stdenv.isDarwin CoreServices; 17 17
+126 -126
pkgs/misc/vim-plugins/generated.nix
··· 257 257 258 258 barbar-nvim = buildVimPluginFrom2Nix { 259 259 pname = "barbar-nvim"; 260 - version = "2021-03-18"; 260 + version = "2021-03-29"; 261 261 src = fetchFromGitHub { 262 262 owner = "romgrk"; 263 263 repo = "barbar.nvim"; 264 - rev = "eb24bdceff4f73b8081e2c801752105265f4b1b3"; 265 - sha256 = "18rcikrlcdyg6gfbhaqnqf1p0pyfym9a0mxh430slhzzjhr2a7gh"; 264 + rev = "f62ab294b9e4b3f5754c55d747d9ba513c7743e7"; 265 + sha256 = "15lc6mrnzkc9bglgg8j9wn224raqbvd3k9wm6hjj5fb36ff6dlb5"; 266 266 }; 267 267 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 268 268 }; ··· 389 389 390 390 chadtree = buildVimPluginFrom2Nix { 391 391 pname = "chadtree"; 392 - version = "2021-03-27"; 392 + version = "2021-03-30"; 393 393 src = fetchFromGitHub { 394 394 owner = "ms-jpq"; 395 395 repo = "chadtree"; 396 - rev = "7efa17a4193a9835b4b29f9ae3accdc86174cdcf"; 397 - sha256 = "0zya44l1svf7f97w2h4jql3zn86nhv8r8lk416xiy22g6kw37xsl"; 396 + rev = "a66c3f191f64137e76b4df462177690faaf5faf9"; 397 + sha256 = "1ijwfwi5a98zphwxkm1dx4kz1042a268fg02f21r7ssd0fh7fjv9"; 398 398 }; 399 399 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 400 400 }; ··· 485 485 486 486 coc-explorer = buildVimPluginFrom2Nix { 487 487 pname = "coc-explorer"; 488 - version = "2021-03-18"; 488 + version = "2021-03-29"; 489 489 src = fetchFromGitHub { 490 490 owner = "weirongxu"; 491 491 repo = "coc-explorer"; 492 - rev = "123ef20cd2e5fa85df29912d545c2699844cd9b9"; 493 - sha256 = "1bdqvmi1g8vziqkslwhbsjlnxk24vkc0c24hzn71zxlpnw1i3axz"; 492 + rev = "f5bd5b3cdf43a281eb067ae7d25a30f1d32175ce"; 493 + sha256 = "0w4j5p15swlq5qgij140fjjhk9by8bva9rkz8z6kc6262rhq0vl7"; 494 494 }; 495 495 meta.homepage = "https://github.com/weirongxu/coc-explorer/"; 496 496 }; ··· 509 509 510 510 coc-lua = buildVimPluginFrom2Nix { 511 511 pname = "coc-lua"; 512 - version = "2021-03-26"; 512 + version = "2021-03-28"; 513 513 src = fetchFromGitHub { 514 514 owner = "josa42"; 515 515 repo = "coc-lua"; 516 - rev = "f996547651b775155bbc14f8031a4b674320a9ee"; 517 - sha256 = "09h9ybb9lir9lq62496dh3d57i8x01a0iy2kfg273rp1fn7l8j03"; 516 + rev = "d826e14db13980f7f1734117ff60f5e3573eb2ce"; 517 + sha256 = "1b0yi6513n690y2sqlyzsckr15jim9izkjlfpphpw4a8d819hx7l"; 518 518 }; 519 519 meta.homepage = "https://github.com/josa42/coc-lua/"; 520 520 }; ··· 545 545 546 546 coc-nvim = buildVimPluginFrom2Nix { 547 547 pname = "coc-nvim"; 548 - version = "2021-03-24"; 548 + version = "2021-03-30"; 549 549 src = fetchFromGitHub { 550 550 owner = "neoclide"; 551 551 repo = "coc.nvim"; 552 - rev = "67fb4d138f34c12c6b44d87be66ede26d51b95c2"; 553 - sha256 = "0nnh0gnc6g0a67na3zar6zvpc3i2qlna3l783hhy3832ih79v9s9"; 552 + rev = "5e4dcf72bf47aabb8b579b16812dacdac5b2e77c"; 553 + sha256 = "18129hfwd98xsfrqgv95m9kginr0y95i7h6dg91wa0pmlqfv61al"; 554 554 }; 555 555 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 556 556 }; ··· 858 858 859 859 dashboard-nvim = buildVimPluginFrom2Nix { 860 860 pname = "dashboard-nvim"; 861 - version = "2021-03-27"; 861 + version = "2021-03-28"; 862 862 src = fetchFromGitHub { 863 863 owner = "glepnir"; 864 864 repo = "dashboard-nvim"; 865 - rev = "81b804d4009a9abacc259c542871c34852ec65a3"; 866 - sha256 = "0cwarklmyj4wfvjmh7f1nlxnrx8vfvjbrlz3l3j6wc3amcd12kik"; 865 + rev = "181ca6577101c04dd220b7a25096cbd4325979ec"; 866 + sha256 = "03zazbnbcsg272zzx4q4n6vkvcwzm8lh1jw1fzbkn2blmffyjld6"; 867 867 }; 868 868 meta.homepage = "https://github.com/glepnir/dashboard-nvim/"; 869 869 }; ··· 942 942 943 943 denite-nvim = buildVimPluginFrom2Nix { 944 944 pname = "denite-nvim"; 945 - version = "2021-03-27"; 945 + version = "2021-03-29"; 946 946 src = fetchFromGitHub { 947 947 owner = "Shougo"; 948 948 repo = "denite.nvim"; 949 - rev = "7cce9b9e9e1d2c44e07574572f730018d9c7ab9a"; 950 - sha256 = "1cazz5ykfl6k0l3cxs3g60n9a5rrd78w0517861lbg9vwll7llw6"; 949 + rev = "4bf092244dac9c8d21e22039979fa3afe240e5c5"; 950 + sha256 = "1rybc152mv33xj460nk0g9gl4lkm342kp8b3w32mmb6s35iz9prl"; 951 951 }; 952 952 meta.homepage = "https://github.com/Shougo/denite.nvim/"; 953 953 }; ··· 1027 1027 1028 1028 deoplete-go = buildVimPluginFrom2Nix { 1029 1029 pname = "deoplete-go"; 1030 - version = "2020-11-16"; 1030 + version = "2021-03-30"; 1031 1031 src = fetchFromGitHub { 1032 1032 owner = "deoplete-plugins"; 1033 1033 repo = "deoplete-go"; 1034 - rev = "a6657ff9b91c7301ad1f6a01a7f0113691ef0667"; 1035 - sha256 = "02lv900k3vw33nknz58kl0hd4gr05jqq0xabi1zd4mvnk7vyqbd2"; 1034 + rev = "4eac2e6f127f2e2601dee415db2f826e2c9ef16c"; 1035 + sha256 = "0vwp1vnjf63i7wm3crpwjj9myjdw75ghq20i6nfrfv1szhqnq28m"; 1036 1036 fetchSubmodules = true; 1037 1037 }; 1038 1038 meta.homepage = "https://github.com/deoplete-plugins/deoplete-go/"; ··· 1643 1643 1644 1644 gitsigns-nvim = buildVimPluginFrom2Nix { 1645 1645 pname = "gitsigns-nvim"; 1646 - version = "2021-03-27"; 1646 + version = "2021-03-29"; 1647 1647 src = fetchFromGitHub { 1648 1648 owner = "lewis6991"; 1649 1649 repo = "gitsigns.nvim"; 1650 - rev = "4ac3ea179d0f751ed1d9300fae63719f55085d7b"; 1651 - sha256 = "0a5czpf6808xrr327c9kcg68br6whfv41rp4w9073kvf1ir32kp3"; 1650 + rev = "21e86b0a5e6870c227f1f922104816f861dc4066"; 1651 + sha256 = "0q6inyqkwxpiqq48744bcr2inkvlvnp3dycanbnkyb5828dd0gxz"; 1652 1652 }; 1653 1653 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 1654 1654 }; ··· 1811 1811 1812 1812 hop-nvim = buildVimPluginFrom2Nix { 1813 1813 pname = "hop-nvim"; 1814 - version = "2021-03-25"; 1814 + version = "2021-03-28"; 1815 1815 src = fetchFromGitHub { 1816 1816 owner = "phaazon"; 1817 1817 repo = "hop.nvim"; 1818 - rev = "a0e9e229bbd0e493511fb9d27d917f55c5e4191a"; 1819 - sha256 = "090waig8fqq1s9z66ykr64ns3g9yb6qy32jf5fwamx43m9xcws2s"; 1818 + rev = "a89898aefbb18d2c804c049c63c009203f810f08"; 1819 + sha256 = "0gncq9blz0rqvybljfpg3qndmdyv8hh3w7yqx7l6h2czhm7ympvi"; 1820 1820 }; 1821 1821 meta.homepage = "https://github.com/phaazon/hop.nvim/"; 1822 1822 }; ··· 2292 2292 2293 2293 lsp-status-nvim = buildVimPluginFrom2Nix { 2294 2294 pname = "lsp-status-nvim"; 2295 - version = "2021-03-13"; 2295 + version = "2021-03-29"; 2296 2296 src = fetchFromGitHub { 2297 2297 owner = "nvim-lua"; 2298 2298 repo = "lsp-status.nvim"; 2299 - rev = "0aaf6a68e8668c1baa724c0d31679ad12f27cd47"; 2300 - sha256 = "08dlfm3f9qa4p77zznmgjrmx09yngpcfzmxmyc5z3gp51b6bbixb"; 2299 + rev = "8c955dbe4a8e0a9fc0ab8a237ebd7ff25c63d482"; 2300 + sha256 = "137h4sbhdjrf383kl3sskx90m40j8xsjhq37p2m7b0mjpdzq3mzz"; 2301 2301 }; 2302 2302 meta.homepage = "https://github.com/nvim-lua/lsp-status.nvim/"; 2303 2303 }; ··· 2328 2328 2329 2329 lspsaga-nvim = buildVimPluginFrom2Nix { 2330 2330 pname = "lspsaga-nvim"; 2331 - version = "2021-03-26"; 2331 + version = "2021-03-28"; 2332 2332 src = fetchFromGitHub { 2333 2333 owner = "glepnir"; 2334 2334 repo = "lspsaga.nvim"; 2335 - rev = "9a377c6e727cff15b4c4c3657e36f3a36e559d50"; 2336 - sha256 = "0cpyiwckn1dpgf6cyrlh1yffib3dckg18ac84c1bvpmvc37zvghy"; 2335 + rev = "27c7a4796869e155ecec48eb3f8e66694c1708e2"; 2336 + sha256 = "1kdj6b7ph4111spwr55d6a0jjyrr18fbxyl3yi2nb5h75vm2hisj"; 2337 2337 }; 2338 2338 meta.homepage = "https://github.com/glepnir/lspsaga.nvim/"; 2339 2339 }; 2340 2340 2341 2341 lualine-nvim = buildVimPluginFrom2Nix { 2342 2342 pname = "lualine-nvim"; 2343 - version = "2021-03-26"; 2343 + version = "2021-03-29"; 2344 2344 src = fetchFromGitHub { 2345 2345 owner = "hoob3rt"; 2346 2346 repo = "lualine.nvim"; 2347 - rev = "a3037fbf0b101daa0ab2564ee3948d52e470ce03"; 2348 - sha256 = "1r8aryyl8zajj1vpvkwf4lqikgjxpagdiahcvgbclfdmc3dn82c7"; 2347 + rev = "a2721e5adabaa9535768bde7155c6f1dfac59418"; 2348 + sha256 = "0rz4gl0jwl8r8alcwpl7q5836gfhwr4kpgl19xdf6grpa88fp7zw"; 2349 2349 }; 2350 2350 meta.homepage = "https://github.com/hoob3rt/lualine.nvim/"; 2351 2351 }; ··· 2880 2880 2881 2881 nerdtree-git-plugin = buildVimPluginFrom2Nix { 2882 2882 pname = "nerdtree-git-plugin"; 2883 - version = "2020-12-05"; 2883 + version = "2021-03-29"; 2884 2884 src = fetchFromGitHub { 2885 2885 owner = "Xuyuanp"; 2886 2886 repo = "nerdtree-git-plugin"; 2887 - rev = "5fa0e3e1487b17f8a23fc2674ebde5f55ce6a816"; 2888 - sha256 = "0nwb3jla0rsg9vb52n24gjis9k4fwn38iqk13ixxd6w5pnn8ax9j"; 2887 + rev = "bce6e0a6f0000388f0864f909648a45b97cb8333"; 2888 + sha256 = "198ijzy9y0g8lypyvvc4xfz9pdikyfc8ycsds7j4y0s2gla2lsa8"; 2889 2889 }; 2890 2890 meta.homepage = "https://github.com/Xuyuanp/nerdtree-git-plugin/"; 2891 2891 }; ··· 2976 2976 2977 2977 nvcode-color-schemes-vim = buildVimPluginFrom2Nix { 2978 2978 pname = "nvcode-color-schemes-vim"; 2979 - version = "2021-03-26"; 2979 + version = "2021-03-30"; 2980 2980 src = fetchFromGitHub { 2981 2981 owner = "ChristianChiarulli"; 2982 2982 repo = "nvcode-color-schemes.vim"; 2983 - rev = "3aaeb3d070538a7208363cc775258d52a6da5b3f"; 2984 - sha256 = "1gsg1m27rdcbg2qszxwnvjigwxgy5n9rdc6nl9r902rg5kzhb054"; 2983 + rev = "3164eaafe82249f97352bd11b123117306703507"; 2984 + sha256 = "0d1adly3h4hd4hdj11i1w2xl1cn2vgp6vmyqwd8jl906ziydbqhr"; 2985 2985 }; 2986 2986 meta.homepage = "https://github.com/ChristianChiarulli/nvcode-color-schemes.vim/"; 2987 2987 }; ··· 3060 3060 3061 3061 nvim-compe = buildVimPluginFrom2Nix { 3062 3062 pname = "nvim-compe"; 3063 - version = "2021-03-25"; 3063 + version = "2021-03-30"; 3064 3064 src = fetchFromGitHub { 3065 3065 owner = "hrsh7th"; 3066 3066 repo = "nvim-compe"; 3067 - rev = "a39284243014c1414134b99ee2f7ae1fdd070273"; 3068 - sha256 = "0648gz8rc6l79hg3xqkr0049fn762v7rcyvq50ya81ljrs2jl004"; 3067 + rev = "e594493d79757523727034d0a1401cb9dbf88933"; 3068 + sha256 = "042gg8x07irf66lhnvrj1i6p496f2jks165599x7f58d0hmbg8r3"; 3069 3069 }; 3070 3070 meta.homepage = "https://github.com/hrsh7th/nvim-compe/"; 3071 3071 }; ··· 3120 3120 3121 3121 nvim-highlite = buildVimPluginFrom2Nix { 3122 3122 pname = "nvim-highlite"; 3123 - version = "2021-03-08"; 3123 + version = "2021-03-29"; 3124 3124 src = fetchFromGitHub { 3125 3125 owner = "Iron-E"; 3126 3126 repo = "nvim-highlite"; 3127 - rev = "5f189ece5e071f4133ce756bec0ab7da1f6eece6"; 3128 - sha256 = "1s59fr7ppw37c98skrlbbcw583dhrqwjwd2nwjhmhhc884r88d5x"; 3127 + rev = "1f04af27eace7dd790ce620b36ba23aac4c8086e"; 3128 + sha256 = "0hri0rxmzy7kgfj9w729h67qmg373c2rz31racsn1vq7anm33im7"; 3129 3129 }; 3130 3130 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 3131 3131 }; ··· 3156 3156 3157 3157 nvim-jdtls = buildVimPluginFrom2Nix { 3158 3158 pname = "nvim-jdtls"; 3159 - version = "2021-03-27"; 3159 + version = "2021-03-28"; 3160 3160 src = fetchFromGitHub { 3161 3161 owner = "mfussenegger"; 3162 3162 repo = "nvim-jdtls"; 3163 - rev = "7a4049b3d05b0a91e12a9a2c874d7d96475af501"; 3164 - sha256 = "1gp9flk6myq1y67hhavk7689rfib5na6y012dc78rnwmf2v6gc0z"; 3163 + rev = "4ebad2d52b7c648a7f6ceb5e62dde49167d07796"; 3164 + sha256 = "0cnh6x49yy6z3f3h7q0q8l90cl7dchxfdgz7c143nv5qd3qkgnmc"; 3165 3165 }; 3166 3166 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 3167 3167 }; ··· 3180 3180 3181 3181 nvim-lspconfig = buildVimPluginFrom2Nix { 3182 3182 pname = "nvim-lspconfig"; 3183 - version = "2021-03-27"; 3183 + version = "2021-03-28"; 3184 3184 src = fetchFromGitHub { 3185 3185 owner = "neovim"; 3186 3186 repo = "nvim-lspconfig"; 3187 - rev = "97bdebef2c46404cb1441ea62658cdd797265f24"; 3188 - sha256 = "1j7051cj4lim97kfpzhwgp95y63lk336yshbjsr89al9dxhvsaa3"; 3187 + rev = "a59ec2ec448772eae3fbf3854b9787c991bb38c6"; 3188 + sha256 = "1c6dd38sy2apkjx5jrkm09pk9yrczbzf29lhc7clgi89196hvirh"; 3189 3189 }; 3190 3190 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 3191 3191 }; ··· 3288 3288 3289 3289 nvim-treesitter-context = buildVimPluginFrom2Nix { 3290 3290 pname = "nvim-treesitter-context"; 3291 - version = "2021-03-11"; 3291 + version = "2021-03-29"; 3292 3292 src = fetchFromGitHub { 3293 3293 owner = "romgrk"; 3294 3294 repo = "nvim-treesitter-context"; 3295 - rev = "91869ed307084836e45abcf63a4fc0aee66a2d6e"; 3296 - sha256 = "0z8fxqhnmwldhjdx7z6yzlngisc8zjfsr9n76iz9c20brrazsp9k"; 3295 + rev = "8ab639bcf22f902e7d55ee34698ef07b178ac0a3"; 3296 + sha256 = "0wfiij0dsxl8l7v6hvjh73qm51hbipqzy8cmssshssr4f8q2dnzg"; 3297 3297 }; 3298 3298 meta.homepage = "https://github.com/romgrk/nvim-treesitter-context/"; 3299 3299 }; ··· 3324 3324 3325 3325 nvim-ts-rainbow = buildVimPluginFrom2Nix { 3326 3326 pname = "nvim-ts-rainbow"; 3327 - version = "2021-03-25"; 3327 + version = "2021-03-29"; 3328 3328 src = fetchFromGitHub { 3329 3329 owner = "p00f"; 3330 3330 repo = "nvim-ts-rainbow"; 3331 - rev = "8714eade54870231b1df247453a5535a40b0a7b4"; 3332 - sha256 = "192376c6nbx5kgj96wvpmds7ird8hfk4v8ayg1gay18vljyszxj9"; 3331 + rev = "34e859ab43998bc107eae7fa022c52e3a7e43e13"; 3332 + sha256 = "1p76saf4br51sja0ba5nlkggs8nwn949311sk4a7whl3qiiy7h3r"; 3333 3333 }; 3334 3334 meta.homepage = "https://github.com/p00f/nvim-ts-rainbow/"; 3335 3335 }; 3336 3336 3337 3337 nvim-web-devicons = buildVimPluginFrom2Nix { 3338 3338 pname = "nvim-web-devicons"; 3339 - version = "2021-03-23"; 3339 + version = "2021-03-29"; 3340 3340 src = fetchFromGitHub { 3341 3341 owner = "kyazdani42"; 3342 3342 repo = "nvim-web-devicons"; 3343 - rev = "6e32d113d848c76ddbcc824038244657f170a97a"; 3344 - sha256 = "02m8bsq7172sm9vkq3shh87xv4c3jxkgvhwhd3vv0na86kl9sqd6"; 3343 + rev = "664830d2b0de29d91f127f70ef877d3509554bc8"; 3344 + sha256 = "0fs9nkfzwnbaj0l2l7l7gwf4kr8ciq8yzvwa5k816ra12vcvx00x"; 3345 3345 }; 3346 3346 meta.homepage = "https://github.com/kyazdani42/nvim-web-devicons/"; 3347 3347 }; ··· 3468 3468 3469 3469 packer-nvim = buildVimPluginFrom2Nix { 3470 3470 pname = "packer-nvim"; 3471 - version = "2021-03-24"; 3471 + version = "2021-03-29"; 3472 3472 src = fetchFromGitHub { 3473 3473 owner = "wbthomason"; 3474 3474 repo = "packer.nvim"; 3475 - rev = "df33faeef884d55ca8f97479ea55b8d9bd2ffb3f"; 3476 - sha256 = "1pizzzmb551c2pr0srw27ya8a4awfgq14k2dswmk8i8vra54vsj6"; 3475 + rev = "56c193d70a333a6bbf3d14bf8c150c071dea757a"; 3476 + sha256 = "0x2swp6qs47q1y555n2l052in3bd3xf2q3064n5avwnksmqcnwvg"; 3477 3477 }; 3478 3478 meta.homepage = "https://github.com/wbthomason/packer.nvim/"; 3479 3479 }; ··· 3564 3564 3565 3565 plenary-nvim = buildVimPluginFrom2Nix { 3566 3566 pname = "plenary-nvim"; 3567 - version = "2021-03-15"; 3567 + version = "2021-03-28"; 3568 3568 src = fetchFromGitHub { 3569 3569 owner = "nvim-lua"; 3570 3570 repo = "plenary.nvim"; 3571 - rev = "2768ba75b32389a460273fab6f45575237b97bc2"; 3572 - sha256 = "14l47j8j5idm170vk92j72ndmkkn0gqjp709yb1b731nsnz9wcjh"; 3571 + rev = "626e2b150a1353b36d4994a613d35d397618c379"; 3572 + sha256 = "10vws9nxqi0sjf0c9yg9401c9vfkgidracpcjk5n9qf0lgrnf22a"; 3573 3573 }; 3574 3574 meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; 3575 3575 }; ··· 3781 3781 3782 3782 registers-nvim = buildVimPluginFrom2Nix { 3783 3783 pname = "registers-nvim"; 3784 - version = "2021-03-27"; 3784 + version = "2021-03-28"; 3785 3785 src = fetchFromGitHub { 3786 3786 owner = "tversteeg"; 3787 3787 repo = "registers.nvim"; 3788 - rev = "69f49a0185fb9c08454d74f441dfe216d18e6a82"; 3789 - sha256 = "12mgbfysm7cn2qahpmr08451avanvzjzngylf95ss0r2s65whlk4"; 3788 + rev = "037f6f46d6b88eca58952d65c14309967a7e7455"; 3789 + sha256 = "14f4zpk7sfm6kx0wsqr5snfmpyadv819lraymy07wfb41kr2cgya"; 3790 3790 }; 3791 3791 meta.homepage = "https://github.com/tversteeg/registers.nvim/"; 3792 3792 }; ··· 4322 4322 4323 4323 tcomment_vim = buildVimPluginFrom2Nix { 4324 4324 pname = "tcomment_vim"; 4325 - version = "2021-02-03"; 4325 + version = "2021-03-29"; 4326 4326 src = fetchFromGitHub { 4327 4327 owner = "tomtom"; 4328 4328 repo = "tcomment_vim"; 4329 - rev = "2de3885686e7011f7efe0e31c2b6e0c002f9dd1a"; 4330 - sha256 = "009x5bgj6grmwl35s0silkbnylpa5sjr4h0wyp6rl9xlj381vvn5"; 4329 + rev = "7a9c1ea50b27a03c68d7b10267bef2c5aa5d46fb"; 4330 + sha256 = "0vq6r9giqpz2ai2rawrrm2b70k5yl72jzifkcsrlqc5z575s4nla"; 4331 4331 }; 4332 4332 meta.homepage = "https://github.com/tomtom/tcomment_vim/"; 4333 4333 }; ··· 4371 4371 4372 4372 telescope-nvim = buildVimPluginFrom2Nix { 4373 4373 pname = "telescope-nvim"; 4374 - version = "2021-03-21"; 4374 + version = "2021-03-29"; 4375 4375 src = fetchFromGitHub { 4376 4376 owner = "nvim-telescope"; 4377 4377 repo = "telescope.nvim"; 4378 - rev = "a7fa60411efbfddc0674d65346a5311e33f6deb1"; 4379 - sha256 = "0g8rp6qx3n43ipycav5jrhzbd5p3kp9cmcn277yn81y3f76sarij"; 4378 + rev = "2e03f67de9eab023098bd05916bf26556520a467"; 4379 + sha256 = "1j3875fhs49bkpl39xfynhzm1mwlr6kdlnh3rpgyd60y7334fv8r"; 4380 4380 }; 4381 4381 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 4382 4382 }; ··· 4395 4395 4396 4396 termwrapper-nvim = buildVimPluginFrom2Nix { 4397 4397 pname = "termwrapper-nvim"; 4398 - version = "2020-12-23"; 4398 + version = "2021-03-28"; 4399 4399 src = fetchFromGitHub { 4400 4400 owner = "oberblastmeister"; 4401 4401 repo = "termwrapper.nvim"; 4402 - rev = "beb5d2d8a4b6c8fee10cfe5e0dfda158bb0cb33a"; 4403 - sha256 = "05vr38w4qx42hy9injnji7qjkzm7pkysbkr8mlzalwb0i2giy51a"; 4402 + rev = "e00da3cc137f795470818204fc2e712473481c78"; 4403 + sha256 = "0a61n9dpf94rrkq79pjwn73axa1d2zfpsr2ci7wivg3inq7zsqyc"; 4404 4404 }; 4405 4405 meta.homepage = "https://github.com/oberblastmeister/termwrapper.nvim/"; 4406 4406 }; ··· 4996 4996 4997 4997 vim-autoformat = buildVimPluginFrom2Nix { 4998 4998 pname = "vim-autoformat"; 4999 - version = "2021-03-21"; 4999 + version = "2021-03-28"; 5000 5000 src = fetchFromGitHub { 5001 5001 owner = "Chiel92"; 5002 5002 repo = "vim-autoformat"; 5003 - rev = "e9104aeece94652b064a15ae220bd4926a715dbd"; 5004 - sha256 = "1kvnmzs1wbqaiswsjra13f06m8dpdn62h8zqrnr9vv13rm8a2326"; 5003 + rev = "ba9dfa038b67d8df969366dbf8fde6644587662d"; 5004 + sha256 = "1zd0fq6jy2p2qbch52d3838zmf5v5j8v3x4qa2r39fjidy93i099"; 5005 5005 }; 5006 5006 meta.homepage = "https://github.com/Chiel92/vim-autoformat/"; 5007 5007 }; ··· 5212 5212 5213 5213 vim-closer = buildVimPluginFrom2Nix { 5214 5214 pname = "vim-closer"; 5215 - version = "2021-02-24"; 5215 + version = "2021-03-28"; 5216 5216 src = fetchFromGitHub { 5217 5217 owner = "rstacruz"; 5218 5218 repo = "vim-closer"; 5219 - rev = "c34636e104e8731d4a414d6500303442ff7ed94e"; 5220 - sha256 = "07ap62n10dfvw9q71q8zkms8z3jl279a99shr7scyf8q4ngsj024"; 5219 + rev = "26bba80f4d987f12141da522d69aa1fa4aff4436"; 5220 + sha256 = "1pyi5akzvvkdngm577m1c1210r0yypdwsvp1y7ag6gdfnls75xws"; 5221 5221 }; 5222 5222 meta.homepage = "https://github.com/rstacruz/vim-closer/"; 5223 5223 }; ··· 5236 5236 5237 5237 vim-codefmt = buildVimPluginFrom2Nix { 5238 5238 pname = "vim-codefmt"; 5239 - version = "2020-12-18"; 5239 + version = "2021-03-28"; 5240 5240 src = fetchFromGitHub { 5241 5241 owner = "google"; 5242 5242 repo = "vim-codefmt"; 5243 - rev = "0bf16eb74e8243ee477ad97330e451026311fbae"; 5244 - sha256 = "06060173jyz1n977a2jaq706x850bayg2n2jwmidbrsbiyx2krzy"; 5243 + rev = "048baf8361d7ea24bfbaa4427ab4de08c39b0d57"; 5244 + sha256 = "17xnxka4q7fqpl52x5fh2kpqzs7h1ql2lvv6sv7a0apf2qafs0qy"; 5245 5245 }; 5246 5246 meta.homepage = "https://github.com/google/vim-codefmt/"; 5247 5247 }; ··· 5800 5800 5801 5801 vim-flake8 = buildVimPluginFrom2Nix { 5802 5802 pname = "vim-flake8"; 5803 - version = "2020-04-05"; 5803 + version = "2021-03-29"; 5804 5804 src = fetchFromGitHub { 5805 5805 owner = "nvie"; 5806 5806 repo = "vim-flake8"; 5807 - rev = "0c7cf6dc038223b44e3c0a702fe2acf997768e8a"; 5808 - sha256 = "14k1b7gjj1sh40qsf4wxbn0dymmc4jvsrd9pacsr6li273aiy6gq"; 5807 + rev = "719cc31e2d07021906cc6471b7d7b1863d2b6acf"; 5808 + sha256 = "0514gm0r36zclhzjckxnb3v9y8hl85iddjldh0irlagfwa7by773"; 5809 5809 }; 5810 5810 meta.homepage = "https://github.com/nvie/vim-flake8/"; 5811 5811 }; ··· 5884 5884 5885 5885 vim-fugitive = buildVimPluginFrom2Nix { 5886 5886 pname = "vim-fugitive"; 5887 - version = "2021-03-26"; 5887 + version = "2021-03-30"; 5888 5888 src = fetchFromGitHub { 5889 5889 owner = "tpope"; 5890 5890 repo = "vim-fugitive"; 5891 - rev = "eaee845abaf75827cc3c6a3f96d7ff77a3a8beff"; 5892 - sha256 = "1m5yns33a92mhhjbpba76hnkai0d45k7iwqwdlm524c90cmkff55"; 5891 + rev = "a1cb01da5b2c84ebfbe86a02bfb2e7ef9d830d50"; 5892 + sha256 = "0bgccfzwjq3jj5iygi1dp8zmqa8c44zdm0qzblp710qrm3lrvzsk"; 5893 5893 }; 5894 5894 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 5895 5895 }; ··· 6004 6004 6005 6005 vim-go = buildVimPluginFrom2Nix { 6006 6006 pname = "vim-go"; 6007 - version = "2021-03-26"; 6007 + version = "2021-03-28"; 6008 6008 src = fetchFromGitHub { 6009 6009 owner = "fatih"; 6010 6010 repo = "vim-go"; 6011 - rev = "80d0e38fbdc3b5e88133e730fc563414a0403485"; 6012 - sha256 = "070by6ki5zw112ia4gvm3zasr1qliysb7lag6s0x7vh1ywdzg9ii"; 6011 + rev = "bd89f4734555c60f53acaf21731bd43617e6e526"; 6012 + sha256 = "0j5xkf8rk77q11h0cn96gymsa726p1dsvjs718plh8p94p0w42c3"; 6013 6013 }; 6014 6014 meta.homepage = "https://github.com/fatih/vim-go/"; 6015 6015 }; ··· 6522 6522 6523 6523 vim-lastplace = buildVimPluginFrom2Nix { 6524 6524 pname = "vim-lastplace"; 6525 - version = "2021-03-20"; 6525 + version = "2021-03-29"; 6526 6526 src = fetchFromGitHub { 6527 6527 owner = "farmergreg"; 6528 6528 repo = "vim-lastplace"; 6529 - rev = "af91003c4852e94abc508a3c67bb92958c56fcbe"; 6530 - sha256 = "0bjzdli80pmcxp0rfhxkdmwnlq5s61ih7a3h2fybgqrphz87sazm"; 6529 + rev = "8f6c4454eb462776b6ebdc48e3e29a68ddeb726d"; 6530 + sha256 = "04x6y9yp5xlds37bswmrc3xlhhjfln9nzrkippvvhl48b0kfnpj8"; 6531 6531 }; 6532 6532 meta.homepage = "https://github.com/farmergreg/vim-lastplace/"; 6533 6533 }; ··· 6666 6666 6667 6667 vim-lsp = buildVimPluginFrom2Nix { 6668 6668 pname = "vim-lsp"; 6669 - version = "2021-03-21"; 6669 + version = "2021-03-29"; 6670 6670 src = fetchFromGitHub { 6671 6671 owner = "prabirshrestha"; 6672 6672 repo = "vim-lsp"; 6673 - rev = "b8e75ef927b48848f3f21b7033aa68c9c88e9392"; 6674 - sha256 = "0c3b7r7vkxcfgznwylj5psbkvrph5qqsifawrxjdjgx2imc7arva"; 6673 + rev = "4d4a90822461894caa8f39129dd5c16597e005c5"; 6674 + sha256 = "0yixk6m7bn53g7q998g2z460yvf08d93yqq5xj0fc75z58fgmdhn"; 6675 6675 }; 6676 6676 meta.homepage = "https://github.com/prabirshrestha/vim-lsp/"; 6677 6677 }; ··· 6751 6751 6752 6752 vim-matchup = buildVimPluginFrom2Nix { 6753 6753 pname = "vim-matchup"; 6754 - version = "2021-03-17"; 6754 + version = "2021-03-30"; 6755 6755 src = fetchFromGitHub { 6756 6756 owner = "andymass"; 6757 6757 repo = "vim-matchup"; 6758 - rev = "e477123fcc47cc419d04beee6695d8558272ca8c"; 6759 - sha256 = "0j37dx8ka7qb9wpdx5kqnf6rwmrhpcla1838v97f0dfhljxd4w27"; 6758 + rev = "b3bd7fc61a35ef45b83a3577792f75922fced77b"; 6759 + sha256 = "0x9iq1d76ivdw1jfj6d04gkbxqqcagyhhq89ld2wgwcgc68ipixw"; 6760 6760 }; 6761 6761 meta.homepage = "https://github.com/andymass/vim-matchup/"; 6762 6762 }; ··· 7399 7399 7400 7400 vim-qf = buildVimPluginFrom2Nix { 7401 7401 pname = "vim-qf"; 7402 - version = "2021-02-01"; 7402 + version = "2021-03-29"; 7403 7403 src = fetchFromGitHub { 7404 7404 owner = "romainl"; 7405 7405 repo = "vim-qf"; 7406 - rev = "0da85ff4270c2be10e24729dd42fb749ad1b69b7"; 7407 - sha256 = "0f8qnxy18qskbr3m8hn4vqv7bcvr2b0xqi64bxx078an5x8lbgx2"; 7406 + rev = "127257057c4befb8c1026a7ba7e07713af1fb5c8"; 7407 + sha256 = "1ai915kfxq4m8ba304qpcc2qb5rcj2vsrfcdh3blb1slw3a90hiq"; 7408 7408 }; 7409 7409 meta.homepage = "https://github.com/romainl/vim-qf/"; 7410 7410 }; ··· 7471 7471 7472 7472 vim-rails = buildVimPluginFrom2Nix { 7473 7473 pname = "vim-rails"; 7474 - version = "2021-03-11"; 7474 + version = "2021-03-29"; 7475 7475 src = fetchFromGitHub { 7476 7476 owner = "tpope"; 7477 7477 repo = "vim-rails"; 7478 - rev = "ee53e8303be8a28234ea97109b4e1ce716f0f2ad"; 7479 - sha256 = "0bjdhkw6ii3z310kjm06g7m03as001cgkzw082mb63kix7hh06x8"; 7478 + rev = "9c3c831a089c7b4dcc4ebd8b8c73f366f754c976"; 7479 + sha256 = "15m7hhqadvpf3ryig5vifp8m0md2mg9apx71z8xrpc7hgwsvy1bi"; 7480 7480 }; 7481 7481 meta.homepage = "https://github.com/tpope/vim-rails/"; 7482 7482 }; ··· 8312 8312 8313 8313 vim-vsnip = buildVimPluginFrom2Nix { 8314 8314 pname = "vim-vsnip"; 8315 - version = "2021-03-24"; 8315 + version = "2021-03-29"; 8316 8316 src = fetchFromGitHub { 8317 8317 owner = "hrsh7th"; 8318 8318 repo = "vim-vsnip"; 8319 - rev = "4eb5f669c11c497fa075912eb03294b11fca2c07"; 8320 - sha256 = "1imrkir6ir2fl63wh91yh5jp64kxd3zh1m7p05dcfbyd7rc2l9c1"; 8319 + rev = "ac78ab499918fbdb9d5121d9832bddbd1c258123"; 8320 + sha256 = "155jj7nrh9a4bwhambdvggz46kddqhj92bl4xhdv2iyyrbfz5ygy"; 8321 8321 }; 8322 8322 meta.homepage = "https://github.com/hrsh7th/vim-vsnip/"; 8323 8323 }; ··· 8601 8601 8602 8602 vimtex = buildVimPluginFrom2Nix { 8603 8603 pname = "vimtex"; 8604 - version = "2021-03-26"; 8604 + version = "2021-03-29"; 8605 8605 src = fetchFromGitHub { 8606 8606 owner = "lervag"; 8607 8607 repo = "vimtex"; 8608 - rev = "41667e58248595aa50109f856f47cb38ab93225a"; 8609 - sha256 = "1zwsflvxljmx7mndpq5ph19n5kk5cild4grg7dvan9jd2qlf6cvi"; 8608 + rev = "9e9d58afe147e457c360bdb2fb21b0bcd3d83230"; 8609 + sha256 = "05djvd5xphfz9xg24kfm8clkgvslb0cmj5iljm4bv20v4bvnkg43"; 8610 8610 }; 8611 8611 meta.homepage = "https://github.com/lervag/vimtex/"; 8612 8612 }; ··· 8831 8831 8832 8832 zephyr-nvim = buildVimPluginFrom2Nix { 8833 8833 pname = "zephyr-nvim"; 8834 - version = "2021-03-27"; 8834 + version = "2021-03-28"; 8835 8835 src = fetchFromGitHub { 8836 8836 owner = "glepnir"; 8837 8837 repo = "zephyr-nvim"; 8838 - rev = "d0ece1ef669d5799ab4184b05deca74943270232"; 8839 - sha256 = "0p959ih2xkcskk83fn92w9g0xdqs93s5lq5sq7hw6frc6plk3fh1"; 8838 + rev = "f17239ec33d62ed379bb78912070f3cfe3e29062"; 8839 + sha256 = "0ai18xsnaiq26yls60wq6lmkdzscihkdcg9naakclrp0af992kxs"; 8840 8840 }; 8841 8841 meta.homepage = "https://github.com/glepnir/zephyr-nvim/"; 8842 8842 };
+4
pkgs/misc/vim-plugins/overrides.nix
··· 340 340 dependencies = [ self.fzfWrapper ]; 341 341 }); 342 342 343 + onehalf = super.onehalf.overrideAttrs (old: { 344 + configurePhase = "cd vim"; 345 + }); 346 + 343 347 skim-vim = super.skim-vim.overrideAttrs (old: { 344 348 dependencies = [ self.skim ]; 345 349 });
+2 -2
pkgs/misc/vscode-extensions/default.nix
··· 465 465 mktplcRef = { 466 466 name = "todo-tree"; 467 467 publisher = "Gruntfuggly"; 468 - version = "0.0.208"; 469 - sha256 = "1yjz7i3f2f9a3i797vwa9vnxsh9lyxqr4k0ixx8v55h628kvafr9"; 468 + version = "0.0.209"; 469 + sha256 = "1i0wq8zwax4kmy69hh0hclx9a47ycm3qp3gspjq8xpmcq3nmbfaq"; 470 470 }; 471 471 meta = with lib; { 472 472 license = licenses.mit;
-23
pkgs/os-specific/linux/firmware/rtlwifi_new-firmware/default.nix
··· 1 - { stdenv, lib, linuxPackages }: 2 - 3 - with lib; 4 - 5 - stdenv.mkDerivation rec { 6 - name = "rtlwifi_new-firmware-${linuxPackages.rtlwifi_new.version}"; 7 - inherit (linuxPackages.rtlwifi_new) src; 8 - 9 - dontBuild = true; 10 - 11 - installPhase = '' 12 - mkdir -p "$out/lib/firmware" 13 - cp -rf firmware/rtlwifi/ "$out/lib/firmware" 14 - ''; 15 - 16 - meta = { 17 - description = "Firmware for the newest Realtek rtlwifi codes"; 18 - inherit (src.meta) homepage; 19 - license = licenses.unfreeRedistributableFirmware; 20 - platforms = with platforms; linux; 21 - maintainers = with maintainers; [ tvorog ]; 22 - }; 23 - }
+25
pkgs/os-specific/linux/firmware/rtw88-firmware/default.nix
··· 1 + { stdenvNoCC, lib, linuxPackages }: 2 + 3 + stdenvNoCC.mkDerivation { 4 + pname = "rtw88-firmware"; 5 + inherit (linuxPackages.rtw88) version src; 6 + 7 + dontBuild = true; 8 + 9 + installPhase = '' 10 + runHook preInstall 11 + 12 + mkdir -p $out/lib/firmware/rtw88 13 + cp *.bin $out/lib/firmware/rtw88 14 + 15 + runHook postInstall 16 + ''; 17 + 18 + meta = with lib; { 19 + description = "Firmware for the newest Realtek rtlwifi codes"; 20 + homepage = "https://github.com/lwfinger/rtw88"; 21 + license = licenses.unfreeRedistributableFirmware; 22 + maintainers = with maintainers; [ tvorog ]; 23 + platforms = platforms.linux; 24 + }; 25 + }
-42
pkgs/os-specific/linux/rtlwifi_new/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, kernel }: 2 - 3 - with lib; 4 - 5 - let modDestDir = "$out/lib/modules/${kernel.modDirVersion}/kernel/drivers/net/wireless/realtek/rtlwifi"; 6 - 7 - in stdenv.mkDerivation rec { 8 - pname = "rtlwifi_new"; 9 - version = "2019-08-21"; 10 - # When updating see https://github.com/lwfinger/rtl8723be/issues/17#issuecomment-657326751 11 - 12 - src = fetchFromGitHub { 13 - owner = "rtlwifi-linux"; 14 - repo = "rtlwifi_new"; 15 - # commit does not exist on any branch on the target repository 16 - rev = "a108e3de87c2ed30b71c3c4595b79ab7a2f9e348"; 17 - sha256 = "15kjs9i9vvmn1cdzccd5cljf3m45r4ssm65klkj2fdkf3kljj38k"; 18 - }; 19 - 20 - hardeningDisable = [ "pic" "format" ]; 21 - 22 - nativeBuildInputs = kernel.moduleBuildDependencies; 23 - 24 - makeFlags = [ "KSRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" ]; 25 - 26 - enableParallelBuilding = true; 27 - 28 - installPhase = '' 29 - mkdir -p ${modDestDir} 30 - find . -name '*.ko' -exec cp --parents {} ${modDestDir} \; 31 - find ${modDestDir} -name '*.ko' -exec xz -f {} \; 32 - ''; 33 - 34 - meta = { 35 - description = "The newest Realtek rtlwifi codes"; 36 - inherit (src.meta) homepage; 37 - license = lib.licenses.gpl2; 38 - platforms = with platforms; linux; 39 - maintainers = with maintainers; [ tvorog ]; 40 - priority = -1; 41 - }; 42 - }
+40
pkgs/os-specific/linux/rtw88/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, kernel }: 2 + 3 + let 4 + modDestDir = "$out/lib/modules/${kernel.modDirVersion}/kernel/drivers/net/wireless/realtek/rtw88"; 5 + in 6 + stdenv.mkDerivation { 7 + pname = "rtw88"; 8 + version = "unstable-2021-03-21"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "lwfinger"; 12 + repo = "rtw88"; 13 + rev = "fb2d8d2be9b33328eaf391926c502b34f6367b01"; 14 + hash = "sha256-NjB0eooI6j6IDtD572ZkairPdJwc/x+pxITLb7ujoS8="; 15 + }; 16 + 17 + makeFlags = [ "KSRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" ]; 18 + 19 + enableParallelBuilding = true; 20 + 21 + installPhase = '' 22 + runHook preInstall 23 + 24 + mkdir -p ${modDestDir} 25 + find . -name '*.ko' -exec cp --parents {} ${modDestDir} \; 26 + find ${modDestDir} -name '*.ko' -exec xz -f {} \; 27 + 28 + runHook postInstall 29 + ''; 30 + 31 + meta = with lib; { 32 + description = "The newest Realtek rtlwifi codes"; 33 + homepage = "https://github.com/lwfinger/rtw88"; 34 + license = with licenses; [ bsd3 gpl2Only ]; 35 + maintainers = with maintainers; [ tvorog ]; 36 + platforms = platforms.linux; 37 + broken = kernel.kernelOlder "4.14"; 38 + priority = -1; 39 + }; 40 + }
+81 -81
pkgs/tools/admin/pulumi/data.nix
··· 1 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 2 { }: 3 3 { 4 - version = "2.22.0"; 4 + version = "2.23.2"; 5 5 pulumiPkgs = { 6 6 x86_64-linux = [ 7 7 { 8 - url = "https://get.pulumi.com/releases/sdk/pulumi-v2.22.0-linux-x64.tar.gz"; 9 - sha256 = "14czj8xc4l014bc1bgpf1rlw4qkf4q6nrw9f0b1xp5zrhvjiky1k"; 8 + url = "https://get.pulumi.com/releases/sdk/pulumi-v2.23.2-linux-x64.tar.gz"; 9 + sha256 = "0bg90kj8lb1bw3vx0672rbzmc5wylx90cad3h93qlwxsfvijmk7x"; 10 10 } 11 11 { 12 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v1.8.1-linux-amd64.tar.gz"; 13 - sha256 = "0yzz24fhkd1ij3gvsgi48czpm30lwbzdswsfir1mdq0a6wwhll4w"; 12 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v1.9.1-linux-amd64.tar.gz"; 13 + sha256 = "084l6si66sxy55i4y14rn287v69vli17n283s718v00zrmgdah35"; 14 14 } 15 15 { 16 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v3.32.0-linux-amd64.tar.gz"; 17 - sha256 = "1pnh43asg2f8gs85i8y666f626q4vpsqj96ni10kpfalkby6b8fd"; 16 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v3.34.2-linux-amd64.tar.gz"; 17 + sha256 = "1xpil1a7gwcmjb3my9s37gf45i17l5mnxh0bkfbfwiw5znv7cjqa"; 18 18 } 19 19 { 20 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v2.13.1-linux-amd64.tar.gz"; 21 - sha256 = "12f6knxnpkdh00w0s9a9fqk934n5ry7k473sk42gz024j253pq8g"; 20 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v2.14.2-linux-amd64.tar.gz"; 21 + sha256 = "00ibqxb1qzwi93dsq56av0vxq80lx2rr8wll4q6d8wlph215hlqs"; 22 22 } 23 23 { 24 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v2.8.1-linux-amd64.tar.gz"; 25 - sha256 = "1g1rbvi3yizxs007hp0zgfysbam20gfg4xkc69gpwishy0j0m14q"; 24 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v2.9.1-linux-amd64.tar.gz"; 25 + sha256 = "04sk6km29ssqkv0xw26vq3iik2kfzc3dnzacn324m7fddv3p9wx9"; 26 26 } 27 27 { 28 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v2.16.1-linux-amd64.tar.gz"; 29 - sha256 = "1v4zf3z6vcz074yay97kczh5dv9ii5mmkas57j6jqgpfm1lqymil"; 28 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v2.17.1-linux-amd64.tar.gz"; 29 + sha256 = "0b3bz952wz7fsbk51j0mlfsyyg9ymc9wnq8kgm7dvs1p5zgzv4ni"; 30 30 } 31 31 { 32 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v3.5.1-linux-amd64.tar.gz"; 33 - sha256 = "02angr4bimgir42n0jdf69005fzkikknfvyxgdh8kpr555lbb17a"; 32 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v3.6.1-linux-amd64.tar.gz"; 33 + sha256 = "114r26ncf3rlw6h0wsmyxhpcxb5hy20fk8kav858hvqacby5w6sq"; 34 34 } 35 35 { 36 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v2.8.1-linux-amd64.tar.gz"; 37 - sha256 = "13987spi37vb7b6cd12axyvc2r2lvy1if1lwssxxj7jl95bss1d9"; 36 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v2.9.1-linux-amd64.tar.gz"; 37 + sha256 = "178l4h7wj9pn1283zajaqm7fwcfwzpzq7swrgr8q880qsa611gjs"; 38 38 } 39 39 { 40 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v4.12.0-linux-amd64.tar.gz"; 41 - sha256 = "0srdmga79r2jh3mv4vcb0gnhmkky666v902vd20bbr1r2fmi8wji"; 40 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v4.17.0-linux-amd64.tar.gz"; 41 + sha256 = "0xzix9mn3n3n4y7l6xl0bn2xq338436ykb34j2fi20wxg5wb99lf"; 42 42 } 43 43 { 44 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v3.2.0-linux-amd64.tar.gz"; 45 - sha256 = "07qg1vmbmjc6shz2nw37vcrccd7m6ghb0h9zjp0gvzks1b2fz32i"; 44 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v3.3.1-linux-amd64.tar.gz"; 45 + sha256 = "1pg1q70gkp300swl5hnjdx7s9yjg0d88r280ylga73syncms4s3w"; 46 46 } 47 47 { 48 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v3.7.0-linux-amd64.tar.gz"; 49 - sha256 = "19d83ydqh6fi7rl3j1gkmrnnbkijw4pj4rvkk1w3s842jsiqxlr9"; 48 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v3.8.1-linux-amd64.tar.gz"; 49 + sha256 = "1xhrj950lk6qdazg4flymn3dmkbivc2rd71k8sdy9zfanyxnq8vv"; 50 50 } 51 51 { 52 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v0.6.2-linux-amd64.tar.gz"; 53 - sha256 = "01kyqw5x2jv0il8w4mg0man2dzikghdz4kirk3nabkm6fwncngk1"; 52 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v0.7.1-linux-amd64.tar.gz"; 53 + sha256 = "0n2p14iam44icms4c8qrjfy1z7p4m6igxckvqxr0gphi8ngk4ggh"; 54 54 } 55 55 { 56 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v2.8.2-linux-amd64.tar.gz"; 57 - sha256 = "01jcilqw1z7klk8xa0z3c5rh6fi5c2xxr6sqw9qmmwgh1ncpdmhi"; 56 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v2.8.3-linux-amd64.tar.gz"; 57 + sha256 = "0l9r0gqhhjbkv4vn4cxm2s9zf93005w8vrb103w101h1gc5gh93l"; 58 58 } 59 59 { 60 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v2.4.1-linux-amd64.tar.gz"; 61 - sha256 = "1ayjs4s6zv5lsr74y1zjicngqj111hp8zb5gmlr4x2qs5cxnz02n"; 60 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v2.5.1-linux-amd64.tar.gz"; 61 + sha256 = "0clck5cra6bplfxd0nb6vkji50gg4ah4yfvc7202hi3w2b9hfjjg"; 62 62 } 63 63 { 64 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v2.4.1-linux-amd64.tar.gz"; 65 - sha256 = "11l6xsn42dr2mx8ayimdc19gn2vsiwq3h1qd716y9snnzkrsiyw7"; 64 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v2.5.1-linux-amd64.tar.gz"; 65 + sha256 = "1cd2bm030fa9spv7bx817id419lz1c54i8h84ifinkx88ig7ngyx"; 66 66 } 67 67 { 68 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v2.15.0-linux-amd64.tar.gz"; 69 - sha256 = "1xraydxazx620y4m54qwjacmf5vs6x5ci9jymj52vrpd5c4lpw5p"; 68 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v2.17.1-linux-amd64.tar.gz"; 69 + sha256 = "1q9sx2lszmkcgphp3vwx0lvs5vc67sk98rn8s6ywhz0p426wakmr"; 70 70 } 71 71 { 72 72 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-packet-v3.2.2-linux-amd64.tar.gz"; 73 73 sha256 = "0glbjhgrb2hiyhd6kwmy7v384j8zw641pw9737g1fczv3x16a3s3"; 74 74 } 75 75 { 76 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v2.7.2-linux-amd64.tar.gz"; 77 - sha256 = "1lx4yk7wcnbn419zqjyp2aw81q5bg5dqjy74ghbc74qhbbxjz6q0"; 76 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v2.8.1-linux-amd64.tar.gz"; 77 + sha256 = "05rcvp2gkx14gy46a0vx9ch3xysnn0wlgsn80rfav35v932x9f3g"; 78 78 } 79 79 { 80 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v3.0.3-linux-amd64.tar.gz"; 81 - sha256 = "0par5cpp787iwxy1dbv9kw946bnvgd4qnzrh0hc4y6468w9k3kbm"; 80 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v3.1.1-linux-amd64.tar.gz"; 81 + sha256 = "1zpwlvdgjvhnhlzyppqg76csma8kan33amxa1svlhcai8b168878"; 82 82 } 83 83 { 84 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v3.4.1-linux-amd64.tar.gz"; 85 - sha256 = "0w8l0py337msdh0w9czbydznchl1h22pkzp2yrj6lx1p9vl4qbmq"; 84 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v3.5.1-linux-amd64.tar.gz"; 85 + sha256 = "16b1449vb6inlyjpb1iyr5j5mwg1g2d6bcd5g2kmxcsw4yhc7ai7"; 86 86 } 87 87 { 88 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v2.12.2-linux-amd64.tar.gz"; 89 - sha256 = "1clhdj8jlmhfykirdfp8lkg9grhyyamjimxcy2mxshm6mwlaajcm"; 88 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v2.13.1-linux-amd64.tar.gz"; 89 + sha256 = "1z6v5vz0p9g3hrrgrchx2wnbparkbf5b8vn9pwnw69nkplr1qzff"; 90 90 } 91 91 ]; 92 92 x86_64-darwin = [ 93 93 { 94 - url = "https://get.pulumi.com/releases/sdk/pulumi-v2.22.0-darwin-x64.tar.gz"; 95 - sha256 = "18qp2da7hnycbzhzy91kypybr08x969zszzm3lqrrawqapgx4ig5"; 94 + url = "https://get.pulumi.com/releases/sdk/pulumi-v2.23.2-darwin-x64.tar.gz"; 95 + sha256 = "19g3bsmrjwfbnmw20zh0cqnhz83jl4ikfwg4rhdxsvazdmbym905"; 96 96 } 97 97 { 98 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v1.8.1-darwin-amd64.tar.gz"; 99 - sha256 = "00d66lmsd9ph7dpyrsdini8phlc197ssinfnkl3cj3j5v6hnzah1"; 98 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v1.9.1-darwin-amd64.tar.gz"; 99 + sha256 = "1jkw0pvwz25dvxva7dipdxf4lppgr2m8ynbjl32fijzqs61y690m"; 100 100 } 101 101 { 102 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v3.32.0-darwin-amd64.tar.gz"; 103 - sha256 = "166ca370fwnfq73pj3q6qw1gm2rf3g71p46nwqawi0cf3cxvf6ys"; 102 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v3.34.2-darwin-amd64.tar.gz"; 103 + sha256 = "0chjps0m203xb1ybky77lg1miv7d4cp1z8xxqhymrylfqaz4xj8q"; 104 104 } 105 105 { 106 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v2.13.1-darwin-amd64.tar.gz"; 107 - sha256 = "0scx1vwpfan98cx6n2k06bph9xlpc41viirs34lf4mqdm2c2m3k5"; 106 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v2.14.2-darwin-amd64.tar.gz"; 107 + sha256 = "05ggw10z0pp45yqq8bl32l3xjxvgwbs58czpw74whydqbd3qy8av"; 108 108 } 109 109 { 110 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v2.8.1-darwin-amd64.tar.gz"; 111 - sha256 = "1nzrqm3rbqdl4q12ln87p78hfpnmbliavavhbqn3jr2kchfgy9j1"; 110 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v2.9.1-darwin-amd64.tar.gz"; 111 + sha256 = "022458yxscfg56s2nqdr95wp2ffm7sni4kaksj87i6c5ddc9f1gx"; 112 112 } 113 113 { 114 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v2.16.1-darwin-amd64.tar.gz"; 115 - sha256 = "0y3qadiyqa5krknkabfy60gjd7kmqjx8w72w8jrv5821bmxs3kzm"; 114 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v2.17.1-darwin-amd64.tar.gz"; 115 + sha256 = "09nd5nfvjqgpbjs82bm5ym5wdg37mg863wvdp8s3fd8id4gdqb24"; 116 116 } 117 117 { 118 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v3.5.1-darwin-amd64.tar.gz"; 119 - sha256 = "1ksv79cglb6fifx4mrjk32lh25hq2n8yigphsk54lppvhvp9ynyp"; 118 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v3.6.1-darwin-amd64.tar.gz"; 119 + sha256 = "1f3mfgh24h2hwmshs4qpplgrxplxl7iab29xp4c7p1g573na3b7a"; 120 120 } 121 121 { 122 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v2.8.1-darwin-amd64.tar.gz"; 123 - sha256 = "1i1kf0mj8pagcm1q2sjlfqc42qv9pgchq8a8qxs1xllxcv2nqp96"; 122 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v2.9.1-darwin-amd64.tar.gz"; 123 + sha256 = "10vp75fc41yk9lg5x7wyhs4mn2f4krfnw4jn5xys7dd475blm6rh"; 124 124 } 125 125 { 126 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v4.12.0-darwin-amd64.tar.gz"; 127 - sha256 = "1m02w4szp3dq9klwvi26fdxxdr3pqw77afcxarfxc92dhdq8rp2g"; 126 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v4.17.0-darwin-amd64.tar.gz"; 127 + sha256 = "0cl7im10is9wvw3ygis9xy3f77npijsf1dsb49ww057kqhgv1v3i"; 128 128 } 129 129 { 130 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v3.2.0-darwin-amd64.tar.gz"; 131 - sha256 = "128j5vrvgqzvn2cfdvnw89328fydahaj3i4pmbpk2swgqmn0kac8"; 130 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v3.3.1-darwin-amd64.tar.gz"; 131 + sha256 = "1b7azajh9kzq8akyf5pf16hh3had8iwph6cw06b7mv1wqyd01k6z"; 132 132 } 133 133 { 134 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v3.7.0-darwin-amd64.tar.gz"; 135 - sha256 = "1f9scgzzlcq6inl1z9b0xvcd9prr6w8acr20mnki5j1fn0m67sa5"; 134 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v3.8.1-darwin-amd64.tar.gz"; 135 + sha256 = "14gqwz5nalbv97vl9apwda0xxl7cgkp5mixrc10xvx6a94w5758p"; 136 136 } 137 137 { 138 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v0.6.2-darwin-amd64.tar.gz"; 139 - sha256 = "099paln0sh7kp8393k264zz0bvrv2p7k7rywgj9ym9dncqq9za2r"; 138 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v0.7.1-darwin-amd64.tar.gz"; 139 + sha256 = "0i0h1iz999pbz23gbs75bj3lxfg9a6044g4bwdwf3agxf3k9pji3"; 140 140 } 141 141 { 142 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v2.8.2-darwin-amd64.tar.gz"; 143 - sha256 = "0afy6aphq14i7ww3a35ybzhwqwlxaybbxbhsa6w63hv3s4fw7wpa"; 142 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v2.8.3-darwin-amd64.tar.gz"; 143 + sha256 = "1nwwqq1nn1zr6mia2wd82lzqsa8l3rr50hl1mf6l6ffyxz1q1lzj"; 144 144 } 145 145 { 146 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v2.4.1-darwin-amd64.tar.gz"; 147 - sha256 = "1nngzlvx06kphxayqkyn0xrh22dv2pcpb9b0gvlicancbn01ql5w"; 146 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v2.5.1-darwin-amd64.tar.gz"; 147 + sha256 = "0zkd3rm6z8bc7pcbwl0bbbn0zb3jrl69b84g62ma9vzskccrxxpr"; 148 148 } 149 149 { 150 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v2.4.1-darwin-amd64.tar.gz"; 151 - sha256 = "041ml1yx7wk4whq6gfsb1zc49kkdws06dqpr5i910ln5avnhslvq"; 150 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v2.5.1-darwin-amd64.tar.gz"; 151 + sha256 = "0v4qqp1x8xi0fqiczmmh2qbf3azbgf09cphia5w8r2kkrn4i0jxn"; 152 152 } 153 153 { 154 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v2.15.0-darwin-amd64.tar.gz"; 155 - sha256 = "13sy891ff4y53yw7h0p3cynycrxd8hq5pfmdnl7332ll7kls37p3"; 154 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v2.17.1-darwin-amd64.tar.gz"; 155 + sha256 = "1788ayj5zwlmvhd1qp6rzrcbman5i0hy1hw2fmgcrf66v5qc1f18"; 156 156 } 157 157 { 158 158 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-packet-v3.2.2-darwin-amd64.tar.gz"; 159 159 sha256 = "0621njipng32x43lw8n49mapq10lnvibg8vlvgciqsfvrbpz1yp5"; 160 160 } 161 161 { 162 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v2.7.2-darwin-amd64.tar.gz"; 163 - sha256 = "0c83zdnx12g2dmvi98v7w3739x91d9lhqx5j6cvq8c24y7lxga78"; 162 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v2.8.1-darwin-amd64.tar.gz"; 163 + sha256 = "1r5rhn1yjjr0rw7qm2n8dqyqk1r1hkgvdmdq2x9smnvd2mwwjfah"; 164 164 } 165 165 { 166 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v3.0.3-darwin-amd64.tar.gz"; 167 - sha256 = "1b4y5apgkd2k9yfx3f7p0vs5l0gqhgccbszgnzqq465i0970b6r7"; 166 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v3.1.1-darwin-amd64.tar.gz"; 167 + sha256 = "1j30gkz1m9ap8pd2r3lb3nl82bq5bq3h7y6jq2c0dmv3ksnp197f"; 168 168 } 169 169 { 170 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v3.4.1-darwin-amd64.tar.gz"; 171 - sha256 = "1q00jmjprhnxgvjc4a50jdgd90zj71ymfhkl1w1bkqlrva9spiws"; 170 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v3.5.1-darwin-amd64.tar.gz"; 171 + sha256 = "1s5kbqri9k7cpajkgnl2s5l0nznzridj5iscwd9n1nj4bsr44lap"; 172 172 } 173 173 { 174 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v2.12.2-darwin-amd64.tar.gz"; 175 - sha256 = "0wpqk93ns9z3yvpas9aix345jm38hffssnz1dn5cxl6y0d5scjd8"; 174 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v2.13.1-darwin-amd64.tar.gz"; 175 + sha256 = "133xspppmydjri5ba2yxc331ljzd8wj88q3hzmgvp0m50il1ks71"; 176 176 } 177 177 ]; 178 178 };
+20 -20
pkgs/tools/admin/pulumi/update.sh
··· 3 3 4 4 # Version of Pulumi from 5 5 # https://www.pulumi.com/docs/get-started/install/versions/ 6 - VERSION="2.22.0" 6 + VERSION="2.23.2" 7 7 8 8 # Grab latest release ${VERSION} from 9 9 # https://github.com/pulumi/pulumi-${NAME}/releases 10 10 plugins=( 11 - "auth0=1.8.1" 12 - "aws=3.32.0" 13 - "cloudflare=2.13.1" 14 - "consul=2.8.1" 15 - "datadog=2.16.1" 16 - "digitalocean=3.5.1" 17 - "docker=2.8.1" 18 - "gcp=4.12.0" 19 - "github=3.2.0" 20 - "gitlab=3.7.0" 21 - "hcloud=0.6.2" 22 - "kubernetes=2.8.2" 23 - "mailgun=2.4.1" 24 - "mysql=2.4.1" 25 - "openstack=2.15.0" 11 + "auth0=1.9.1" 12 + "aws=3.34.2" 13 + "cloudflare=2.14.2" 14 + "consul=2.9.1" 15 + "datadog=2.17.1" 16 + "digitalocean=3.6.1" 17 + "docker=2.9.1" 18 + "gcp=4.17.0" 19 + "github=3.3.1" 20 + "gitlab=3.8.1" 21 + "hcloud=0.7.1" 22 + "kubernetes=2.8.3" 23 + "mailgun=2.5.1" 24 + "mysql=2.5.1" 25 + "openstack=2.17.1" 26 26 "packet=3.2.2" 27 - "postgresql=2.7.2" 28 - "random=3.0.3" 29 - "vault=3.4.1" 30 - "vsphere=2.12.2" 27 + "postgresql=2.8.1" 28 + "random=3.1.1" 29 + "vault=3.5.1" 30 + "vsphere=2.13.1" 31 31 ) 32 32 33 33 function genMainSrc() {
pkgs/tools/backup/borg/default.nix pkgs/tools/backup/borgbackup/default.nix
+3 -3
pkgs/tools/misc/grex/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "grex"; 11 - version = "1.1.0"; 11 + version = "1.2.0"; 12 12 13 - cargoSha256 = "0kf2n2j7kfrfzid1h2gd0qf53fah0hpyrrlh2k5vrhd0panv3bwc"; 13 + cargoSha256 = "sha256-EZnuGoysTZMpk2pndOzfXyRnN696RpKze27utQWNFTY="; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "pemistahl"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "1viph7ki6f2akc5mpbgycacndmxnv088ybfji2bfdbi5jnpyavvs"; 19 + sha256 = "sha256-3M6wQB7+1MKPcxSvjDTNs33TrFjCEeFlbh1akwJHLLU="; 20 20 }; 21 21 22 22 buildInputs = lib.optionals stdenv.isDarwin [ Security ];
+11 -2
pkgs/tools/misc/logstash/6.x.nix
··· 3 3 , lib, stdenv 4 4 , fetchurl 5 5 , makeWrapper 6 + , nixosTests 6 7 , jre 7 8 }: 8 9 9 10 with lib; 10 11 11 - stdenv.mkDerivation rec { 12 + let this = stdenv.mkDerivation rec { 12 13 version = elk6Version; 13 14 name = "logstash-${optionalString (!enableUnfree) "oss-"}${version}"; 14 15 ··· 52 53 platforms = platforms.unix; 53 54 maintainers = with maintainers; [ wjlroe offline basvandijk ]; 54 55 }; 55 - } 56 + passthru.tests = 57 + optionalAttrs (!enableUnfree) ( 58 + assert this.drvPath == nixosTests.elk.ELK-6.elkPackages.logstash.drvPath; 59 + { 60 + elk = nixosTests.elk.ELK-6; 61 + } 62 + ); 63 + }; 64 + in this
+11 -2
pkgs/tools/misc/logstash/7.x.nix
··· 3 3 , lib, stdenv 4 4 , fetchurl 5 5 , makeWrapper 6 + , nixosTests 6 7 , jre 7 8 }: 8 9 9 10 with lib; 10 11 11 - stdenv.mkDerivation rec { 12 + let this = stdenv.mkDerivation rec { 12 13 version = elk7Version; 13 14 name = "logstash-${optionalString (!enableUnfree) "oss-"}${version}"; 14 15 ··· 52 53 platforms = platforms.unix; 53 54 maintainers = with maintainers; [ wjlroe offline basvandijk ]; 54 55 }; 55 - } 56 + passthru.tests = 57 + optionalAttrs (!enableUnfree) ( 58 + assert this.drvPath == nixosTests.elk.ELK-7.elkPackages.logstash.drvPath; 59 + { 60 + elk = nixosTests.elk.ELK-7; 61 + } 62 + ); 63 + }; 64 + in this
+2 -2
pkgs/tools/networking/dnsperf/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "dnsperf"; 7 - version = "2.5.0"; 7 + version = "2.5.2"; 8 8 9 9 # The same as the initial commit of the new GitHub repo (only readme changed). 10 10 src = fetchFromGitHub { 11 11 owner = "DNS-OARC"; 12 12 repo = "dnsperf"; 13 13 rev = "v${version}"; 14 - sha256 = "0wcjs512in9w36hbn4mffca02cn5df3s1x7zaj02qv8na5nqq11m"; 14 + sha256 = "0dzi28z7hnyxbibwdsalvd93czf4d5pgmvrbn6hlh52znsn40gbb"; 15 15 }; 16 16 17 17 outputs = [ "out" "man" "doc" ];
+2 -2
pkgs/tools/text/mark/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "mark"; 5 - version = "5.4"; 5 + version = "5.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "kovetskiy"; 9 9 repo = "mark"; 10 10 rev = version; 11 - sha256 = "sha256-IDW8dd2Bgr936hUKkfkoQ/kBnN+0uacJ1uX4Xhd27Vc="; 11 + sha256 = "sha256-+mDUT9zkawa6Ad1uptc34RGK3bhU6WowwUZdwKbOnj4="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-nneQ0B7PyHAqiOzrmWqSssZM8B3np4VFUJLBqUvkjZE=";
+3
pkgs/top-level/aliases.nix
··· 602 602 rocm-runtime-ext = throw "rocm-runtime-ext has been removed, since its functionality was added to rocm-runtime"; #added 2020-08-21 603 603 rssglx = rss-glx; #added 2015-03-25 604 604 rssh = throw "rssh has been removed from nixpkgs: no upstream releases since 2012, several known CVEs"; # added 2020-08-25 605 + # The alias for linuxPackages*.rtlwifi_new is defined in ./all-packages.nix, 606 + # due to it being inside the linuxPackagesFor function. 607 + rtlwifi_new-firmware = rtw88-firmware; # added 2021-03-14 605 608 recordmydesktop = throw "recordmydesktop has been removed from nixpkgs, as it's unmaintained and uses deprecated libraries"; # added 2019-12-10 606 609 retroshare06 = retroshare; 607 610 gtk-recordmydesktop = throw "gtk-recordmydesktop has been removed from nixpkgs, as it's unmaintained and uses deprecated libraries"; # added 2019-12-10
+30 -5
pkgs/top-level/all-packages.nix
··· 1771 1771 1772 1772 bubblewrap = callPackage ../tools/admin/bubblewrap { }; 1773 1773 1774 - borgbackup = callPackage ../tools/backup/borg { }; 1774 + borgbackup = callPackage ../tools/backup/borgbackup { }; 1775 1775 1776 1776 borgmatic = callPackage ../tools/backup/borgmatic { }; 1777 1777 ··· 4471 4471 4472 4472 fprintd = callPackage ../tools/security/fprintd { }; 4473 4473 4474 + fprintd-tod = callPackage ../tools/security/fprintd { 4475 + libfprint = libfprint-tod; 4476 + }; 4477 + 4474 4478 ferdi = callPackage ../applications/networking/instant-messengers/ferdi { 4475 4479 mkFranzDerivation = callPackage ../applications/networking/instant-messengers/franz/generic.nix { }; 4476 4480 }; ··· 5843 5847 5844 5848 lockfileProgs = callPackage ../tools/misc/lockfile-progs { }; 5845 5849 5846 - logstash6 = callPackage ../tools/misc/logstash/6.x.nix { }; 5850 + logstash6 = callPackage ../tools/misc/logstash/6.x.nix { 5851 + # https://www.elastic.co/support/matrix#logstash-and-jvm 5852 + jre = jdk11_headless; 5853 + }; 5847 5854 logstash6-oss = callPackage ../tools/misc/logstash/6.x.nix { 5848 5855 enableUnfree = false; 5856 + # https://www.elastic.co/support/matrix#logstash-and-jvm 5857 + jre = jdk11_headless; 5849 5858 }; 5850 - logstash7 = callPackage ../tools/misc/logstash/7.x.nix { }; 5859 + logstash7 = callPackage ../tools/misc/logstash/7.x.nix { 5860 + # https://www.elastic.co/support/matrix#logstash-and-jvm 5861 + jre = jdk11_headless; 5862 + }; 5851 5863 logstash7-oss = callPackage ../tools/misc/logstash/7.x.nix { 5852 5864 enableUnfree = false; 5865 + # https://www.elastic.co/support/matrix#logstash-and-jvm 5866 + jre = jdk11_headless; 5853 5867 }; 5854 5868 logstash = logstash6; 5855 5869 ··· 15239 15253 15240 15254 libfprint = callPackage ../development/libraries/libfprint { }; 15241 15255 15256 + libfprint-tod = callPackage ../development/libraries/libfprint-tod { }; 15257 + 15258 + libfprint-2-tod1-goodix = callPackage ../development/libraries/libfprint-2-tod1-goodix { }; 15259 + 15242 15260 libfpx = callPackage ../development/libraries/libfpx { }; 15243 15261 15244 15262 libgadu = callPackage ../development/libraries/libgadu { }; ··· 19789 19807 19790 19808 rtl8821cu = callPackage ../os-specific/linux/rtl8821cu { }; 19791 19809 19792 - rtlwifi_new = callPackage ../os-specific/linux/rtlwifi_new { }; 19810 + rtw88 = callPackage ../os-specific/linux/rtw88 { }; 19811 + rtlwifi_new = rtw88; 19793 19812 19794 19813 openafs_1_8 = callPackage ../servers/openafs/1.8/module.nix { }; 19795 19814 openafs_1_9 = callPackage ../servers/openafs/1.9/module.nix { }; ··· 20371 20390 20372 20391 rtl8761b-firmware = callPackage ../os-specific/linux/firmware/rtl8761b-firmware { }; 20373 20392 20374 - rtlwifi_new-firmware = callPackage ../os-specific/linux/firmware/rtlwifi_new-firmware { }; 20393 + rtw88-firmware = callPackage ../os-specific/linux/firmware/rtw88-firmware { }; 20375 20394 20376 20395 s3ql = callPackage ../tools/backup/s3ql { }; 20377 20396 ··· 23625 23644 23626 23645 k3s = callPackage ../applications/networking/cluster/k3s {}; 23627 23646 23647 + kconf = callPackage ../applications/networking/cluster/kconf { }; 23648 + 23628 23649 kail = callPackage ../tools/networking/kail { }; 23629 23650 23630 23651 kanboard = callPackage ../applications/misc/kanboard { }; ··· 23740 23761 kubelogin = callPackage ../applications/networking/cluster/kubelogin { }; 23741 23762 23742 23763 k9s = callPackage ../applications/networking/cluster/k9s { }; 23764 + 23765 + pgo-client = callPackage ../applications/networking/cluster/pgo-client { }; 23743 23766 23744 23767 popeye = callPackage ../applications/networking/cluster/popeye { }; 23745 23768 ··· 29984 30007 terraform-providers = recurseIntoAttrs ( 29985 30008 callPackage ../applications/networking/cluster/terraform-providers {} 29986 30009 ); 30010 + 30011 + terraforming = callPackage ../applications/networking/cluster/terraforming { }; 29987 30012 29988 30013 terraform-compliance = python3Packages.callPackage ../applications/networking/cluster/terraform-compliance {}; 29989 30014
+3 -1
pkgs/top-level/python-packages.nix
··· 6069 6069 6070 6070 pyosf = callPackage ../development/python-modules/pyosf { }; 6071 6071 6072 - pyosmium = callPackage ../development/python-modules/pyosmium { }; 6072 + pyosmium = callPackage ../development/python-modules/pyosmium { 6073 + inherit (pkgs) lz4; 6074 + }; 6073 6075 6074 6076 pyotp = callPackage ../development/python-modules/pyotp { }; 6075 6077