lol
0
fork

Configure Feed

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

Merge pull request #110670 from siraben/double-quotes-fix

treewide: fix double quoted strings in one-liners

authored by

Sandro and committed by
GitHub
81e3b9d1 2dd93a5c

+1884 -1911
+2 -2
lib/licenses.nix
··· 87 87 88 88 beerware = spdx { 89 89 spdxId = "Beerware"; 90 - fullName = ''Beerware License''; 90 + fullName = "Beerware License"; 91 91 }; 92 92 93 93 blueOak100 = spdx { ··· 107 107 108 108 bsd2Patent = spdx { 109 109 spdxId = "BSD-2-Clause-Patent"; 110 - fullName = ''BSD-2-Clause Plus Patent License''; 110 + fullName = "BSD-2-Clause Plus Patent License"; 111 111 }; 112 112 113 113 bsd3 = spdx {
+1 -1
nixos/modules/config/console.nix
··· 83 83 packages = mkOption { 84 84 type = types.listOf types.package; 85 85 default = with pkgs.kbdKeymaps; [ dvp neo ]; 86 - defaultText = ''with pkgs.kbdKeymaps; [ dvp neo ]''; 86 + defaultText = "with pkgs.kbdKeymaps; [ dvp neo ]"; 87 87 description = '' 88 88 List of additional packages that provide console fonts, keymaps and 89 89 other resources for virtual consoles use.
+1 -1
nixos/modules/config/fonts/fontconfig.nix
··· 436 436 useEmbeddedBitmaps = mkOption { 437 437 type = types.bool; 438 438 default = false; 439 - description = ''Use embedded bitmaps in fonts like Calibri.''; 439 + description = "Use embedded bitmaps in fonts like Calibri."; 440 440 }; 441 441 442 442 };
+1 -1
nixos/modules/config/i18n.nix
··· 84 84 environment.etc."locale.conf".source = pkgs.writeText "locale.conf" 85 85 '' 86 86 LANG=${config.i18n.defaultLocale} 87 - ${concatStringsSep "\n" (mapAttrsToList (n: v: ''${n}=${v}'') config.i18n.extraLocaleSettings)} 87 + ${concatStringsSep "\n" (mapAttrsToList (n: v: "${n}=${v}") config.i18n.extraLocaleSettings)} 88 88 ''; 89 89 90 90 };
+1 -2
nixos/modules/config/networking.nix
··· 195 195 ''; 196 196 197 197 # /etc/netgroup: Network-wide groups. 198 - netgroup.text = mkDefault '' 199 - ''; 198 + netgroup.text = mkDefault ""; 200 199 201 200 # /etc/host.conf: resolver configuration file 202 201 "host.conf".text = ''
+1 -1
nixos/modules/config/pulseaudio.nix
··· 183 183 config = mkOption { 184 184 type = types.attrsOf types.unspecified; 185 185 default = {}; 186 - description = ''Config of the pulse daemon. See <literal>man pulse-daemon.conf</literal>.''; 186 + description = "Config of the pulse daemon. See <literal>man pulse-daemon.conf</literal>."; 187 187 example = literalExample ''{ realtime-scheduling = "yes"; }''; 188 188 }; 189 189 };
+2 -2
nixos/modules/config/users-groups.nix
··· 364 364 count = mkOption { 365 365 type = types.int; 366 366 default = 1; 367 - description = ''Count of subordinate user ids''; 367 + description = "Count of subordinate user ids"; 368 368 }; 369 369 }; 370 370 }; ··· 381 381 count = mkOption { 382 382 type = types.int; 383 383 default = 1; 384 - description = ''Count of subordinate group ids''; 384 + description = "Count of subordinate group ids"; 385 385 }; 386 386 }; 387 387 };
+1 -1
nixos/modules/hardware/video/bumblebee.nix
··· 40 40 default = "wheel"; 41 41 example = "video"; 42 42 type = types.str; 43 - description = ''Group for bumblebee socket''; 43 + description = "Group for bumblebee socket"; 44 44 }; 45 45 46 46 connectDisplay = mkOption {
+1 -1
nixos/modules/misc/locate.nix
··· 215 215 '' 216 216 else '' 217 217 exec ${cfg.locate}/bin/updatedb \ 218 - ${optionalString (cfg.localuser != null && ! isMLocate) ''--localuser=${cfg.localuser}''} \ 218 + ${optionalString (cfg.localuser != null && ! isMLocate) "--localuser=${cfg.localuser}"} \ 219 219 --output=${toString cfg.output} ${concatStringsSep " " cfg.extraFlags} 220 220 ''; 221 221 environment = optionalAttrs (!isMLocate) {
+1 -1
nixos/modules/misc/nixpkgs.nix
··· 73 73 } 74 74 ''; 75 75 type = pkgsType; 76 - example = literalExample ''import <nixpkgs> {}''; 76 + example = literalExample "import <nixpkgs> {}"; 77 77 description = '' 78 78 If set, the pkgs argument to all NixOS modules is the value of 79 79 this option, extended with <code>nixpkgs.overlays</code>, if
+7 -7
nixos/modules/programs/captive-browser.nix
··· 27 27 # the options below are the same as in "captive-browser.toml" 28 28 browser = mkOption { 29 29 type = types.str; 30 - default = concatStringsSep " " [ ''${pkgs.chromium}/bin/chromium'' 31 - ''--user-data-dir=''${XDG_DATA_HOME:-$HOME/.local/share}/chromium-captive'' 30 + default = concatStringsSep " " [ "${pkgs.chromium}/bin/chromium" 31 + "--user-data-dir=\${XDG_DATA_HOME:-$HOME/.local/share}/chromium-captive" 32 32 ''--proxy-server="socks5://$PROXY"'' 33 33 ''--host-resolver-rules="MAP * ~NOTFOUND , EXCLUDE localhost"'' 34 - ''--no-first-run'' 35 - ''--new-window'' 36 - ''--incognito'' 37 - ''http://cache.nixos.org/'' 34 + "--no-first-run" 35 + "--new-window" 36 + "--incognito" 37 + "http://cache.nixos.org/" 38 38 ]; 39 39 description = '' 40 40 The shell (/bin/sh) command executed once the proxy starts. ··· 62 62 socks5-addr = mkOption { 63 63 type = types.str; 64 64 default = "localhost:1666"; 65 - description = ''the listen address for the SOCKS5 proxy server''; 65 + description = "the listen address for the SOCKS5 proxy server"; 66 66 }; 67 67 68 68 bindInterface = mkOption {
+1 -1
nixos/modules/programs/ssh.nix
··· 36 36 askPassword = mkOption { 37 37 type = types.str; 38 38 default = "${pkgs.x11_ssh_askpass}/libexec/x11-ssh-askpass"; 39 - description = ''Program used by SSH to ask for passwords.''; 39 + description = "Program used by SSH to ask for passwords."; 40 40 }; 41 41 42 42 forwardX11 = mkOption {
+1 -1
nixos/modules/programs/xss-lock.nix
··· 11 11 12 12 lockerCommand = mkOption { 13 13 default = "${pkgs.i3lock}/bin/i3lock"; 14 - example = literalExample ''''${pkgs.i3lock-fancy}/bin/i3lock-fancy''; 14 + example = literalExample "\${pkgs.i3lock-fancy}/bin/i3lock-fancy"; 15 15 type = types.separatedString " "; 16 16 description = "Locker to be used with xsslock"; 17 17 };
+3 -3
nixos/modules/services/audio/mpd.nix
··· 74 74 musicDirectory = mkOption { 75 75 type = with types; either path (strMatching "(http|https|nfs|smb)://.+"); 76 76 default = "${cfg.dataDir}/music"; 77 - defaultText = ''''${dataDir}/music''; 77 + defaultText = "\${dataDir}/music"; 78 78 description = '' 79 79 The directory or NFS/SMB network share where MPD reads music from. If left 80 80 as the default value this directory will automatically be created before ··· 86 86 playlistDirectory = mkOption { 87 87 type = types.path; 88 88 default = "${cfg.dataDir}/playlists"; 89 - defaultText = ''''${dataDir}/playlists''; 89 + defaultText = "\${dataDir}/playlists"; 90 90 description = '' 91 91 The directory where MPD stores playlists. If left as the default value 92 92 this directory will automatically be created before the MPD server starts, ··· 155 155 dbFile = mkOption { 156 156 type = types.nullOr types.str; 157 157 default = "${cfg.dataDir}/tag_cache"; 158 - defaultText = ''''${dataDir}/tag_cache''; 158 + defaultText = "\${dataDir}/tag_cache"; 159 159 description = '' 160 160 The path to MPD's database. If set to <literal>null</literal> the 161 161 parameter is omitted from the configuration.
+1 -2
nixos/modules/services/backup/bacula.nix
··· 190 190 }; 191 191 192 192 devices = mkOption { 193 - description = '' 194 - ''; 193 + description = ""; 195 194 }; 196 195 197 196 extraAutochangerConfig = mkOption {
+1 -1
nixos/modules/services/backup/tarsnap.nix
··· 354 354 355 355 script = let 356 356 tarsnap = ''tarsnap --configfile "/etc/tarsnap/${name}.conf"''; 357 - lastArchive = ''$(${tarsnap} --list-archives | sort | tail -1)''; 357 + lastArchive = "$(${tarsnap} --list-archives | sort | tail -1)"; 358 358 run = ''${tarsnap} -x -f "${lastArchive}" ${optionalString cfg.verbose "-v"}''; 359 359 360 360 in if (cfg.cachedir != null) then ''
+1 -2
nixos/modules/services/cluster/hadoop/default.nix
··· 50 50 default = pkgs.hadoop; 51 51 defaultText = "pkgs.hadoop"; 52 52 example = literalExample "pkgs.hadoop"; 53 - description = '' 54 - ''; 53 + description = ""; 55 54 }; 56 55 }; 57 56
+3 -3
nixos/modules/services/computing/slurm/slurm.nix
··· 14 14 ClusterName=${cfg.clusterName} 15 15 StateSaveLocation=${cfg.stateSaveLocation} 16 16 SlurmUser=${cfg.user} 17 - ${optionalString (cfg.controlMachine != null) ''controlMachine=${cfg.controlMachine}''} 18 - ${optionalString (cfg.controlAddr != null) ''controlAddr=${cfg.controlAddr}''} 17 + ${optionalString (cfg.controlMachine != null) "controlMachine=${cfg.controlMachine}"} 18 + ${optionalString (cfg.controlAddr != null) "controlAddr=${cfg.controlAddr}"} 19 19 ${toString (map (x: "NodeName=${x}\n") cfg.nodeName)} 20 20 ${toString (map (x: "PartitionName=${x}\n") cfg.partitionName)} 21 21 PlugStackConfig=${plugStackConfig}/plugstack.conf ··· 25 25 26 26 plugStackConfig = pkgs.writeTextDir "plugstack.conf" 27 27 '' 28 - ${optionalString cfg.enableSrunX11 ''optional ${pkgs.slurm-spank-x11}/lib/x11.so''} 28 + ${optionalString cfg.enableSrunX11 "optional ${pkgs.slurm-spank-x11}/lib/x11.so"} 29 29 ${cfg.extraPlugstackConfig} 30 30 ''; 31 31
+1 -2
nixos/modules/services/databases/couchdb.nix
··· 16 16 [admins] 17 17 ${cfg.adminUser} = ${cfg.adminPass} 18 18 '' else 19 - '' 20 - '') + (if useVersion2 then 19 + "") + (if useVersion2 then 21 20 '' 22 21 [chttpd] 23 22 '' else
+1 -1
nixos/modules/services/databases/firebird.nix
··· 117 117 serviceConfig.User = cfg.user; 118 118 serviceConfig.LogsDirectory = "firebird"; 119 119 serviceConfig.LogsDirectoryMode = "0700"; 120 - serviceConfig.ExecStart = ''${firebird}/bin/fbserver -d''; 120 + serviceConfig.ExecStart = "${firebird}/bin/fbserver -d"; 121 121 122 122 # TODO think about shutdown 123 123 };
+4 -4
nixos/modules/services/databases/neo4j.nix
··· 16 16 ''} 17 17 dbms.ssl.policy.${name}.client_auth=${conf.clientAuth} 18 18 ${if length (splitString "/" conf.privateKey) > 1 then 19 - ''dbms.ssl.policy.${name}.private_key=${conf.privateKey}'' 19 + "dbms.ssl.policy.${name}.private_key=${conf.privateKey}" 20 20 else 21 - ''dbms.ssl.policy.${name}.private_key=${conf.baseDirectory}/${conf.privateKey}'' 21 + "dbms.ssl.policy.${name}.private_key=${conf.baseDirectory}/${conf.privateKey}" 22 22 } 23 23 ${if length (splitString "/" conf.privateKey) > 1 then 24 - ''dbms.ssl.policy.${name}.public_certificate=${conf.publicCertificate}'' 24 + "dbms.ssl.policy.${name}.public_certificate=${conf.publicCertificate}" 25 25 else 26 - ''dbms.ssl.policy.${name}.public_certificate=${conf.baseDirectory}/${conf.publicCertificate}'' 26 + "dbms.ssl.policy.${name}.public_certificate=${conf.baseDirectory}/${conf.publicCertificate}" 27 27 } 28 28 dbms.ssl.policy.${name}.revoked_dir=${conf.revokedDir} 29 29 dbms.ssl.policy.${name}.tls_versions=${concatStringsSep "," conf.tlsVersions}
+1 -1
nixos/modules/services/development/bloop.nix
··· 44 44 }; 45 45 serviceConfig = { 46 46 Type = "simple"; 47 - ExecStart = ''${pkgs.bloop}/bin/bloop server''; 47 + ExecStart = "${pkgs.bloop}/bin/bloop server"; 48 48 Restart = "always"; 49 49 }; 50 50 };
+4 -4
nixos/modules/services/editors/infinoted.nix
··· 141 141 install -o ${cfg.user} -g ${cfg.group} -m 0600 /dev/null /var/lib/infinoted/infinoted.conf 142 142 cat >>/var/lib/infinoted/infinoted.conf <<EOF 143 143 [infinoted] 144 - ${optionalString (cfg.keyFile != null) ''key-file=${cfg.keyFile}''} 145 - ${optionalString (cfg.certificateFile != null) ''certificate-file=${cfg.certificateFile}''} 146 - ${optionalString (cfg.certificateChain != null) ''certificate-chain=${cfg.certificateChain}''} 144 + ${optionalString (cfg.keyFile != null) "key-file=${cfg.keyFile}"} 145 + ${optionalString (cfg.certificateFile != null) "certificate-file=${cfg.certificateFile}"} 146 + ${optionalString (cfg.certificateChain != null) "certificate-chain=${cfg.certificateChain}"} 147 147 port=${toString cfg.port} 148 148 security-policy=${cfg.securityPolicy} 149 149 root-directory=${cfg.rootDirectory} 150 150 plugins=${concatStringsSep ";" cfg.plugins} 151 - ${optionalString (cfg.passwordFile != null) ''password=$(head -n 1 ${cfg.passwordFile})''} 151 + ${optionalString (cfg.passwordFile != null) "password=$(head -n 1 ${cfg.passwordFile})"} 152 152 153 153 ${cfg.extraConfig} 154 154 EOF
+1 -1
nixos/modules/services/games/openarena.nix
··· 19 19 extraFlags = mkOption { 20 20 type = types.listOf types.str; 21 21 default = []; 22 - description = ''Extra flags to pass to <command>oa_ded</command>''; 22 + description = "Extra flags to pass to <command>oa_ded</command>"; 23 23 example = [ 24 24 "+set dedicated 2" 25 25 "+set sv_hostname 'My NixOS OpenArena Server'"
+2 -2
nixos/modules/services/logging/logstash.nix
··· 100 100 101 101 inputConfig = mkOption { 102 102 type = types.lines; 103 - default = ''generator { }''; 103 + default = "generator { }"; 104 104 description = "Logstash input configuration."; 105 105 example = '' 106 106 # Read from journal ··· 131 131 132 132 outputConfig = mkOption { 133 133 type = types.lines; 134 - default = ''stdout { codec => rubydebug }''; 134 + default = "stdout { codec => rubydebug }"; 135 135 description = "Logstash output configuration."; 136 136 example = '' 137 137 redis { host => ["localhost"] data_type => "list" key => "logstash" codec => json }
+1 -1
nixos/modules/services/mail/postgrey.nix
··· 163 163 164 164 systemd.services.postgrey = let 165 165 bind-flag = if cfg.socket ? path then 166 - ''--unix=${cfg.socket.path} --socketmode=${cfg.socket.mode}'' 166 + "--unix=${cfg.socket.path} --socketmode=${cfg.socket.mode}" 167 167 else 168 168 ''--inet=${optionalString (cfg.socket.addr != null) (cfg.socket.addr + ":")}${toString cfg.socket.port}''; 169 169 in {
+1 -1
nixos/modules/services/misc/cgminer.nix
··· 120 120 wantedBy = [ "multi-user.target" ]; 121 121 122 122 environment = { 123 - LD_LIBRARY_PATH = ''/run/opengl-driver/lib:/run/opengl-driver-32/lib''; 123 + LD_LIBRARY_PATH = "/run/opengl-driver/lib:/run/opengl-driver-32/lib"; 124 124 DISPLAY = ":${toString config.services.xserver.display}"; 125 125 GPU_MAX_ALLOC_PERCENT = "100"; 126 126 GPU_USE_SYNC_OBJECTS = "1";
+1 -1
nixos/modules/services/misc/dictd.nix
··· 27 27 default = with pkgs.dictdDBs; [ wiktionary wordnet ]; 28 28 defaultText = "with pkgs.dictdDBs; [ wiktionary wordnet ]"; 29 29 example = literalExample "[ pkgs.dictdDBs.nld2eng ]"; 30 - description = ''List of databases to make available.''; 30 + description = "List of databases to make available."; 31 31 }; 32 32 33 33 };
+1 -1
nixos/modules/services/misc/exhibitor.nix
··· 185 185 }; 186 186 zkExtraCfg = mkOption { 187 187 type = types.str; 188 - default = ''initLimit=5&syncLimit=2&tickTime=2000''; 188 + default = "initLimit=5&syncLimit=2&tickTime=2000"; 189 189 description = '' 190 190 Extra options to pass into Zookeeper 191 191 '';
+1 -2
nixos/modules/services/misc/gitea.nix
··· 597 597 users.groups.gitea = {}; 598 598 599 599 warnings = 600 - optional (cfg.database.password != "") '' 601 - config.services.gitea.database.password will be stored as plaintext in the Nix store. Use database.passwordFile instead.'' ++ 600 + optional (cfg.database.password != "") "config.services.gitea.database.password will be stored as plaintext in the Nix store. Use database.passwordFile instead." ++ 602 601 optional (cfg.extraConfig != null) '' 603 602 services.gitea.`extraConfig` is deprecated, please use services.gitea.`settings`. 604 603 '';
+1 -2
nixos/modules/services/misc/matrix-synapse.nix
··· 504 504 report_stats = mkOption { 505 505 type = types.bool; 506 506 default = false; 507 - description = '' 508 - ''; 507 + description = ""; 509 508 }; 510 509 servers = mkOption { 511 510 type = types.attrsOf (types.attrsOf types.str);
+1 -1
nixos/modules/services/monitoring/apcupsd.nix
··· 104 104 hooks = mkOption { 105 105 default = {}; 106 106 example = { 107 - doshutdown = ''# shell commands to notify that the computer is shutting down''; 107 + doshutdown = "# shell commands to notify that the computer is shutting down"; 108 108 }; 109 109 type = types.attrsOf types.lines; 110 110 description = ''
+3 -3
nixos/modules/services/monitoring/graphite.nix
··· 25 25 26 26 graphiteApiConfig = pkgs.writeText "graphite-api.yaml" '' 27 27 search_index: ${dataDir}/index 28 - ${optionalString (config.time.timeZone != null) ''time_zone: ${config.time.timeZone}''} 29 - ${optionalString (cfg.api.finders != []) ''finders:''} 28 + ${optionalString (config.time.timeZone != null) "time_zone: ${config.time.timeZone}"} 29 + ${optionalString (cfg.api.finders != []) "finders:"} 30 30 ${concatMapStringsSep "\n" (f: " - " + f.moduleName) cfg.api.finders} 31 - ${optionalString (cfg.api.functions != []) ''functions:''} 31 + ${optionalString (cfg.api.functions != []) "functions:"} 32 32 ${concatMapStringsSep "\n" (f: " - " + f) cfg.api.functions} 33 33 ${cfg.api.extraConfig} 34 34 '';
+1 -1
nixos/modules/services/monitoring/incron.nix
··· 67 67 config = mkIf cfg.enable { 68 68 69 69 warnings = optional (cfg.allow != null && cfg.deny != null) 70 - ''If `services.incron.allow` is set then `services.incron.deny` will be ignored.''; 70 + "If `services.incron.allow` is set then `services.incron.deny` will be ignored."; 71 71 72 72 environment.systemPackages = [ pkgs.incron ]; 73 73
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/collectd.nix
··· 20 20 port = mkOption { 21 21 type = types.int; 22 22 default = 25826; 23 - description = ''Network address on which to accept collectd binary network packets.''; 23 + description = "Network address on which to accept collectd binary network packets."; 24 24 }; 25 25 26 26 listenAddress = mkOption {
+1 -1
nixos/modules/services/monitoring/telegraf.nix
··· 69 69 umask 077 70 70 ${pkgs.envsubst}/bin/envsubst -i "${configFile}" > /var/run/telegraf/config.toml 71 71 ''); 72 - ExecStart=''${cfg.package}/bin/telegraf -config ${finalConfigFile}''; 72 + ExecStart="${cfg.package}/bin/telegraf -config ${finalConfigFile}"; 73 73 ExecReload="${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 74 74 RuntimeDirectory = "telegraf"; 75 75 User = "telegraf";
+2 -2
nixos/modules/services/monitoring/thanos.nix
··· 12 12 }; 13 13 14 14 optionToArgs = opt: v : optional (v != null) ''--${opt}="${toString v}"''; 15 - flagToArgs = opt: v : optional v ''--${opt}''; 15 + flagToArgs = opt: v : optional v "--${opt}"; 16 16 listToArgs = opt: vs : map (v: ''--${opt}="${v}"'') vs; 17 17 attrsToArgs = opt: kvs: mapAttrsToList (k: v: ''--${opt}=${k}=\"${v}\"'') kvs; 18 18 ··· 67 67 preferLocalBuild = true; 68 68 json = builtins.toFile "${name}.json" (builtins.toJSON attrs); 69 69 nativeBuildInputs = [ pkgs.remarshal ]; 70 - } ''json2yaml -i $json -o $out''; 70 + } "json2yaml -i $json -o $out"; 71 71 72 72 thanos = cmd: "${cfg.package}/bin/thanos ${cmd}" + 73 73 (let args = cfg.${cmd}.arguments;
+1 -1
nixos/modules/services/monitoring/ups.nix
··· 205 205 after = [ "upsd.service" ]; 206 206 wantedBy = [ "multi-user.target" ]; 207 207 # TODO: replace 'root' by another username. 208 - script = ''${pkgs.nut}/bin/upsdrvctl -u root start''; 208 + script = "${pkgs.nut}/bin/upsdrvctl -u root start"; 209 209 serviceConfig = { 210 210 Type = "oneshot"; 211 211 RemainAfterExit = true;
+2 -2
nixos/modules/services/network-filesystems/ceph.nix
··· 48 48 ExecStart = ''${ceph.out}/bin/${if daemonType == "rgw" then "radosgw" else "ceph-${daemonType}"} \ 49 49 -f --cluster ${clusterName} --id ${daemonId}''; 50 50 } // optionalAttrs (daemonType == "osd") { 51 - ExecStartPre = ''${ceph.lib}/libexec/ceph/ceph-osd-prestart.sh --id ${daemonId} --cluster ${clusterName}''; 51 + ExecStartPre = "${ceph.lib}/libexec/ceph/ceph-osd-prestart.sh --id ${daemonId} --cluster ${clusterName}"; 52 52 RestartSec = "20s"; 53 53 PrivateDevices = "no"; # osd needs disk access 54 54 } // optionalAttrs ( daemonType == "mon") { ··· 353 353 ]; 354 354 355 355 warnings = optional (cfg.global.monInitialMembers == null) 356 - ''Not setting up a list of members in monInitialMembers requires that you set the host variable for each mon daemon or else the cluster won't function''; 356 + "Not setting up a list of members in monInitialMembers requires that you set the host variable for each mon daemon or else the cluster won't function"; 357 357 358 358 environment.etc."ceph/ceph.conf".text = let 359 359 # Merge the extraConfig set for mgr daemons, as mgr don't have their own section
+1 -1
nixos/modules/services/networking/amuled.nix
··· 25 25 26 26 dataDir = mkOption { 27 27 type = types.str; 28 - default = ''/home/${user}/''; 28 + default = "/home/${user}/"; 29 29 description = '' 30 30 The directory holding configuration, incoming and temporary files. 31 31 '';
+2 -2
nixos/modules/services/networking/cntlm.nix
··· 42 42 }; 43 43 44 44 domain = mkOption { 45 - description = ''Proxy account domain/workgroup name.''; 45 + description = "Proxy account domain/workgroup name."; 46 46 }; 47 47 48 48 password = mkOption { 49 49 default = "/etc/cntlm.password"; 50 50 type = types.str; 51 - description = ''Proxy account password. Note: use chmod 0600 on /etc/cntlm.password for security.''; 51 + description = "Proxy account password. Note: use chmod 0600 on /etc/cntlm.password for security."; 52 52 }; 53 53 54 54 netbios_hostname = mkOption {
+1 -2
nixos/modules/services/networking/connman.nix
··· 42 42 43 43 extraConfig = mkOption { 44 44 type = types.lines; 45 - default = '' 46 - ''; 45 + default = ""; 47 46 description = '' 48 47 Configuration lines appended to the generated connman configuration file. 49 48 '';
+1 -2
nixos/modules/services/networking/dnsdist.nix
··· 26 26 27 27 extraConfig = mkOption { 28 28 type = types.lines; 29 - default = '' 30 - ''; 29 + default = ""; 31 30 description = '' 32 31 Extra lines to be added verbatim to dnsdist.conf. 33 32 '';
+2 -2
nixos/modules/services/networking/gateone.nix
··· 10 10 pidDir = mkOption { 11 11 default = "/run/gateone"; 12 12 type = types.path; 13 - description = ''Path of pid files for GateOne.''; 13 + description = "Path of pid files for GateOne."; 14 14 }; 15 15 settingsDir = mkOption { 16 16 default = "/var/lib/gateone"; 17 17 type = types.path; 18 - description = ''Path of configuration files for GateOne.''; 18 + description = "Path of configuration files for GateOne."; 19 19 }; 20 20 }; 21 21 };
+2 -2
nixos/modules/services/networking/hostapd.nix
··· 20 20 ssid=${cfg.ssid} 21 21 hw_mode=${cfg.hwMode} 22 22 channel=${toString cfg.channel} 23 - ${optionalString (cfg.countryCode != null) ''country_code=${cfg.countryCode}''} 24 - ${optionalString (cfg.countryCode != null) ''ieee80211d=1''} 23 + ${optionalString (cfg.countryCode != null) "country_code=${cfg.countryCode}"} 24 + ${optionalString (cfg.countryCode != null) "ieee80211d=1"} 25 25 26 26 # logging (debug level) 27 27 logger_syslog=-1
+3 -3
nixos/modules/services/networking/hylafax/modem-default.nix
··· 5 5 { 6 6 7 7 TagLineFont = "etc/LiberationSans-25.pcf"; 8 - TagLineLocale = ''en_US.UTF-8''; 8 + TagLineLocale = "en_US.UTF-8"; 9 9 10 10 AdminGroup = "root"; # groups that can change server config 11 11 AnswerRotary = "fax"; # don't accept anything else but faxes ··· 16 16 SessionTracing = "0x78701"; 17 17 UUCPLockDir = "/var/lock"; 18 18 19 - SendPageCmd = ''${pkgs.coreutils}/bin/false''; # prevent pager transmit 20 - SendUUCPCmd = ''${pkgs.coreutils}/bin/false''; # prevent UUCP transmit 19 + SendPageCmd = "${pkgs.coreutils}/bin/false"; # prevent pager transmit 20 + SendUUCPCmd = "${pkgs.coreutils}/bin/false"; # prevent UUCP transmit 21 21 22 22 }
+10 -10
nixos/modules/services/networking/hylafax/options.nix
··· 85 85 # Otherwise, we use `false` to provoke 86 86 # an error if hylafax tries to use it. 87 87 c.sendmailPath = mkMerge [ 88 - (mkIfDefault noWrapper ''${pkgs.coreutils}/bin/false'') 89 - (mkIfDefault (!noWrapper) ''${wrapperDir}/${program}'') 88 + (mkIfDefault noWrapper "${pkgs.coreutils}/bin/false") 89 + (mkIfDefault (!noWrapper) "${wrapperDir}/${program}") 90 90 ]; 91 91 importDefaultConfig = file: 92 92 lib.attrsets.mapAttrs ··· 121 121 122 122 options.services.hylafax = { 123 123 124 - enable = mkEnableOption ''HylaFAX server''; 124 + enable = mkEnableOption "HylaFAX server"; 125 125 126 126 autostart = mkOption { 127 127 type = bool; ··· 139 139 type = nullOr str1; 140 140 default = null; 141 141 example = "49"; 142 - description = ''Country code for server and all modems.''; 142 + description = "Country code for server and all modems."; 143 143 }; 144 144 145 145 areaCode = mkOption { 146 146 type = nullOr str1; 147 147 default = null; 148 148 example = "30"; 149 - description = ''Area code for server and all modems.''; 149 + description = "Area code for server and all modems."; 150 150 }; 151 151 152 152 longDistancePrefix = mkOption { 153 153 type = nullOr str; 154 154 default = null; 155 155 example = "0"; 156 - description = ''Long distance prefix for server and all modems.''; 156 + description = "Long distance prefix for server and all modems."; 157 157 }; 158 158 159 159 internationalPrefix = mkOption { 160 160 type = nullOr str; 161 161 default = null; 162 162 example = "00"; 163 - description = ''International prefix for server and all modems.''; 163 + description = "International prefix for server and all modems."; 164 164 }; 165 165 166 166 spoolAreaPath = mkOption { ··· 267 267 spoolExtraInit = mkOption { 268 268 type = lines; 269 269 default = ""; 270 - example = ''chmod 0755 . # everyone may read my faxes''; 270 + example = "chmod 0755 . # everyone may read my faxes"; 271 271 description = '' 272 272 Additional shell code that is executed within the 273 273 spooling area directory right after its setup. ··· 345 345 faxqclean.doneqMinutes = mkOption { 346 346 type = int1; 347 347 default = 15; 348 - example = literalExample ''24*60''; 348 + example = literalExample "24*60"; 349 349 description = '' 350 350 Set the job 351 351 age threshold (in minutes) that controls how long ··· 355 355 faxqclean.docqMinutes = mkOption { 356 356 type = int1; 357 357 default = 60; 358 - example = literalExample ''24*60''; 358 + example = literalExample "24*60"; 359 359 description = '' 360 360 Set the document 361 361 age threshold (in minutes) that controls how long
+14 -14
nixos/modules/services/networking/hylafax/systemd.nix
··· 16 16 mkLines = conf: 17 17 (lib.concatLists 18 18 (lib.flip lib.mapAttrsToList conf 19 - (k: map (v: ''${k}: ${v}'') 19 + (k: map (v: "${k}: ${v}") 20 20 ))); 21 21 include = mkLines { Include = conf.Include or []; }; 22 22 other = mkLines ( conf // { Include = []; } ); 23 23 in 24 - pkgs.writeText ''hylafax-config${name}'' 24 + pkgs.writeText "hylafax-config${name}" 25 25 (concatStringsSep "\n" (include ++ other)); 26 26 27 27 globalConfigPath = mkConfigFile "" cfg.faxqConfig; ··· 29 29 modemConfigPath = 30 30 let 31 31 mkModemConfigFile = { config, name, ... }: 32 - mkConfigFile ''.${name}'' 32 + mkConfigFile ".${name}" 33 33 (cfg.commonModemConfig // config); 34 34 mkLine = { name, type, ... }@modem: '' 35 35 # check if modem config file exists: ··· 81 81 description = "HylaFAX queue manager sendq watch"; 82 82 documentation = [ "man:faxq(8)" "man:sendq(5)" ]; 83 83 wantedBy = [ "multi-user.target" ]; 84 - pathConfig.PathExistsGlob = [ ''${cfg.spoolAreaPath}/sendq/q*'' ]; 84 + pathConfig.PathExistsGlob = [ "${cfg.spoolAreaPath}/sendq/q*" ]; 85 85 }; 86 86 87 87 timers = mkMerge [ ··· 134 134 exit 1 135 135 fi 136 136 ''; 137 - serviceConfig.ExecStop = ''${setupSpoolScript}''; 137 + serviceConfig.ExecStop = "${setupSpoolScript}"; 138 138 serviceConfig.RemainAfterExit = true; 139 139 serviceConfig.Type = "oneshot"; 140 140 unitConfig.RequiresMountsFor = [ cfg.spoolAreaPath ]; ··· 145 145 documentation = [ "man:faxq(8)" ]; 146 146 requires = [ "hylafax-spool.service" ]; 147 147 after = [ "hylafax-spool.service" ]; 148 - wants = mapModems ( { name, ... }: ''hylafax-faxgetty@${name}.service'' ); 148 + wants = mapModems ( { name, ... }: "hylafax-faxgetty@${name}.service" ); 149 149 wantedBy = mkIf cfg.autostart [ "multi-user.target" ]; 150 150 serviceConfig.Type = "forking"; 151 151 serviceConfig.ExecStart = ''${pkgs.hylafaxplus}/spool/bin/faxq -q "${cfg.spoolAreaPath}"''; ··· 155 155 # stopped will always yield a failed send attempt: 156 156 # The fax service is started when the job is created with 157 157 # `sendfax`, but modems need some time to initialize. 158 - serviceConfig.ExecStartPost = [ ''${waitFaxqScript}'' ]; 158 + serviceConfig.ExecStartPost = [ "${waitFaxqScript}" ]; 159 159 # faxquit fails if the pipe is already gone 160 160 # (e.g. the service is already stopping) 161 161 serviceConfig.ExecStop = ''-${pkgs.hylafaxplus}/spool/bin/faxquit -q "${cfg.spoolAreaPath}"''; ··· 186 186 wantedBy = mkIf cfg.faxcron.enable.spoolInit requires; 187 187 startAt = mkIf (cfg.faxcron.enable.frequency!=null) cfg.faxcron.enable.frequency; 188 188 serviceConfig.ExecStart = concatStringsSep " " [ 189 - ''${pkgs.hylafaxplus}/spool/bin/faxcron'' 189 + "${pkgs.hylafaxplus}/spool/bin/faxcron" 190 190 ''-q "${cfg.spoolAreaPath}"'' 191 191 ''-info ${toString cfg.faxcron.infoDays}'' 192 192 ''-log ${toString cfg.faxcron.logDays}'' ··· 202 202 wantedBy = mkIf cfg.faxqclean.enable.spoolInit requires; 203 203 startAt = mkIf (cfg.faxqclean.enable.frequency!=null) cfg.faxqclean.enable.frequency; 204 204 serviceConfig.ExecStart = concatStringsSep " " [ 205 - ''${pkgs.hylafaxplus}/spool/bin/faxqclean'' 205 + "${pkgs.hylafaxplus}/spool/bin/faxqclean" 206 206 ''-q "${cfg.spoolAreaPath}"'' 207 - ''-v'' 208 - (optionalString (cfg.faxqclean.archiving!="never") ''-a'') 209 - (optionalString (cfg.faxqclean.archiving=="always") ''-A'') 207 + "-v" 208 + (optionalString (cfg.faxqclean.archiving!="never") "-a") 209 + (optionalString (cfg.faxqclean.archiving=="always") "-A") 210 210 ''-j ${toString (cfg.faxqclean.doneqMinutes*60)}'' 211 211 ''-d ${toString (cfg.faxqclean.docqMinutes*60)}'' 212 212 ]; 213 213 }; 214 214 215 215 mkFaxgettyService = { name, ... }: 216 - lib.nameValuePair ''hylafax-faxgetty@${name}'' rec { 216 + lib.nameValuePair "hylafax-faxgetty@${name}" rec { 217 217 description = "HylaFAX faxgetty for %I"; 218 218 documentation = [ "man:faxgetty(8)" ]; 219 219 bindsTo = [ "dev-%i.device" ]; ··· 221 221 after = bindsTo ++ requires; 222 222 before = [ "hylafax-faxq.service" "getty.target" ]; 223 223 unitConfig.StopWhenUnneeded = true; 224 - unitConfig.AssertFileNotEmpty = ''${cfg.spoolAreaPath}/etc/config.%I''; 224 + unitConfig.AssertFileNotEmpty = "${cfg.spoolAreaPath}/etc/config.%I"; 225 225 serviceConfig.UtmpIdentifier = "%I"; 226 226 serviceConfig.TTYPath = "/dev/%I"; 227 227 serviceConfig.Restart = "always";
+7 -7
nixos/modules/services/networking/kippo.nix
··· 17 17 enable = mkOption { 18 18 default = false; 19 19 type = types.bool; 20 - description = ''Enable the kippo honeypot ssh server.''; 20 + description = "Enable the kippo honeypot ssh server."; 21 21 }; 22 22 port = mkOption { 23 23 default = 2222; 24 24 type = types.int; 25 - description = ''TCP port number for kippo to bind to.''; 25 + description = "TCP port number for kippo to bind to."; 26 26 }; 27 27 hostname = mkOption { 28 28 default = "nas3"; 29 29 type = types.str; 30 - description = ''Hostname for kippo to present to SSH login''; 30 + description = "Hostname for kippo to present to SSH login"; 31 31 }; 32 32 varPath = mkOption { 33 33 default = "/var/lib/kippo"; 34 34 type = types.path; 35 - description = ''Path of read/write files needed for operation and configuration.''; 35 + description = "Path of read/write files needed for operation and configuration."; 36 36 }; 37 37 logPath = mkOption { 38 38 default = "/var/log/kippo"; 39 39 type = types.path; 40 - description = ''Path of log files needed for operation and configuration.''; 40 + description = "Path of log files needed for operation and configuration."; 41 41 }; 42 42 pidPath = mkOption { 43 43 default = "/run/kippo"; 44 44 type = types.path; 45 - description = ''Path of pid files needed for operation.''; 45 + description = "Path of pid files needed for operation."; 46 46 }; 47 47 extraConfig = mkOption { 48 48 default = ""; 49 49 type = types.lines; 50 - description = ''Extra verbatim configuration added to the end of kippo.cfg.''; 50 + description = "Extra verbatim configuration added to the end of kippo.cfg."; 51 51 }; 52 52 }; 53 53
+1 -1
nixos/modules/services/networking/owamp.nix
··· 10 10 ###### interface 11 11 12 12 options = { 13 - services.owamp.enable = mkEnableOption ''Enable OWAMP server''; 13 + services.owamp.enable = mkEnableOption "Enable OWAMP server"; 14 14 }; 15 15 16 16
+1 -1
nixos/modules/services/networking/quassel.nix
··· 61 61 }; 62 62 63 63 dataDir = mkOption { 64 - default = ''/home/${user}/.config/quassel-irc.org''; 64 + default = "/home/${user}/.config/quassel-irc.org"; 65 65 description = '' 66 66 The directory holding configuration files, the SQlite database and the SSL Cert. 67 67 '';
+1 -1
nixos/modules/services/networking/smokeping.nix
··· 303 303 ${cfg.package}/bin/smokeping --check --config=${configPath} 304 304 ${cfg.package}/bin/smokeping --static --config=${configPath} 305 305 ''; 306 - script = ''${cfg.package}/bin/smokeping --config=${configPath} --nodaemon''; 306 + script = "${cfg.package}/bin/smokeping --config=${configPath} --nodaemon"; 307 307 }; 308 308 systemd.services.thttpd = mkIf cfg.webService { 309 309 wantedBy = [ "multi-user.target"];
+6 -6
nixos/modules/services/networking/ssh/lshd.nix
··· 56 56 syslog = mkOption { 57 57 type = types.bool; 58 58 default = true; 59 - description = ''Whether to enable syslog output.''; 59 + description = "Whether to enable syslog output."; 60 60 }; 61 61 62 62 passwordAuthentication = mkOption { 63 63 type = types.bool; 64 64 default = true; 65 - description = ''Whether to enable password authentication.''; 65 + description = "Whether to enable password authentication."; 66 66 }; 67 67 68 68 publicKeyAuthentication = mkOption { 69 69 type = types.bool; 70 70 default = true; 71 - description = ''Whether to enable public key authentication.''; 71 + description = "Whether to enable public key authentication."; 72 72 }; 73 73 74 74 rootLogin = mkOption { 75 75 type = types.bool; 76 76 default = false; 77 - description = ''Whether to enable remote root login.''; 77 + description = "Whether to enable remote root login."; 78 78 }; 79 79 80 80 loginShell = mkOption { ··· 96 96 tcpForwarding = mkOption { 97 97 type = types.bool; 98 98 default = true; 99 - description = ''Whether to enable TCP/IP forwarding.''; 99 + description = "Whether to enable TCP/IP forwarding."; 100 100 }; 101 101 102 102 x11Forwarding = mkOption { 103 103 type = types.bool; 104 104 default = true; 105 - description = ''Whether to enable X11 forwarding.''; 105 + description = "Whether to enable X11 forwarding."; 106 106 }; 107 107 108 108 subsystems = mkOption {
+1 -1
nixos/modules/services/networking/strongswan-swanctl/swanctl-params.nix
··· 1273 1273 provided the user is prompted during an interactive 1274 1274 <literal>--load-creds</literal> call. 1275 1275 ''; 1276 - } ''Definition for a private key that's stored on a token/smartcard/TPM.''; 1276 + } "Definition for a private key that's stored on a token/smartcard/TPM."; 1277 1277 1278 1278 }; 1279 1279
+1 -1
nixos/modules/services/networking/supybot.nix
··· 70 70 value must be a function which receives the attrset defined 71 71 in <varname>python3Packages</varname> as the sole argument. 72 72 ''; 73 - example = literalExample ''p: [ p.lxml p.requests ]''; 73 + example = literalExample "p: [ p.lxml p.requests ]"; 74 74 }; 75 75 76 76 };
+2 -2
nixos/modules/services/networking/wpa_supplicant.nix
··· 14 14 then ''"${psk}"'' 15 15 else pskRaw; 16 16 baseAuth = if key != null 17 - then ''psk=${key}'' 18 - else ''key_mgmt=NONE''; 17 + then "psk=${key}" 18 + else "key_mgmt=NONE"; 19 19 in '' 20 20 network={ 21 21 ssid="${ssid}"
+1 -1
nixos/modules/services/security/usbguard.nix
··· 173 173 174 174 serviceConfig = { 175 175 Type = "simple"; 176 - ExecStart = ''${cfg.package}/bin/usbguard-daemon -P -k -c ${daemonConfFile}''; 176 + ExecStart = "${cfg.package}/bin/usbguard-daemon -P -k -c ${daemonConfFile}"; 177 177 Restart = "on-failure"; 178 178 179 179 StateDirectory = [
+1 -1
nixos/modules/services/system/cloud-init.nix
··· 98 98 - final-message 99 99 - power-state-change 100 100 ''; 101 - description = ''cloud-init configuration.''; 101 + description = "cloud-init configuration."; 102 102 }; 103 103 104 104 };
+1 -1
nixos/modules/services/web-apps/dokuwiki.nix
··· 336 336 locations."/" = { 337 337 priority = 1; 338 338 index = "doku.php"; 339 - extraConfig = ''try_files $uri $uri/ @dokuwiki;''; 339 + extraConfig = "try_files $uri $uri/ @dokuwiki;"; 340 340 }; 341 341 342 342 locations."@dokuwiki" = {
+1 -1
nixos/modules/services/web-apps/keycloak.nix
··· 565 565 assertions = [ 566 566 { 567 567 assertion = (cfg.databaseUseSSL && cfg.databaseType == "postgresql") -> (cfg.databaseCaCert != null); 568 - message = ''A CA certificate must be specified (in 'services.keycloak.databaseCaCert') when PostgreSQL is used with SSL''; 568 + message = "A CA certificate must be specified (in 'services.keycloak.databaseCaCert') when PostgreSQL is used with SSL"; 569 569 } 570 570 ]; 571 571
+1 -1
nixos/modules/services/web-apps/moodle.nix
··· 84 84 type = mkOption { 85 85 type = types.enum [ "mysql" "pgsql" ]; 86 86 default = "mysql"; 87 - description = ''Database engine to use.''; 87 + description = "Database engine to use."; 88 88 }; 89 89 90 90 host = mkOption {
+1 -1
nixos/modules/services/web-servers/lighttpd/default.nix
··· 193 193 configText = mkOption { 194 194 default = ""; 195 195 type = types.lines; 196 - example = ''...verbatim config file contents...''; 196 + example = "...verbatim config file contents..."; 197 197 description = '' 198 198 Overridable config file contents to use for lighttpd. By default, use 199 199 the contents automatically generated by NixOS.
+1 -2
nixos/modules/system/boot/loader/raspberrypi/raspberrypi.nix
··· 60 60 version = mkOption { 61 61 default = 2; 62 62 type = types.enum [ 0 1 2 3 4 ]; 63 - description = '' 64 - ''; 63 + description = ""; 65 64 }; 66 65 67 66 uboot = {
+1 -1
nixos/modules/tasks/filesystems/zfs.nix
··· 662 662 # - HDDs are mixed with SSDs 663 663 # - There is a SSDs in a pool that is currently trimmed. 664 664 # - There are only HDDs and we would set the system in a degraded state 665 - serviceConfig.ExecStart = ''${pkgs.runtimeShell} -c 'for pool in $(zpool list -H -o name); do zpool trim $pool; done || true' ''; 665 + serviceConfig.ExecStart = "${pkgs.runtimeShell} -c 'for pool in $(zpool list -H -o name); do zpool trim $pool; done || true' "; 666 666 }; 667 667 668 668 systemd.timers.zpool-trim.timerConfig.Persistent = "yes";
+2 -2
nixos/modules/virtualisation/nixos-containers.nix
··· 170 170 171 171 ${concatStringsSep "\n" ( 172 172 mapAttrsToList (name: cfg: 173 - ''ip link del dev ${name} 2> /dev/null || true '' 173 + "ip link del dev ${name} 2> /dev/null || true " 174 174 ) cfg.extraVeths 175 175 )} 176 176 ''; ··· 185 185 fi 186 186 '' 187 187 else 188 - ''${ipcmd} add ${cfg.${attribute}} dev $ifaceHost''; 188 + "${ipcmd} add ${cfg.${attribute}} dev $ifaceHost"; 189 189 renderExtraVeth = name: cfg: 190 190 if cfg.hostBridge != null then 191 191 ''
+3 -6
nixos/modules/virtualisation/qemu-vm.nix
··· 136 136 cp ${bootDisk}/efi-vars.fd "$NIX_EFI_VARS" || exit 1 137 137 chmod 0644 "$NIX_EFI_VARS" || exit 1 138 138 fi 139 - '' else '' 140 - ''} 141 - '' else '' 142 - ''} 139 + '' else ""} 140 + '' else ""} 143 141 144 142 cd $TMPDIR 145 143 idx=0 ··· 187 185 efiVars=$out/efi-vars.fd 188 186 cp ${efiVarsDefault} $efiVars 189 187 chmod 0644 $efiVars 190 - '' else '' 191 - ''} 188 + '' else ""} 192 189 ''; 193 190 buildInputs = [ pkgs.util-linux ]; 194 191 QEMU_OPTS = "-nographic -serial stdio -monitor none"
+1 -1
nixos/modules/virtualisation/railcar.nix
··· 105 105 106 106 stateDir = mkOption { 107 107 type = types.path; 108 - default = ''/var/railcar''; 108 + default = "/var/railcar"; 109 109 description = "Railcar persistent state directory"; 110 110 }; 111 111
+1 -1
pkgs/applications/audio/lsp-plugins/default.nix
··· 18 18 buildInputs = [ jack2Full libsndfile libGLU libGL lv2 cairo ladspaH ]; 19 19 20 20 makeFlags = [ 21 - "PREFIX=${placeholder ''out''}" 21 + "PREFIX=${placeholder "out"}" 22 22 "ETC_PATH=$(out)/etc" 23 23 ]; 24 24
+1 -1
pkgs/applications/audio/zam-plugins/default.nix
··· 20 20 ''; 21 21 22 22 makeFlags = [ 23 - "PREFIX=${placeholder ''out''}" 23 + "PREFIX=${placeholder "out"}" 24 24 ]; 25 25 26 26 enableParallelBuilding = true;
+1 -1
pkgs/applications/editors/manuskript/default.nix
··· 26 26 --replace sample-projects $out/share/${pname}/sample-projects 27 27 ''; 28 28 29 - buildPhase = ''''; 29 + buildPhase = ""; 30 30 31 31 installPhase = '' 32 32 mkdir -p $out/share/${pname}
+1 -1
pkgs/applications/editors/rstudio/default.nix
··· 122 122 mimeType = "text/x-r-source;text/x-r;text/x-R;text/x-r-doc;text/x-r-sweave;text/x-r-markdown;text/x-r-html;text/x-r-presentation;application/x-r-data;application/x-r-project;text/x-r-history;text/x-r-profile;text/x-tex;text/x-markdown;text/html;text/css;text/javascript;text/x-chdr;text/x-csrc;text/x-c++hdr;text/x-c++src;"; 123 123 }; 124 124 125 - qtWrapperArgs = [ ''--suffix PATH : ${gnumake}/bin'' ]; 125 + qtWrapperArgs = [ "--suffix PATH : ${gnumake}/bin" ]; 126 126 127 127 postInstall = '' 128 128 mkdir $out/share
+1 -2
pkgs/applications/editors/vim/configurable.nix
··· 137 137 ++ lib.optional tclSupport tcl 138 138 ++ lib.optional rubySupport ruby; 139 139 140 - preConfigure = '' 141 - '' + lib.optionalString ftNixSupport '' 140 + preConfigure = "" + lib.optionalString ftNixSupport '' 142 141 cp ${vimPlugins.vim-nix.src}/ftplugin/nix.vim runtime/ftplugin/nix.vim 143 142 cp ${vimPlugins.vim-nix.src}/indent/nix.vim runtime/indent/nix.vim 144 143 cp ${vimPlugins.vim-nix.src}/syntax/nix.vim runtime/syntax/nix.vim
+1 -1
pkgs/applications/graphics/ahoviewer/default.nix
··· 31 31 32 32 NIX_LDFLAGS = "-lpthread"; 33 33 34 - postPatch = ''patchShebangs version.sh''; 34 + postPatch = "patchShebangs version.sh"; 35 35 36 36 postInstall = '' 37 37 wrapProgram $out/bin/ahoviewer \
+1 -1
pkgs/applications/graphics/ipe/default.nix
··· 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24 25 - qtWrapperArgs = [ ''--prefix PATH : ${texlive}/bin'' ]; 25 + qtWrapperArgs = [ "--prefix PATH : ${texlive}/bin" ]; 26 26 27 27 enableParallelBuilding = true; 28 28
+1 -1
pkgs/applications/graphics/mandelbulber/default.nix
··· 47 47 sourceRoot = "${src.name}/mandelbulber2"; 48 48 49 49 qmakeFlags = [ 50 - "SHARED_PATH=${placeholder ''out''}" 50 + "SHARED_PATH=${placeholder "out"}" 51 51 (if withOpenCL 52 52 then "qmake/mandelbulber-opencl.pro" 53 53 else "qmake/mandelbulber.pro")
+3 -3
pkgs/applications/graphics/pinta/default.nix
··· 56 56 ''; 57 57 58 58 makeWrapperArgs = [ 59 - ''--prefix MONO_GAC_PREFIX : ${gtksharp}'' 60 - ''--prefix LD_LIBRARY_PATH : ${gtksharp}/lib'' 61 - ''--prefix LD_LIBRARY_PATH : ${gtksharp.gtk.out}/lib'' 59 + "--prefix MONO_GAC_PREFIX : ${gtksharp}" 60 + "--prefix LD_LIBRARY_PATH : ${gtksharp}/lib" 61 + "--prefix LD_LIBRARY_PATH : ${gtksharp.gtk.out}/lib" 62 62 ]; 63 63 64 64 postInstall = ''
+1 -1
pkgs/applications/misc/bleachbit/default.nix
··· 54 54 # prevent double wrapping from wrapGApps and wrapPythonProgram 55 55 dontWrapGApps = true; 56 56 makeWrapperArgs = [ 57 - ''''${gappsWrapperArgs[@]}'' 57 + "\${gappsWrapperArgs[@]}" 58 58 ]; 59 59 60 60 strictDeps = false;
+1 -1
pkgs/applications/misc/digitalbitbox/default.nix
··· 94 94 "format" 95 95 ]; 96 96 97 - qtWrapperArgs = [ ''--prefix LD_LIBRARY_PATH : $out/lib'' ]; 97 + qtWrapperArgs = [ "--prefix LD_LIBRARY_PATH : $out/lib" ]; 98 98 99 99 postInstall = '' 100 100 mkdir -p "$out/lib"
+1 -1
pkgs/applications/misc/dupeguru/default.nix
··· 38 38 ]; 39 39 40 40 makeFlags = [ 41 - "PREFIX=${placeholder ''out''}" 41 + "PREFIX=${placeholder "out"}" 42 42 "NO_VENV=1" 43 43 ]; 44 44
+7 -7
pkgs/applications/misc/ikiwiki/default.nix
··· 60 60 postInstall = '' 61 61 for a in "$out/bin/"*; do 62 62 wrapProgram $a --suffix PERL5LIB : $PERL5LIB --prefix PATH : ${perlPackages.perl}/bin:$out/bin \ 63 - ${lib.optionalString gitSupport ''--prefix PATH : ${git}/bin ''} \ 64 - ${lib.optionalString monotoneSupport ''--prefix PATH : ${monotone}/bin ''} \ 65 - ${lib.optionalString bazaarSupport ''--prefix PATH : ${breezy}/bin ''} \ 66 - ${lib.optionalString cvsSupport ''--prefix PATH : ${cvs}/bin ''} \ 67 - ${lib.optionalString cvsSupport ''--prefix PATH : ${cvsps}/bin ''} \ 68 - ${lib.optionalString subversionSupport ''--prefix PATH : ${subversion.out}/bin ''} \ 69 - ${lib.optionalString mercurialSupport ''--prefix PATH : ${mercurial}/bin ''} \ 63 + ${lib.optionalString gitSupport "--prefix PATH : ${git}/bin "} \ 64 + ${lib.optionalString monotoneSupport "--prefix PATH : ${monotone}/bin "} \ 65 + ${lib.optionalString bazaarSupport "--prefix PATH : ${breezy}/bin "} \ 66 + ${lib.optionalString cvsSupport "--prefix PATH : ${cvs}/bin "} \ 67 + ${lib.optionalString cvsSupport "--prefix PATH : ${cvsps}/bin "} \ 68 + ${lib.optionalString subversionSupport "--prefix PATH : ${subversion.out}/bin "} \ 69 + ${lib.optionalString mercurialSupport "--prefix PATH : ${mercurial}/bin "} \ 70 70 ${lib.optionalString docutilsSupport ''--prefix PYTHONPATH : "$(toPythonPath ${docutils})" ''} \ 71 71 ${lib.concatMapStrings (x: "--prefix PATH : ${x}/bin ") extraUtils} 72 72 done
+1 -1
pkgs/applications/misc/lutris/default.nix
··· 101 101 dontWrapGApps = true; 102 102 makeWrapperArgs = [ 103 103 "--prefix PATH : ${binPath}" 104 - ''''${gappsWrapperArgs[@]}'' 104 + "\${gappsWrapperArgs[@]}" 105 105 ]; 106 106 # needed for glib-schemas to work correctly (will crash on dialogues otherwise) 107 107 # see https://github.com/NixOS/nixpkgs/issues/56943
+3 -3
pkgs/applications/misc/osm2xmap/default.nix
··· 14 14 makeFlags = [ 15 15 "GIT_VERSION=${version}" 16 16 "GIT_TIMESTAMP=" 17 - "SHAREDIR=${placeholder ''out''}/share/osm2xmap" 18 - "INSTALL_BINDIR=${placeholder ''out''}/bin" 19 - "INSTALL_MANDIR=${placeholder ''out''}/share/man/man1" 17 + "SHAREDIR=${placeholder "out"}/share/osm2xmap" 18 + "INSTALL_BINDIR=${placeholder "out"}/bin" 19 + "INSTALL_MANDIR=${placeholder "out"}/share/man/man1" 20 20 ]; 21 21 22 22 NIX_CFLAGS_COMPILE = "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H";
+1 -1
pkgs/applications/misc/plasma-applet-volumewin7mixer/default.nix
··· 12 12 }; 13 13 14 14 patches = [ ./cmake.patch ]; 15 - postPatch = '' rm build ''; 15 + postPatch = "rm build "; 16 16 nativeBuildInputs = [ cmake extra-cmake-modules ]; 17 17 buildInputs = [ plasma-framework kwindowsystem plasma-pa ]; 18 18
+1 -1
pkgs/applications/networking/instant-messengers/baresip/default.nix
··· 19 19 "LIBRE_INC=${libre}/include/re" 20 20 "LIBRE_SO=${libre}/lib" 21 21 "LIBREM_PATH=${librem}" 22 - ''PREFIX=$(out)'' 22 + "PREFIX=$(out)" 23 23 "USE_VIDEO=1" 24 24 "CCACHE_DISABLE=1" 25 25
+1 -1
pkgs/applications/networking/instant-messengers/jitsi/default.nix
··· 40 40 nativeBuildInputs = [ unzip ]; 41 41 buildInputs = [ ant jdk ]; 42 42 43 - buildPhase = ''ant make''; 43 + buildPhase = "ant make"; 44 44 45 45 installPhase = '' 46 46 mkdir -p $out
+1 -1
pkgs/applications/networking/owamp/default.nix
··· 20 20 21 21 meta = with lib; { 22 22 homepage = "http://software.internet2.edu/owamp/"; 23 - description = ''A tool for performing one-way active measurements''; 23 + description = "A tool for performing one-way active measurements"; 24 24 platforms = platforms.linux; 25 25 maintainers = [maintainers.teto]; 26 26 license = licenses.asl20;
+1 -1
pkgs/applications/networking/remote/x2goclient/default.nix
··· 28 28 29 29 installTargets = [ "install_client" "install_man" ]; 30 30 31 - qtWrapperArgs = [ ''--suffix PATH : ${nx-libs}/bin:${openssh}/libexec'' ]; 31 + qtWrapperArgs = [ "--suffix PATH : ${nx-libs}/bin:${openssh}/libexec" ]; 32 32 33 33 meta = with lib; { 34 34 description = "Graphical NoMachine NX3 remote desktop client";
+1 -1
pkgs/applications/office/docear/default.nix
··· 23 23 24 24 # The wrapper ensures oraclejre is used 25 25 makeWrapper ${runtimeShell} $out/bin/docear \ 26 - --set _JAVA_OPTIONS "${lib.optionalString antialiasFont ''-Dswing.aatext=TRUE -Dawt.useSystemAAFontSettings=on''}" \ 26 + --set _JAVA_OPTIONS "${lib.optionalString antialiasFont "-Dswing.aatext=TRUE -Dawt.useSystemAAFontSettings=on"}" \ 27 27 --set JAVA_HOME ${oraclejre.home} \ 28 28 --add-flags "$out/share/docear.sh" 29 29
+1 -1
pkgs/applications/office/planner/default.nix
··· 48 48 # glib-2.62 deprecations 49 49 NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS"; 50 50 51 - preConfigure = ''./autogen.sh''; 51 + preConfigure = "./autogen.sh"; 52 52 configureFlags = [ 53 53 "--enable-python" 54 54 "--enable-python-plugin"
+1 -2
pkgs/applications/radio/gnuradio/3.7.nix
··· 241 241 # gr-fcd feature was dropped in 3.8 242 242 ++ lib.optionals (hasFeature "gr-fcd" features) [ "share/gnuradio/examples/fcd" ] 243 243 ; 244 - preConfigure = '' 245 - '' 244 + preConfigure = "" 246 245 # wxgui and pygtk are not looked up properly, so we force them to be 247 246 # detected as found, if they are requested by the `features` attrset. 248 247 + lib.optionalString (hasFeature "gr-wxgui" features) ''
+1 -2
pkgs/applications/radio/gnuradio/default.nix
··· 240 240 ${removeReferencesTo}/bin/remove-references-to -t ${python} $out/lib/cmake/gnuradio/GnuradioConfig.cmake 241 241 '' 242 242 ; 243 - preConfigure = '' 244 - '' 243 + preConfigure = "" 245 244 # If python-support is disabled, don't install volk's (git submodule) 246 245 # volk_modtool - it references python. 247 246 #
+1 -2
pkgs/applications/radio/gnuradio/shared.nix
··· 83 83 ++ lib.optionals (hasFeature "gr-uhd" features) [ "share/gnuradio/examples/uhd" ] 84 84 ++ lib.optionals (hasFeature "gr-qtgui" features) [ "share/gnuradio/examples/qt-gui" ] 85 85 ; 86 - postInstall = '' 87 - '' 86 + postInstall = "" 88 87 # Gcc references 89 88 + lib.optionalString (hasFeature "volk" features) '' 90 89 ${removeReferencesTo}/bin/remove-references-to -t ${stdenv.cc} $(readlink -f $out/lib/libvolk.so)
+1 -1
pkgs/applications/science/biology/migrate/default.nix
··· 10 10 }; 11 11 12 12 buildInputs = [ zlib mpi ]; 13 - setSourceRoot = ''sourceRoot=$(echo */src)''; 13 + setSourceRoot = "sourceRoot=$(echo */src)"; 14 14 buildFlags = [ "thread" "mpis" ]; 15 15 preInstall = "mkdir -p $out/man/man1"; 16 16
+2 -2
pkgs/applications/science/biology/ncbi-tools/default.nix
··· 24 24 buildInputs = [ cpio ]; 25 25 26 26 meta = { 27 - description = ''NCBI Bioinformatics toolbox (incl. BLAST)''; 28 - longDescription = ''The NCBI Bioinformatics toolsbox, including command-line utilties, libraries and include files. No X11 support''; 27 + description = "NCBI Bioinformatics toolbox (incl. BLAST)"; 28 + longDescription = "The NCBI Bioinformatics toolsbox, including command-line utilties, libraries and include files. No X11 support"; 29 29 homepage = "http://www.ncbi.nlm.nih.gov/IEB/ToolBox/"; 30 30 license = "GPL"; 31 31 priority = 5; # zlib.so gives a conflict with zlib
+1 -1
pkgs/applications/science/biology/paml/default.nix
··· 26 26 27 27 meta = { 28 28 description = "Phylogenetic Analysis by Maximum Likelihood (PAML)"; 29 - longDescription = ''PAML is a package of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood. It is maintained and distributed for academic use free of charge by Ziheng Yang. ANSI C source codes are distributed for UNIX/Linux/Mac OSX, and executables are provided for MS Windows. PAML is not good for tree making. It may be used to estimate parameters and test hypotheses to study the evolutionary process, when you have reconstructed trees using other programs such as PAUP*, PHYLIP, MOLPHY, PhyML, RaxML, etc.''; 29 + longDescription = "PAML is a package of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood. It is maintained and distributed for academic use free of charge by Ziheng Yang. ANSI C source codes are distributed for UNIX/Linux/Mac OSX, and executables are provided for MS Windows. PAML is not good for tree making. It may be used to estimate parameters and test hypotheses to study the evolutionary process, when you have reconstructed trees using other programs such as PAUP*, PHYLIP, MOLPHY, PhyML, RaxML, etc."; 30 30 license = "non-commercial"; 31 31 homepage = "http://abacus.gene.ucl.ac.uk/software/paml.html"; 32 32 };
+1 -1
pkgs/applications/science/logic/iprover/default.nix
··· 11 11 12 12 buildInputs = [ ocaml eprover zlib ]; 13 13 14 - preConfigure = ''patchShebangs .''; 14 + preConfigure = "patchShebangs ."; 15 15 16 16 installPhase = '' 17 17 mkdir -p "$out/bin"
+1 -1
pkgs/applications/science/logic/lci/default.nix
··· 8 8 }; 9 9 buildInputs = [readline]; 10 10 meta = { 11 - description = ''Lambda calculus interpreter''; 11 + description = "Lambda calculus interpreter"; 12 12 maintainers = with lib.maintainers; [raskin]; 13 13 platforms = with lib.platforms; linux; 14 14 license = lib.licenses.gpl3;
+1 -1
pkgs/applications/science/logic/satallax/default.nix
··· 60 60 61 61 meta = { 62 62 inherit version; 63 - description = ''Automated theorem prover for higher-order logic''; 63 + description = "Automated theorem prover for higher-order logic"; 64 64 license = lib.licenses.mit ; 65 65 maintainers = [lib.maintainers.raskin]; 66 66 platforms = lib.platforms.linux;
+1 -1
pkgs/applications/science/logic/yices/default.nix
··· 23 23 doCheck = true; 24 24 25 25 # Usual shenanigans 26 - patchPhase = ''patchShebangs tests/regress/check.sh''; 26 + patchPhase = "patchShebangs tests/regress/check.sh"; 27 27 28 28 # Includes a fix for the embedded soname being libyices.so.2.5, but 29 29 # only installing the libyices.so.2.5.x file.
+1 -1
pkgs/applications/science/logic/z3/tptp.nix
··· 25 25 meta = { 26 26 inherit version; 27 27 inherit (z3.meta) license homepage platforms; 28 - description = ''TPTP wrapper for Z3 prover''; 28 + description = "TPTP wrapper for Z3 prover"; 29 29 maintainers = [lib.maintainers.raskin]; 30 30 }; 31 31 }
+2 -2
pkgs/applications/science/math/gfan/default.nix
··· 17 17 ''; 18 18 19 19 buildFlags = [ "CC=cc" "CXX=c++" ]; 20 - installFlags = [ ''PREFIX=$(out)'' ]; 20 + installFlags = [ "PREFIX=$(out)" ]; 21 21 buildInputs = [ gmp mpir cddlib ]; 22 22 23 23 meta = { 24 24 inherit version; 25 - description = ''A software package for computing Gröbner fans and tropical varieties''; 25 + description = "A software package for computing Gröbner fans and tropical varieties"; 26 26 license = lib.licenses.gpl2 ; 27 27 maintainers = [lib.maintainers.raskin]; 28 28 platforms = lib.platforms.unix;
+1 -1
pkgs/applications/science/math/nauty/default.nix
··· 31 31 checkTarget = "checks"; 32 32 meta = with lib; { 33 33 inherit version; 34 - description = ''Programs for computing automorphism groups of graphs and digraphs''; 34 + description = "Programs for computing automorphism groups of graphs and digraphs"; 35 35 license = licenses.asl20; 36 36 maintainers = teams.sage.members; 37 37 platforms = platforms.unix;
+1 -1
pkgs/applications/science/math/ratpoints/default.nix
··· 27 27 28 28 meta = { 29 29 inherit version; 30 - description = ''A program to find rational points on hyperelliptic curves''; 30 + description = "A program to find rational points on hyperelliptic curves"; 31 31 license = lib.licenses.gpl2Plus; 32 32 maintainers = [lib.maintainers.raskin]; 33 33 platforms = lib.platforms.unix;
+1 -1
pkgs/applications/science/math/symmetrica/default.nix
··· 27 27 enableParallelBuilding = true; 28 28 29 29 meta = with lib; { 30 - description = ''A collection of routines for representation theory and combinatorics''; 30 + description = "A collection of routines for representation theory and combinatorics"; 31 31 license = licenses.isc; 32 32 maintainers = teams.sage.members; 33 33 platforms = platforms.unix;
+1 -1
pkgs/applications/terminal-emulators/guake/default.nix
··· 59 59 PBR_VERSION = version; # pbr needs either .git directory, sdist, or env var 60 60 61 61 makeFlags = [ 62 - "prefix=${placeholder ''out''}" 62 + "prefix=${placeholder "out"}" 63 63 ]; 64 64 65 65 preFixup = ''
+1 -2
pkgs/applications/terminal-emulators/wezterm/default.nix
··· 77 77 78 78 buildInputs = runtimeDeps; 79 79 80 - installPhase = '' 81 - '' + lib.optionalString stdenv.isLinux '' 80 + installPhase = "" + lib.optionalString stdenv.isLinux '' 82 81 for artifact in wezterm wezterm-gui wezterm-mux-server strip-ansi-escapes; do 83 82 patchelf --set-rpath "${lib.makeLibraryPath runtimeDeps}" $releaseDir/$artifact 84 83 install -D $releaseDir/$artifact -t $out/bin
+1 -1
pkgs/applications/version-management/cvsps/default.nix
··· 47 47 installFlags = [ "prefix=$(out)" ]; 48 48 49 49 meta = { 50 - description = ''A tool to generate CVS patch set information''; 50 + description = "A tool to generate CVS patch set information"; 51 51 longDescription = '' 52 52 CVSps is a program for generating `patchset' information from a 53 53 CVS repository. A patchset in this case is defined as a set of
+1 -1
pkgs/applications/version-management/cvsq/default.nix
··· 41 41 ''; 42 42 43 43 meta = { 44 - description = ''A collection of tools to work locally with CVS''; 44 + description = "A collection of tools to work locally with CVS"; 45 45 longDescription = '' 46 46 cvsq is a collection of tools to work locally with CVS. 47 47
+1 -1
pkgs/applications/version-management/monotone-viz/default.nix
··· 47 47 48 48 meta = { 49 49 inherit version; 50 - description = ''Monotone ancestry visualiser''; 50 + description = "Monotone ancestry visualiser"; 51 51 license = lib.licenses.gpl2Plus ; 52 52 maintainers = [lib.maintainers.raskin]; 53 53 platforms = lib.platforms.linux;
+1 -1
pkgs/applications/video/makemkv/default.nix
··· 45 45 let 46 46 binPath = lib.makeBinPath [ jre_headless ]; 47 47 in lib.optionals withJava [ 48 - ''--prefix PATH : ${binPath}'' 48 + "--prefix PATH : ${binPath}" 49 49 ]; 50 50 51 51 installPhase = ''
+1 -1
pkgs/applications/video/mythtv/default.nix
··· 20 20 ./disable-os-detection.patch 21 21 ]; 22 22 23 - setSourceRoot = ''sourceRoot=$(echo */mythtv)''; 23 + setSourceRoot = "sourceRoot=$(echo */mythtv)"; 24 24 25 25 buildInputs = [ 26 26 freetype qtbase qtwebkit qtscript lame zlib xlibsWrapper libGLU libGL
+1 -1
pkgs/applications/video/xawtv/default.nix
··· 51 51 52 52 makeFlags = [ 53 53 "SUID_ROOT=" # do not try to setuid 54 - "resdir=${placeholder ''out''}/share/X11" 54 + "resdir=${placeholder "out"}/share/X11" 55 55 ]; 56 56 57 57 meta = {
+1 -2
pkgs/applications/virtualization/docker/default.nix
··· 55 55 }; 56 56 57 57 # Do not remove static from make files as we want a static binary 58 - patchPhase = '' 59 - ''; 58 + patchPhase = ""; 60 59 61 60 NIX_CFLAGS_COMPILE = "-DMINIMAL=ON"; 62 61 });
+1 -1
pkgs/applications/virtualization/xen/generic.nix
··· 250 250 " (${args.meta.description})"; 251 251 longDescription = (args.meta.longDescription or "") 252 252 + "\nIncludes:\n" 253 - + withXenfiles (name: x: ''* ${name}: ${x.meta.description or "(No description)"}.''); 253 + + withXenfiles (name: x: "* ${name}: ${x.meta.description or "(No description)"}."); 254 254 platforms = [ "x86_64-linux" ]; 255 255 maintainers = with lib.maintainers; [ eelco tstrobel oxij ]; 256 256 license = lib.licenses.gpl2;
+1 -1
pkgs/build-support/skaware/clean-packaging.nix
··· 8 8 let 9 9 globWith = lib.concatMapStringsSep "\n"; 10 10 rmNoise = noiseGlobs: globWith (f: 11 - ''rm -rf ${f}'') noiseGlobs; 11 + "rm -rf ${f}") noiseGlobs; 12 12 mvDoc = docGlobs: globWith 13 13 (f: ''mv ${f} "$DOCDIR" 2>/dev/null || true'') 14 14 docGlobs;
+1 -2
pkgs/data/fonts/orbitron/default.nix
··· 20 20 meta = with lib; { 21 21 homepage = "https://www.theleagueofmoveabletype.com/orbitron"; 22 22 downloadPage = "https://www.theleagueofmoveabletype.com/orbitron/download"; 23 - description = '' 24 - Geometric sans-serif for display purposes by Matt McInerney''; 23 + description = "Geometric sans-serif for display purposes by Matt McInerney"; 25 24 longDescription = '' 26 25 Orbitron is a geometric sans-serif typeface intended for display 27 26 purposes. It features four weights (light, medium, bold, and
+7 -7
pkgs/data/fonts/twitter-color-emoji/default.nix
··· 56 56 57 57 postPatch = let 58 58 templateSubstitutions = lib.concatStringsSep "; " [ 59 - ''s#Noto Color Emoji#Twitter Color Emoji#'' 60 - ''s#NotoColorEmoji#TwitterColorEmoji#'' 59 + "s#Noto Color Emoji#Twitter Color Emoji#" 60 + "s#NotoColorEmoji#TwitterColorEmoji#" 61 61 ''s#Copyright .* Google Inc\.#Twitter, Inc and other contributors.#'' 62 - ''s# Version .*# ${version}#'' 63 - ''s#.*is a trademark.*##'' 62 + "s# Version .*# ${version}#" 63 + "s#.*is a trademark.*##" 64 64 ''s#Google, Inc\.#Twitter, Inc and other contributors#'' 65 - ''s#http://www.google.com/get/noto/#https://twemoji.twitter.com/#'' 66 - ''s#.*is licensed under.*# Creative Commons Attribution 4.0 International#'' 67 - ''s#http://scripts.sil.org/OFL#http://creativecommons.org/licenses/by/4.0/#'' 65 + "s#http://www.google.com/get/noto/#https://twemoji.twitter.com/#" 66 + "s#.*is licensed under.*# Creative Commons Attribution 4.0 International#" 67 + "s#http://scripts.sil.org/OFL#http://creativecommons.org/licenses/by/4.0/#" 68 68 ]; 69 69 in '' 70 70 ${noto-fonts-emoji.postPatch}
+1 -1
pkgs/desktops/gnome-3/extensions/gsconnect/default.nix
··· 69 69 "-Dsshkeygen_path=${openssh}/bin/ssh-keygen" 70 70 "-Dsession_bus_services_dir=${placeholder "out"}/share/dbus-1/services" 71 71 "-Dpost_install=true" 72 - "-Dinstalled_test_prefix=${placeholder ''installedTests''}" 72 + "-Dinstalled_test_prefix=${placeholder "installedTests"}" 73 73 ]; 74 74 75 75 postPatch = ''
+1 -1
pkgs/development/beam-modules/build-rebar3.nix
··· 64 64 HOME=. rebar3 compile 65 65 ${if compilePorts then '' 66 66 HOME=. rebar3 pc compile 67 - '' else ''''} 67 + '' else ""} 68 68 runHook postBuild 69 69 ''; 70 70
+6 -6
pkgs/development/beam-modules/rebar3-release.nix
··· 46 46 configurePhase = '' 47 47 runHook preConfigure 48 48 ${if checkouts != null then 49 - ''cp --no-preserve=all -R ${checkouts}/_checkouts .'' 49 + "cp --no-preserve=all -R ${checkouts}/_checkouts ." 50 50 else 51 - ''''} 51 + ""} 52 52 runHook postConfigure 53 53 ''; 54 54 55 55 buildPhase = '' 56 56 runHook preBuild 57 57 HOME=. DEBUG=1 rebar3 as ${profile} ${if releaseType == "escript" 58 - then '' escriptize'' 59 - else '' release''} 58 + then "escriptize" 59 + else "release"} 60 60 runHook postBuild 61 61 ''; 62 62 63 63 installPhase = '' 64 64 runHook preInstall 65 65 dir=${if releaseType == "escript" 66 - then ''bin'' 67 - else ''rel''} 66 + then "bin" 67 + else "rel"} 68 68 mkdir -p "$out/$dir" 69 69 cp -R --preserve=mode "_build/${profile}/$dir" "$out" 70 70 runHook postInstall
+5 -5
pkgs/development/compilers/crystal/build-package.nix
··· 66 66 buildPhase = args.buildPhase or (lib.concatStringsSep "\n" ([ 67 67 "runHook preBuild" 68 68 ] ++ lib.optional (format == "make") 69 - ''make ''${buildTargets:-build} $makeFlags'' 69 + "make \${buildTargets:-build} $makeFlags" 70 70 ++ lib.optionals (format == "crystal") (lib.mapAttrsToList 71 71 (bin: attrs: '' 72 72 crystal ${lib.escapeShellArgs ([ ··· 84 84 installPhase = args.installPhase or (lib.concatStringsSep "\n" ([ 85 85 "runHook preInstall" 86 86 ] ++ lib.optional (format == "make") 87 - ''make ''${installTargets:-install} $installFlags'' 87 + "make \${installTargets:-install} $installFlags" 88 88 ++ lib.optionals (format == "crystal") (map 89 89 (bin: '' 90 90 install -Dm555 ${lib.escapeShellArgs [ bin "${placeholder "out"}/bin/${bin}" ]} 91 91 '') 92 92 (lib.attrNames crystalBinaries)) 93 93 ++ lib.optional (format == "shards") 94 - ''install -Dm555 bin/* -t $out/bin'' 94 + "install -Dm555 bin/* -t $out/bin" 95 95 ++ [ 96 96 '' 97 97 for f in README* *.md LICENSE; do ··· 111 111 checkPhase = args.checkPhase or (lib.concatStringsSep "\n" ([ 112 112 "runHook preCheck" 113 113 ] ++ lib.optional (format == "make") 114 - ''make ''${checkTarget:-test} $checkFlags'' 114 + "make \${checkTarget:-test} $checkFlags" 115 115 ++ lib.optional (format != "make") 116 - ''crystal ''${checkTarget:-spec} $checkFlags'' 116 + "crystal \${checkTarget:-spec} $checkFlags" 117 117 ++ [ "runHook postCheck" ])); 118 118 119 119 doInstallCheck = args.doInstallCheck or true;
+1 -1
pkgs/development/compilers/osl/default.nix
··· 19 19 20 20 cmakeFlags = [ "-DUSE_BOOST_WAVE=ON" "-DENABLERTTI=ON" ]; 21 21 22 - preConfigure = '' patchShebangs src/liboslexec/serialize-bc.bash ''; 22 + preConfigure = "patchShebangs src/liboslexec/serialize-bc.bash "; 23 23 24 24 nativeBuildInputs = [ cmake boost_static flex bison]; 25 25 buildInputs = [
+3 -4
pkgs/development/compilers/ponyc/default.nix
··· 87 87 88 88 NIX_CFLAGS_COMPILE = [ "-Wno-error=redundant-move" "-Wno-error=implicit-fallthrough" ]; 89 89 90 - installPhase = '' 91 - make config=release prefix=$out '' 92 - + lib.optionalString stdenv.isDarwin '' bits=64 '' 93 - + lib.optionalString (stdenv.isDarwin && (!lto)) '' lto=no '' 90 + installPhase = "make config=release prefix=$out " 91 + + lib.optionalString stdenv.isDarwin "bits=64 " 92 + + lib.optionalString (stdenv.isDarwin && (!lto)) "lto=no " 94 93 + '' install 95 94 96 95 wrapProgram $out/bin/ponyc \
+1 -1
pkgs/development/compilers/rust/rustc.nix
··· 117 117 postPatch = '' 118 118 patchShebangs src/etc 119 119 120 - ${optionalString (!withBundledLLVM) ''rm -rf src/llvm''} 120 + ${optionalString (!withBundledLLVM) "rm -rf src/llvm"} 121 121 122 122 # Fix the configure script to not require curl as we won't use it 123 123 sed -i configure \
+1 -1
pkgs/development/compilers/stalin/default.nix
··· 10 10 11 11 buildInputs = [ ncompress libX11 ]; 12 12 13 - buildPhase = '' ./build ''; 13 + buildPhase = "./build "; 14 14 15 15 installPhase = '' 16 16 mkdir -p "$out/bin"
+1 -1
pkgs/development/compilers/swift/default.nix
··· 321 321 ''; 322 322 323 323 # Hack to avoid build and install directories in RPATHs. 324 - preFixup = ''rm -rf $SWIFT_BUILD_ROOT $SWIFT_INSTALL_DIR''; 324 + preFixup = "rm -rf $SWIFT_BUILD_ROOT $SWIFT_INSTALL_DIR"; 325 325 326 326 meta = with lib; { 327 327 description = "The Swift Programming Language";
+1 -1
pkgs/development/haskell-modules/hackage-packages.nix
··· 99684 99684 sed -i "s|\"-s\"|\"\"|" ./Setup.hs 99685 99685 sed -i "s|numJobs (bf bi)++||" ./Setup.hs 99686 99686 ''; 99687 - preBuild = ''export LD_LIBRARY_PATH=`pwd`/dist/build''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH''; 99687 + preBuild = "export LD_LIBRARY_PATH=`pwd`/dist/build\${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"; 99688 99688 description = "Grammatical Framework"; 99689 99689 license = "unknown"; 99690 99690 hydraPlatforms = lib.platforms.none;
+2 -2
pkgs/development/haskell-modules/hoogle.nix
··· 38 38 else "haddock-ghcjs"; 39 39 ghcDocLibDir = 40 40 if !isGhcjs 41 - then ghc.doc + ''/share/doc/ghc*/html/libraries'' 42 - else ghc + ''/doc/lib''; 41 + then ghc.doc + "/share/doc/ghc*/html/libraries" 42 + else ghc + "/doc/lib"; 43 43 # On GHCJS, use a stripped down version of GHC's prologue.txt 44 44 prologue = 45 45 if !isGhcjs
+1 -1
pkgs/development/interpreters/lua-5/build-lua-package.nix
··· 207 207 208 208 postFixup = lib.optionalString (!dontWrapLuaPrograms) '' 209 209 wrapLuaPrograms 210 - '' + attrs.postFixup or ''''; 210 + '' + attrs.postFixup or ""; 211 211 212 212 installPhase = attrs.installPhase or '' 213 213 runHook preInstall
+1 -1
pkgs/development/interpreters/python/mk-python-derivation.nix
··· 162 162 163 163 postFixup = lib.optionalString (!dontWrapPythonPrograms) '' 164 164 wrapPythonPrograms 165 - '' + attrs.postFixup or ''''; 165 + '' + attrs.postFixup or ""; 166 166 167 167 # Python packages built through cross-compilation are always for the host platform. 168 168 disallowedReferences = lib.optionals (python.stdenv.hostPlatform != python.stdenv.buildPlatform) [ python.pythonForBuild ];
+1 -1
pkgs/development/interpreters/quickjs/default.nix
··· 9 9 sha256 = "13hlx6qwrrxmlvvqcr3irxba6zmf05cf54l32vj50wc66s1qd41p"; 10 10 }; 11 11 12 - makeFlags = [ "prefix=${placeholder ''out''}" ]; 12 + makeFlags = [ "prefix=${placeholder "out"}" ]; 13 13 enableParallelBuilding = true; 14 14 15 15 doInstallCheck = true;
+1 -1
pkgs/development/libraries/aravis/default.nix
··· 58 58 ++ lib.optionals (enableViewer || enableGstPlugin) [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ] 59 59 ++ lib.optionals (enableViewer) [ libnotify gtk3 gnome3.adwaita-icon-theme ]; 60 60 61 - preAutoreconf = ''./autogen.sh''; 61 + preAutoreconf = "./autogen.sh"; 62 62 63 63 configureFlags = 64 64 lib.optional enableUsb "--enable-usb"
+1 -1
pkgs/development/libraries/aws-sdk-cpp/default.nix
··· 54 54 postFixupHooks = [ 55 55 # This bodge is necessary so that the file that the generated -config.cmake file 56 56 # points to an existing directory. 57 - ''mkdir -p $out/include'' 57 + "mkdir -p $out/include" 58 58 ]; 59 59 60 60 __darwinAllowLocalNetworking = true;
+1 -1
pkgs/development/libraries/capstone/default.nix
··· 14 14 sed -i 's/^IS_APPLE := .*$/IS_APPLE := 1/' Makefile 15 15 ''; 16 16 17 - configurePhase = '' patchShebangs make.sh ''; 17 + configurePhase = "patchShebangs make.sh "; 18 18 buildPhase = "PREFIX=$out ./make.sh"; 19 19 20 20 doCheck = true;
+5 -5
pkgs/development/libraries/dbus/default.nix
··· 79 79 configureFlags = [ 80 80 "--enable-user-session" 81 81 "--enable-xml-docs" 82 - "--libexecdir=${placeholder ''out''}/libexec" 82 + "--libexecdir=${placeholder "out"}/libexec" 83 83 "--datadir=/etc" 84 84 "--localstatedir=/var" 85 85 "--runstatedir=/run" ··· 87 87 "--with-session-socket-dir=/tmp" 88 88 "--with-system-pid-file=/run/dbus/pid" 89 89 "--with-system-socket=/run/dbus/system_bus_socket" 90 - "--with-systemdsystemunitdir=${placeholder ''out''}/etc/systemd/system" 91 - "--with-systemduserunitdir=${placeholder ''out''}/etc/systemd/user" 90 + "--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system" 91 + "--with-systemduserunitdir=${placeholder "out"}/etc/systemd/user" 92 92 ] ++ lib.optional (!x11Support) "--without-x" 93 93 ++ lib.optionals (!stdenv.isDarwin) [ "--enable-apparmor" "--enable-libaudit" ]; 94 94 ··· 103 103 doCheck = true; 104 104 105 105 installFlags = [ 106 - "sysconfdir=${placeholder ''out''}/etc" 107 - "datadir=${placeholder ''out''}/share" 106 + "sysconfdir=${placeholder "out"}/etc" 107 + "datadir=${placeholder "out"}/share" 108 108 ]; 109 109 110 110 # it's executed from $lib by absolute path
+1 -1
pkgs/development/libraries/ffmpeg/generic.nix
··· 77 77 inherit sha256; 78 78 }; 79 79 80 - postPatch = ''patchShebangs .''; 80 + postPatch = "patchShebangs ."; 81 81 inherit patches; 82 82 83 83 outputs = [ "bin" "dev" "out" "man" ]
+2 -4
pkgs/development/libraries/gaia/default.nix
··· 31 31 }; 32 32 33 33 # Fix installation error when waf tries to put files in /etc/ 34 - prePatch = '' 35 - '' + lib.optionalString cyclopsSupport '' 34 + prePatch = "" + lib.optionalString cyclopsSupport '' 36 35 substituteInPlace src/wscript \ 37 36 --replace "/etc/cyclops" "$out/etc/cyclops" \ 38 37 --replace "/etc/init.d" "$out/etc/init.d" ··· 72 71 ++ lib.optionals (cyclopsSupport) [ "--with-cyclops" ] 73 72 ; 74 73 75 - postFixup = '' 76 - '' 74 + postFixup = "" 77 75 + lib.optionalString pythonSupport '' 78 76 wrapPythonPrograms 79 77 ''
+1 -1
pkgs/development/libraries/gcab/default.nix
··· 57 57 58 58 mesonFlags = [ 59 59 "-Dinstalled_tests=true" 60 - "-Dinstalled_test_prefix=${placeholder ''installedTests''}" 60 + "-Dinstalled_test_prefix=${placeholder "installedTests"}" 61 61 ]; 62 62 63 63 doCheck = true;
+1 -1
pkgs/development/libraries/glib/default.nix
··· 110 110 # Instead we just copy them over from the native output. 111 111 "-Dgtk_doc=${boolToString (stdenv.hostPlatform == stdenv.buildPlatform)}" 112 112 "-Dnls=enabled" 113 - "-Ddevbindir=${placeholder ''dev''}/bin" 113 + "-Ddevbindir=${placeholder "dev"}/bin" 114 114 ]; 115 115 116 116 NIX_CFLAGS_COMPILE = toString [
+1 -1
pkgs/development/libraries/glui/default.nix
··· 32 32 ''; 33 33 34 34 meta = with lib; { 35 - description = ''A user interface library using OpenGL''; 35 + description = "A user interface library using OpenGL"; 36 36 license = licenses.zlib ; 37 37 maintainers = [ maintainers.raskin ]; 38 38 platforms = platforms.linux;
+1 -1
pkgs/development/libraries/gtdialog/default.nix
··· 23 23 makeFlags = ["PREFIX=$(out)"]; 24 24 meta = { 25 25 inherit (s) version; 26 - description = ''Cross-platform helper for creating interactive dialogs''; 26 + description = "Cross-platform helper for creating interactive dialogs"; 27 27 license = lib.licenses.mit ; 28 28 maintainers = [lib.maintainers.raskin]; 29 29 platforms = lib.platforms.linux;
+1 -1
pkgs/development/libraries/hspell/default.nix
··· 15 15 sha256 = "08x7rigq5pa1pfpl30qp353hbdkpadr1zc49slpczhsn0sg36pd6"; 16 16 }; 17 17 18 - patchPhase = ''patchShebangs .''; 18 + patchPhase = "patchShebangs ."; 19 19 buildInputs = [ perl zlib ]; 20 20 21 21 meta = with lib; {
+1 -1
pkgs/development/libraries/iml/default.nix
··· 20 20 ]; 21 21 meta = { 22 22 inherit version; 23 - description = ''Algorithms for computing exact solutions to dense systems of linear equations over the integers''; 23 + description = "Algorithms for computing exact solutions to dense systems of linear equations over the integers"; 24 24 license = lib.licenses.gpl2Plus; 25 25 maintainers = [lib.maintainers.raskin]; 26 26 platforms = lib.platforms.unix;
+1 -1
pkgs/development/libraries/java/dbus-java/default.nix
··· 9 9 }; 10 10 JAVA_HOME=jdk; 11 11 JAVA="${jdk}/bin/java"; 12 - PREFIX=''''${out}''; 12 + PREFIX="\${out}"; 13 13 JAVAUNIXLIBDIR="${libmatthew_java}/lib/jni"; 14 14 JAVAUNIXJARDIR="${libmatthew_java}/share/java"; 15 15 buildInputs = [ gettext jdk ];
+1 -1
pkgs/development/libraries/java/libmatthew-java/default.nix
··· 7 7 sha256 = "1yldkhsdzm0a41a0i881bin2jklhp85y3ah245jd6fz3npcx7l85"; 8 8 }; 9 9 JAVA_HOME=jdk; 10 - PREFIX=''''${out}''; 10 + PREFIX="\${out}"; 11 11 buildInputs = [ jdk ]; 12 12 13 13 meta = with lib; {
+1 -1
pkgs/development/libraries/libatomic_ops/default.nix
··· 22 22 ''; 23 23 24 24 meta = { 25 - description = ''A library for semi-portable access to hardware-provided atomic memory update operations''; 25 + description = "A library for semi-portable access to hardware-provided atomic memory update operations"; 26 26 license = lib.licenses.gpl2Plus ; 27 27 maintainers = [lib.maintainers.raskin]; 28 28 platforms = with lib.platforms; unix ++ windows;
+1 -1
pkgs/development/libraries/libe-book/default.nix
··· 33 33 NIX_CFLAGS_COMPILE = "-Wno-error=unused-function"; 34 34 meta = { 35 35 inherit (s) version; 36 - description = ''Library for import of reflowable e-book formats''; 36 + description = "Library for import of reflowable e-book formats"; 37 37 license = lib.licenses.lgpl21Plus ; 38 38 maintainers = [lib.maintainers.raskin]; 39 39 platforms = lib.platforms.unix;
+1 -1
pkgs/development/libraries/liblangtag/default.nix
··· 32 32 ''; 33 33 34 34 configureFlags = [ 35 - ''--with-locale-alias=${stdenv.cc.libc}/share/locale/locale.alias'' 35 + "--with-locale-alias=${stdenv.cc.libc}/share/locale/locale.alias" 36 36 ]; 37 37 38 38 buildInputs = [ gettext glib libxml2 gobject-introspection gnome-common
+1 -1
pkgs/development/libraries/libmwaw/default.nix
··· 23 23 }; 24 24 meta = { 25 25 inherit (s) version; 26 - description = ''Import library for some old mac text documents''; 26 + description = "Import library for some old mac text documents"; 27 27 license = lib.licenses.mpl20 ; 28 28 maintainers = [lib.maintainers.raskin]; 29 29 platforms = lib.platforms.unix;
+1 -1
pkgs/development/libraries/libodfgen/default.nix
··· 22 22 }; 23 23 meta = { 24 24 inherit (s) version; 25 - description = ''A base library for generating ODF documents''; 25 + description = "A base library for generating ODF documents"; 26 26 license = lib.licenses.mpl20 ; 27 27 maintainers = [lib.maintainers.raskin]; 28 28 platforms = lib.platforms.unix;
+1 -1
pkgs/development/libraries/librem/default.nix
··· 10 10 makeFlags = [ 11 11 "LIBRE_MK=${libre}/share/re/re.mk" 12 12 "LIBRE_INC=${libre}/include/re" 13 - ''PREFIX=$(out)'' 13 + "PREFIX=$(out)" 14 14 ] 15 15 ++ lib.optional (stdenv.cc.cc != null) "SYSROOT_ALT=${lib.getDev stdenv.cc.cc}" 16 16 ++ lib.optional (stdenv.cc.libc != null) "SYSROOT=${lib.getDev stdenv.cc.libc}"
+1 -1
pkgs/development/libraries/librevenge/default.nix
··· 34 34 35 35 meta = { 36 36 inherit (s) version; 37 - description = ''A base library for writing document import filters''; 37 + description = "A base library for writing document import filters"; 38 38 license = lib.licenses.mpl20 ; 39 39 maintainers = [lib.maintainers.raskin]; 40 40 platforms = lib.platforms.unix;
+1 -1
pkgs/development/libraries/libvpx/1_8.nix
··· 69 69 # ./CVE-2019-9232.CVE-2019-9325.CVE-2019-9371.CVE-2019-9433.patch 70 70 ]; 71 71 72 - postPatch = ''patchShebangs .''; 72 + postPatch = "patchShebangs ."; 73 73 74 74 outputs = [ "bin" "dev" "out" ]; 75 75 setOutputFlags = false;
+1 -1
pkgs/development/libraries/libxml2/default.nix
··· 89 89 preInstall = lib.optionalString pythonSupport 90 90 ''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"''; 91 91 installFlags = lib.optional pythonSupport 92 - "pythondir=\"${placeholder ''py''}/lib/${python.libPrefix}/site-packages\""; 92 + "pythondir=\"${placeholder "py"}/lib/${python.libPrefix}/site-packages\""; 93 93 94 94 postFixup = '' 95 95 moveToOutput bin/xml2-config "$dev"
+1 -1
pkgs/development/libraries/libzmf/default.nix
··· 15 15 16 16 meta = { 17 17 inherit version; 18 - description = ''A library that parses the file format of Zoner Callisto/Draw documents''; 18 + description = "A library that parses the file format of Zoner Callisto/Draw documents"; 19 19 license = lib.licenses.mpl20; 20 20 maintainers = [lib.maintainers.raskin]; 21 21 platforms = lib.platforms.unix;
+1 -1
pkgs/development/libraries/mpfi/default.nix
··· 13 13 buildInputs = [mpfr]; 14 14 meta = { 15 15 inherit version; 16 - description = ''A multiple precision interval arithmetic library based on MPFR''; 16 + description = "A multiple precision interval arithmetic library based on MPFR"; 17 17 homepage = "https://gforge.inria.fr/projects/mpfi/"; 18 18 license = lib.licenses.lgpl21Plus; 19 19 maintainers = [lib.maintainers.raskin];
+1 -1
pkgs/development/libraries/mpir/default.nix
··· 15 15 16 16 meta = { 17 17 inherit version; 18 - description = ''A highly optimised library for bignum arithmetic forked from GMP''; 18 + description = "A highly optimised library for bignum arithmetic forked from GMP"; 19 19 license = lib.licenses.lgpl3Plus; 20 20 maintainers = [lib.maintainers.raskin]; 21 21 platforms = lib.platforms.unix;
+1 -1
pkgs/development/libraries/msgpuck/default.nix
··· 16 16 nativeBuildInputs = [ cmake pkg-config ]; 17 17 18 18 meta = with lib; { 19 - description = ''A simple and efficient MsgPack binary serialization library in a self-contained header file''; 19 + description = "A simple and efficient MsgPack binary serialization library in a self-contained header file"; 20 20 homepage = "https://github.com/rtsisyk/msgpuck"; 21 21 license = licenses.bsd2; 22 22 platforms = platforms.linux;
+1 -1
pkgs/development/libraries/openpa/default.nix
··· 9 9 sha256 = "0flyi596hm6fv7xyw2iykx3s65p748s62bf15624xcnwpfrh8ncy"; 10 10 }; 11 11 12 - prePatch = ''substituteInPlace configure --replace /usr/bin/file ${file}/bin/file''; 12 + prePatch = "substituteInPlace configure --replace /usr/bin/file ${file}/bin/file"; 13 13 14 14 doCheck = true; 15 15
+1 -1
pkgs/development/libraries/qca-qt5/default.nix
··· 17 17 patches = lib.optional stdenv.isDarwin ./move-project.patch ; 18 18 19 19 # tells CMake to use this CA bundle file if it is accessible 20 - preConfigure = ''export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt''; 20 + preConfigure = "export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt"; 21 21 22 22 # tricks CMake into using this CA bundle file if it is not accessible (in a sandbox) 23 23 cmakeFlags = [ "-Dqca_CERTSTORE=/etc/ssl/certs/ca-certificates.crt" ];
+18 -18
pkgs/development/libraries/science/math/caffe2/default.nix
··· 90 90 ./fix_compilation_on_gcc7.patch 91 91 ] ++ lib.optional stdenv.cc.isClang [ ./update_clang_cvtsh_bugfix.patch ]; 92 92 93 - cmakeFlags = [ ''-DBUILD_TEST=OFF'' 94 - ''-DBUILD_PYTHON=ON'' 95 - ''-DUSE_CUDA=${if useCuda then ''ON''else ''OFF''}'' 96 - ''-DUSE_OPENMP=${if useOpenmp then ''ON''else ''OFF''}'' 97 - ''-DUSE_OPENCV=${if useOpencv3 then ''ON''else ''OFF''}'' 98 - ''-DUSE_MPI=${if useMpi then ''ON''else ''OFF''}'' 99 - ''-DUSE_LEVELDB=${if useLeveldb then ''ON''else ''OFF''}'' 100 - ''-DUSE_LMDB=${if useLmdb then ''ON''else ''OFF''}'' 101 - ''-DUSE_ROCKSDB=${if useRocksdb then ''ON''else ''OFF''}'' 102 - ''-DUSE_ZMQ=${if useZeromq then ''ON''else ''OFF''}'' 103 - ''-DUSE_GLOO=OFF'' 104 - ''-DUSE_NNPACK=OFF'' 105 - ''-DUSE_NCCL=OFF'' 106 - ''-DUSE_REDIS=OFF'' 107 - ''-DUSE_FFMPEG=OFF'' 93 + cmakeFlags = [ "-DBUILD_TEST=OFF" 94 + "-DBUILD_PYTHON=ON" 95 + ''-DUSE_CUDA=${if useCuda then "ON"else "OFF"}'' 96 + ''-DUSE_OPENMP=${if useOpenmp then "ON"else "OFF"}'' 97 + ''-DUSE_OPENCV=${if useOpencv3 then "ON"else "OFF"}'' 98 + ''-DUSE_MPI=${if useMpi then "ON"else "OFF"}'' 99 + ''-DUSE_LEVELDB=${if useLeveldb then "ON"else "OFF"}'' 100 + ''-DUSE_LMDB=${if useLmdb then "ON"else "OFF"}'' 101 + ''-DUSE_ROCKSDB=${if useRocksdb then "ON"else "OFF"}'' 102 + ''-DUSE_ZMQ=${if useZeromq then "ON"else "OFF"}'' 103 + "-DUSE_GLOO=OFF" 104 + "-DUSE_NNPACK=OFF" 105 + "-DUSE_NCCL=OFF" 106 + "-DUSE_REDIS=OFF" 107 + "-DUSE_FFMPEG=OFF" 108 108 ] 109 109 ++ lib.optional useCuda [ 110 - ''-DCUDA_TOOLKIT_ROOT_DIR=${cudatoolkit}'' 111 - ''-DCUDA_FAST_MATH=ON'' 112 - ''-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/gcc'' 110 + "-DCUDA_TOOLKIT_ROOT_DIR=${cudatoolkit}" 111 + "-DCUDA_FAST_MATH=ON" 112 + "-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/gcc" 113 113 ]; 114 114 115 115 preConfigure = ''
+1 -1
pkgs/development/libraries/speechd/default.nix
··· 88 88 configureFlags = [ 89 89 # Audio method falls back from left to right. 90 90 "--with-default-audio-method=\"libao,pulse,alsa,oss\"" 91 - "--with-systemdsystemunitdir=${placeholder ''out''}/lib/systemd/system" 91 + "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system" 92 92 ] ++ optional withPulse "--with-pulse" 93 93 ++ optional withAlsa "--with-alsa" 94 94 ++ optional withLibao "--with-libao"
+4 -4
pkgs/development/lisp-modules/lisp-packages.nix
··· 27 27 url = "https://beta.quicklisp.org/dist/quicklisp/2020-10-16/distinfo.txt"; 28 28 sha256 = "sha256:090xjcnyqcv8az9n1a7m0f6vzz2nwcncy95ha7ixb7fnd2rj1n65"; 29 29 }; 30 - buildPhase = '' true; ''; 30 + buildPhase = "true; "; 31 31 postInstall = '' 32 32 substituteAll ${./quicklisp.sh} "$out"/bin/quicklisp 33 33 chmod a+x "$out"/bin/quicklisp ··· 80 80 81 81 clx-truetype = buildLispPackage rec { 82 82 baseName = "clx-truetype"; 83 - version = ''20160825-git''; 83 + version = "20160825-git"; 84 84 85 85 buildSystems = [ "clx-truetype" ]; 86 86 parasites = [ "clx-truetype-test" ]; ··· 91 91 cl-vectors clx trivial-features zpb-ttf 92 92 ]; 93 93 src = pkgs.fetchurl { 94 - url = ''http://beta.quicklisp.org/archive/clx-truetype/2016-08-25/clx-truetype-20160825-git.tgz''; 95 - sha256 = ''0ndy067rg9w6636gxwlpnw7f3ck9nrnjb03444pprik9r3c9in67''; 94 + url = "http://beta.quicklisp.org/archive/clx-truetype/2016-08-25/clx-truetype-20160825-git.tgz"; 95 + sha256 = "0ndy067rg9w6636gxwlpnw7f3ck9nrnjb03444pprik9r3c9in67"; 96 96 }; 97 97 98 98 packageName = "clx-truetype";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/_3bmd-ext-code-blocks.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''_3bmd-ext-code-blocks''; 4 - version = ''3bmd-20200925-git''; 3 + baseName = "_3bmd-ext-code-blocks"; 4 + version = "3bmd-20200925-git"; 5 5 6 - description = ''extension to 3bmd implementing github style ``` delimited code blocks, with support for syntax highlighting using colorize, pygments, or chroma''; 6 + description = "extension to 3bmd implementing github style ``` delimited code blocks, with support for syntax highlighting using colorize, pygments, or chroma"; 7 7 8 8 deps = [ args."_3bmd" args."alexandria" args."colorize" args."esrap" args."html-encode" args."split-sequence" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/3bmd/2020-09-25/3bmd-20200925-git.tgz''; 12 - sha256 = ''0sk4b0xma4vv6ssiskbz7h5bw8v8glm34mbv3llqywb50b9ks4fw''; 11 + url = "http://beta.quicklisp.org/archive/3bmd/2020-09-25/3bmd-20200925-git.tgz"; 12 + sha256 = "0sk4b0xma4vv6ssiskbz7h5bw8v8glm34mbv3llqywb50b9ks4fw"; 13 13 }; 14 14 15 15 packageName = "3bmd-ext-code-blocks";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/_3bmd.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''_3bmd''; 4 - version = ''20200925-git''; 3 + baseName = "_3bmd"; 4 + version = "20200925-git"; 5 5 6 - description = ''markdown processor in CL using esrap parser.''; 6 + description = "markdown processor in CL using esrap parser."; 7 7 8 8 deps = [ args."alexandria" args."esrap" args."split-sequence" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/3bmd/2020-09-25/3bmd-20200925-git.tgz''; 12 - sha256 = ''0sk4b0xma4vv6ssiskbz7h5bw8v8glm34mbv3llqywb50b9ks4fw''; 11 + url = "http://beta.quicklisp.org/archive/3bmd/2020-09-25/3bmd-20200925-git.tgz"; 12 + sha256 = "0sk4b0xma4vv6ssiskbz7h5bw8v8glm34mbv3llqywb50b9ks4fw"; 13 13 }; 14 14 15 15 packageName = "3bmd";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/access.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''access''; 4 - version = ''20151218-git''; 3 + baseName = "access"; 4 + version = "20151218-git"; 5 5 6 6 parasites = [ "access-test" ]; 7 7 ··· 11 11 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 12 13 13 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/access/2015-12-18/access-20151218-git.tgz''; 15 - sha256 = ''0f4257cxd1rpp46wm2qbnk0ynlc3dli9ib4qbn45hglh8zy7snfl''; 14 + url = "http://beta.quicklisp.org/archive/access/2015-12-18/access-20151218-git.tgz"; 15 + sha256 = "0f4257cxd1rpp46wm2qbnk0ynlc3dli9ib4qbn45hglh8zy7snfl"; 16 16 }; 17 17 18 18 packageName = "access";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/acclimation.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''acclimation''; 4 - version = ''20200925-git''; 3 + baseName = "acclimation"; 4 + version = "20200925-git"; 5 5 6 - description = ''Library supporting internationalization''; 6 + description = "Library supporting internationalization"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/acclimation/2020-09-25/acclimation-20200925-git.tgz''; 12 - sha256 = ''11vw1h5zxicj5qxb1smiyjxafw8xk0isnzcf5g0lqis3y9ssqxbw''; 11 + url = "http://beta.quicklisp.org/archive/acclimation/2020-09-25/acclimation-20200925-git.tgz"; 12 + sha256 = "11vw1h5zxicj5qxb1smiyjxafw8xk0isnzcf5g0lqis3y9ssqxbw"; 13 13 }; 14 14 15 15 packageName = "acclimation";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/alexandria.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''alexandria''; 4 - version = ''20200925-git''; 3 + baseName = "alexandria"; 4 + version = "20200925-git"; 5 5 6 - description = ''Alexandria is a collection of portable public domain utilities.''; 6 + description = "Alexandria is a collection of portable public domain utilities."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/alexandria/2020-09-25/alexandria-20200925-git.tgz''; 12 - sha256 = ''1cpvnzfs807ah07hrk8kplim6ryzqs4r35ym03cpky5xdl8c89fl''; 11 + url = "http://beta.quicklisp.org/archive/alexandria/2020-09-25/alexandria-20200925-git.tgz"; 12 + sha256 = "1cpvnzfs807ah07hrk8kplim6ryzqs4r35ym03cpky5xdl8c89fl"; 13 13 }; 14 14 15 15 packageName = "alexandria";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/anaphora.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''anaphora''; 4 - version = ''20191007-git''; 3 + baseName = "anaphora"; 4 + version = "20191007-git"; 5 5 6 6 parasites = [ "anaphora/test" ]; 7 7 8 - description = ''The Anaphoric Macro Package from Hell''; 8 + description = "The Anaphoric Macro Package from Hell"; 9 9 10 10 deps = [ args."rt" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/anaphora/2019-10-07/anaphora-20191007-git.tgz''; 14 - sha256 = ''0iwfddh3cycjr9vhjnr1ldd5xc3qwqhrp41904s1dvysf99277kv''; 13 + url = "http://beta.quicklisp.org/archive/anaphora/2019-10-07/anaphora-20191007-git.tgz"; 14 + sha256 = "0iwfddh3cycjr9vhjnr1ldd5xc3qwqhrp41904s1dvysf99277kv"; 15 15 }; 16 16 17 17 packageName = "anaphora";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/arnesi.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''arnesi''; 4 - version = ''20170403-git''; 3 + baseName = "arnesi"; 4 + version = "20170403-git"; 5 5 6 6 parasites = [ "arnesi/cl-ppcre-extras" "arnesi/slime-extras" ]; 7 7 8 - description = ''A bag-of-tools utilities library used to aid in implementing the bese.it toolkit''; 8 + description = "A bag-of-tools utilities library used to aid in implementing the bese.it toolkit"; 9 9 10 10 deps = [ args."alexandria" args."cl-ppcre" args."closer-mop" args."collectors" args."iterate" args."swank" args."symbol-munger" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/arnesi/2017-04-03/arnesi-20170403-git.tgz''; 14 - sha256 = ''01kirjpgv5pgbcdxjrnw3ld4jw7wrqm3rgqnxwac4gxaphr2s6q4''; 13 + url = "http://beta.quicklisp.org/archive/arnesi/2017-04-03/arnesi-20170403-git.tgz"; 14 + sha256 = "01kirjpgv5pgbcdxjrnw3ld4jw7wrqm3rgqnxwac4gxaphr2s6q4"; 15 15 }; 16 16 17 17 packageName = "arnesi";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/array-utils.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''array-utils''; 4 - version = ''20190710-git''; 3 + baseName = "array-utils"; 4 + version = "20190710-git"; 5 5 6 - description = ''A few utilities for working with arrays.''; 6 + description = "A few utilities for working with arrays."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/array-utils/2019-07-10/array-utils-20190710-git.tgz''; 12 - sha256 = ''1fzsg3lqa79yrkad6fx924vai7i6m92i2rq8lyq37wrbwkhm7grh''; 11 + url = "http://beta.quicklisp.org/archive/array-utils/2019-07-10/array-utils-20190710-git.tgz"; 12 + sha256 = "1fzsg3lqa79yrkad6fx924vai7i6m92i2rq8lyq37wrbwkhm7grh"; 13 13 }; 14 14 15 15 packageName = "array-utils";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/asdf-package-system.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''asdf-package-system''; 4 - version = ''20150608-git''; 3 + baseName = "asdf-package-system"; 4 + version = "20150608-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/asdf-package-system/2015-06-08/asdf-package-system-20150608-git.tgz''; 12 - sha256 = ''17lfwfc15hcag8a2jsaxkx42wmz2mwkvxf6vb2h9cim7dwsnyy29''; 11 + url = "http://beta.quicklisp.org/archive/asdf-package-system/2015-06-08/asdf-package-system-20150608-git.tgz"; 12 + sha256 = "17lfwfc15hcag8a2jsaxkx42wmz2mwkvxf6vb2h9cim7dwsnyy29"; 13 13 }; 14 14 15 15 packageName = "asdf-package-system";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/asdf-system-connections.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''asdf-system-connections''; 4 - version = ''20170124-git''; 3 + baseName = "asdf-system-connections"; 4 + version = "20170124-git"; 5 5 6 - description = ''Allows for ASDF system to be connected so that auto-loading may occur.''; 6 + description = "Allows for ASDF system to be connected so that auto-loading may occur."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/asdf-system-connections/2017-01-24/asdf-system-connections-20170124-git.tgz''; 12 - sha256 = ''0h8237bq3niw6glcsps77n1ykcmc5bjkcrbjyxjgkmcb1c5kwwpq''; 11 + url = "http://beta.quicklisp.org/archive/asdf-system-connections/2017-01-24/asdf-system-connections-20170124-git.tgz"; 12 + sha256 = "0h8237bq3niw6glcsps77n1ykcmc5bjkcrbjyxjgkmcb1c5kwwpq"; 13 13 }; 14 14 15 15 packageName = "asdf-system-connections";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/babel.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''babel''; 4 - version = ''20200925-git''; 3 + baseName = "babel"; 4 + version = "20200925-git"; 5 5 6 - description = ''Babel, a charset conversion library.''; 6 + description = "Babel, a charset conversion library."; 7 7 8 8 deps = [ args."alexandria" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/babel/2020-09-25/babel-20200925-git.tgz''; 12 - sha256 = ''1hpjm2whw7zla9igzj50y3nibii0mfg2a6y6nslaf5vpkni88jfi''; 11 + url = "http://beta.quicklisp.org/archive/babel/2020-09-25/babel-20200925-git.tgz"; 12 + sha256 = "1hpjm2whw7zla9igzj50y3nibii0mfg2a6y6nslaf5vpkni88jfi"; 13 13 }; 14 14 15 15 packageName = "babel";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/blackbird.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''blackbird''; 4 - version = ''20160531-git''; 3 + baseName = "blackbird"; 4 + version = "20160531-git"; 5 5 6 - description = ''A promise implementation for Common Lisp.''; 6 + description = "A promise implementation for Common Lisp."; 7 7 8 8 deps = [ args."vom" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/blackbird/2016-05-31/blackbird-20160531-git.tgz''; 12 - sha256 = ''0l053fb5fdz1q6dyfgys6nmbairc3aig4wjl5abpf8b1paf7gzq9''; 11 + url = "http://beta.quicklisp.org/archive/blackbird/2016-05-31/blackbird-20160531-git.tgz"; 12 + sha256 = "0l053fb5fdz1q6dyfgys6nmbairc3aig4wjl5abpf8b1paf7gzq9"; 13 13 }; 14 14 15 15 packageName = "blackbird";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/bordeaux-threads.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''bordeaux-threads''; 4 - version = ''v0.8.8''; 3 + baseName = "bordeaux-threads"; 4 + version = "v0.8.8"; 5 5 6 6 parasites = [ "bordeaux-threads/test" ]; 7 7 8 - description = ''Bordeaux Threads makes writing portable multi-threaded apps simple.''; 8 + description = "Bordeaux Threads makes writing portable multi-threaded apps simple."; 9 9 10 10 deps = [ args."alexandria" args."fiveam" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/bordeaux-threads/2020-06-10/bordeaux-threads-v0.8.8.tgz''; 14 - sha256 = ''1ppb7lvr796k1j4hi0jnp717v9zxy6vq4f5cyzgn7svg1ic6l0pp''; 13 + url = "http://beta.quicklisp.org/archive/bordeaux-threads/2020-06-10/bordeaux-threads-v0.8.8.tgz"; 14 + sha256 = "1ppb7lvr796k1j4hi0jnp717v9zxy6vq4f5cyzgn7svg1ic6l0pp"; 15 15 }; 16 16 17 17 packageName = "bordeaux-threads";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/buildnode-xhtml.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''buildnode-xhtml''; 4 - version = ''buildnode-20170403-git''; 3 + baseName = "buildnode-xhtml"; 4 + version = "buildnode-20170403-git"; 5 5 6 - description = ''Tool for building up an xml dom of an excel spreadsheet nicely.''; 6 + description = "Tool for building up an xml dom of an excel spreadsheet nicely."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz''; 12 - sha256 = ''1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6''; 11 + url = "http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz"; 12 + sha256 = "1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6"; 13 13 }; 14 14 15 15 packageName = "buildnode-xhtml";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/buildnode.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''buildnode''; 4 - version = ''20170403-git''; 3 + baseName = "buildnode"; 4 + version = "20170403-git"; 5 5 6 6 parasites = [ "buildnode-test" ]; 7 7 8 - description = ''Tool for building up an xml dom nicely.''; 8 + description = "Tool for building up an xml dom nicely."; 9 9 10 10 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz''; 14 - sha256 = ''1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6''; 13 + url = "http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz"; 14 + sha256 = "1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6"; 15 15 }; 16 16 17 17 packageName = "buildnode";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/caveman.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''caveman''; 4 - version = ''20200325-git''; 3 + baseName = "caveman"; 4 + version = "20200325-git"; 5 5 6 - description = ''Web Application Framework for Common Lisp''; 6 + description = "Web Application Framework for Common Lisp"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/caveman/2020-03-25/caveman-20200325-git.tgz''; 12 - sha256 = ''0s134lamlyll4ad0380rj0hkiy9gakly7cb6sjr1yg2yd6ydz1py''; 11 + url = "http://beta.quicklisp.org/archive/caveman/2020-03-25/caveman-20200325-git.tgz"; 12 + sha256 = "0s134lamlyll4ad0380rj0hkiy9gakly7cb6sjr1yg2yd6ydz1py"; 13 13 }; 14 14 15 15 packageName = "caveman";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-grovel.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cffi-grovel''; 4 - version = ''cffi_0.23.0''; 3 + baseName = "cffi-grovel"; 4 + version = "cffi_0.23.0"; 5 5 6 - description = ''The CFFI Groveller''; 6 + description = "The CFFI Groveller"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-toolchain" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz''; 12 - sha256 = ''1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck''; 11 + url = "http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz"; 12 + sha256 = "1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck"; 13 13 }; 14 14 15 15 packageName = "cffi-grovel";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-toolchain.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cffi-toolchain''; 4 - version = ''cffi_0.23.0''; 3 + baseName = "cffi-toolchain"; 4 + version = "cffi_0.23.0"; 5 5 6 - description = ''The CFFI toolchain''; 6 + description = "The CFFI toolchain"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz''; 12 - sha256 = ''1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck''; 11 + url = "http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz"; 12 + sha256 = "1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck"; 13 13 }; 14 14 15 15 packageName = "cffi-toolchain";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cffi''; 4 - version = ''cffi_0.23.0''; 3 + baseName = "cffi"; 4 + version = "cffi_0.23.0"; 5 5 6 6 parasites = [ "cffi/c2ffi" "cffi/c2ffi-generator" ]; 7 7 8 - description = ''The Common Foreign Function Interface''; 8 + description = "The Common Foreign Function Interface"; 9 9 10 10 deps = [ args."alexandria" args."babel" args."cl-json" args."cl-ppcre" args."trivial-features" args."uiop" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz''; 14 - sha256 = ''1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck''; 13 + url = "http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz"; 14 + sha256 = "1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck"; 15 15 }; 16 16 17 17 packageName = "cffi";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/chanl.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''chanl''; 4 - version = ''20201016-git''; 3 + baseName = "chanl"; 4 + version = "20201016-git"; 5 5 6 6 parasites = [ "chanl/examples" "chanl/tests" ]; 7 7 8 - description = ''Communicating Sequential Process support for Common Lisp''; 8 + description = "Communicating Sequential Process support for Common Lisp"; 9 9 10 10 deps = [ args."alexandria" args."bordeaux-threads" args."fiveam" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/chanl/2020-10-16/chanl-20201016-git.tgz''; 14 - sha256 = ''13kmk6q20kkwy8z3fy0sv57076xf5nls3qx31yp47vaxhn9p11a1''; 13 + url = "http://beta.quicklisp.org/archive/chanl/2020-10-16/chanl-20201016-git.tgz"; 14 + sha256 = "13kmk6q20kkwy8z3fy0sv57076xf5nls3qx31yp47vaxhn9p11a1"; 15 15 }; 16 16 17 17 packageName = "chanl";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/chipz.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''chipz''; 4 - version = ''20190202-git''; 3 + baseName = "chipz"; 4 + version = "20190202-git"; 5 5 6 - description = ''A library for decompressing deflate, zlib, and gzip data''; 6 + description = "A library for decompressing deflate, zlib, and gzip data"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/chipz/2019-02-02/chipz-20190202-git.tgz''; 12 - sha256 = ''1vk8nml2kvkpwydcnm49gz2j9flvl8676kbvci5qa7qm286dhn5a''; 11 + url = "http://beta.quicklisp.org/archive/chipz/2019-02-02/chipz-20190202-git.tgz"; 12 + sha256 = "1vk8nml2kvkpwydcnm49gz2j9flvl8676kbvci5qa7qm286dhn5a"; 13 13 }; 14 14 15 15 packageName = "chipz";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/chunga.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''chunga''; 4 - version = ''20200427-git''; 3 + baseName = "chunga"; 4 + version = "20200427-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ args."trivial-gray-streams" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/chunga/2020-04-27/chunga-20200427-git.tgz''; 12 - sha256 = ''0p6dlnan6raincd682brcjbklyvmkfkhz0yzp2bkfw67s9615bkk''; 11 + url = "http://beta.quicklisp.org/archive/chunga/2020-04-27/chunga-20200427-git.tgz"; 12 + sha256 = "0p6dlnan6raincd682brcjbklyvmkfkhz0yzp2bkfw67s9615bkk"; 13 13 }; 14 14 15 15 packageName = "chunga";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/circular-streams.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''circular-streams''; 4 - version = ''20161204-git''; 3 + baseName = "circular-streams"; 4 + version = "20161204-git"; 5 5 6 - description = ''Circularly readable streams for Common Lisp''; 6 + description = "Circularly readable streams for Common Lisp"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/circular-streams/2016-12-04/circular-streams-20161204-git.tgz''; 12 - sha256 = ''1i29b9sciqs5x59hlkdj2r4siyqgrwj5hb4lnc80jgfqvzbq4128''; 11 + url = "http://beta.quicklisp.org/archive/circular-streams/2016-12-04/circular-streams-20161204-git.tgz"; 12 + sha256 = "1i29b9sciqs5x59hlkdj2r4siyqgrwj5hb4lnc80jgfqvzbq4128"; 13 13 }; 14 14 15 15 packageName = "circular-streams";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-aa.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-aa''; 4 - version = ''cl-vectors-20180228-git''; 3 + baseName = "cl-aa"; 4 + version = "cl-vectors-20180228-git"; 5 5 6 - description = ''cl-aa: polygon rasterizer''; 6 + description = "cl-aa: polygon rasterizer"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz''; 12 - sha256 = ''0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly''; 11 + url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; 12 + sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly"; 13 13 }; 14 14 15 15 packageName = "cl-aa";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-annot.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-annot''; 4 - version = ''20150608-git''; 3 + baseName = "cl-annot"; 4 + version = "20150608-git"; 5 5 6 - description = ''Python-like Annotation Syntax for Common Lisp''; 6 + description = "Python-like Annotation Syntax for Common Lisp"; 7 7 8 8 deps = [ args."alexandria" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-annot/2015-06-08/cl-annot-20150608-git.tgz''; 12 - sha256 = ''0ixsp20rk498phv3iivipn3qbw7a7x260x63hc6kpv2s746lpdg3''; 11 + url = "http://beta.quicklisp.org/archive/cl-annot/2015-06-08/cl-annot-20150608-git.tgz"; 12 + sha256 = "0ixsp20rk498phv3iivipn3qbw7a7x260x63hc6kpv2s746lpdg3"; 13 13 }; 14 14 15 15 packageName = "cl-annot";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-anonfun.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-anonfun''; 4 - version = ''20111203-git''; 3 + baseName = "cl-anonfun"; 4 + version = "20111203-git"; 5 5 6 - description = ''Anonymous function helpers for Common Lisp''; 6 + description = "Anonymous function helpers for Common Lisp"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-anonfun/2011-12-03/cl-anonfun-20111203-git.tgz''; 12 - sha256 = ''16r3v3yba41smkqpz0qvzabkxashl39klfb6vxhzbly696x87p1m''; 11 + url = "http://beta.quicklisp.org/archive/cl-anonfun/2011-12-03/cl-anonfun-20111203-git.tgz"; 12 + sha256 = "16r3v3yba41smkqpz0qvzabkxashl39klfb6vxhzbly696x87p1m"; 13 13 }; 14 14 15 15 packageName = "cl-anonfun";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ansi-text.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-ansi-text''; 4 - version = ''20200218-git''; 3 + baseName = "cl-ansi-text"; 4 + version = "20200218-git"; 5 5 6 - description = ''ANSI control string characters, focused on color''; 6 + description = "ANSI control string characters, focused on color"; 7 7 8 8 deps = [ args."alexandria" args."cl-colors2" args."cl-ppcre" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-ansi-text/2020-02-18/cl-ansi-text-20200218-git.tgz''; 12 - sha256 = ''1yn657rka3pcg3p5g9czbpk0f0rv81dbq1gknid1b24zg7krks5r''; 11 + url = "http://beta.quicklisp.org/archive/cl-ansi-text/2020-02-18/cl-ansi-text-20200218-git.tgz"; 12 + sha256 = "1yn657rka3pcg3p5g9czbpk0f0rv81dbq1gknid1b24zg7krks5r"; 13 13 }; 14 14 15 15 packageName = "cl-ansi-text";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async-repl.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-async-repl''; 4 - version = ''cl-async-20200610-git''; 3 + baseName = "cl-async-repl"; 4 + version = "cl-async-20200610-git"; 5 5 6 - description = ''REPL integration for CL-ASYNC.''; 6 + description = "REPL integration for CL-ASYNC."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-async/2020-06-10/cl-async-20200610-git.tgz''; 12 - sha256 = ''10fyd36i5zlnxh69y1l7098b3h94l4hqwl0zhv0nshcs4sa7l37h''; 11 + url = "http://beta.quicklisp.org/archive/cl-async/2020-06-10/cl-async-20200610-git.tgz"; 12 + sha256 = "10fyd36i5zlnxh69y1l7098b3h94l4hqwl0zhv0nshcs4sa7l37h"; 13 13 }; 14 14 15 15 packageName = "cl-async-repl";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async-ssl.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-async-ssl''; 4 - version = ''cl-async-20200610-git''; 3 + baseName = "cl-async-ssl"; 4 + version = "cl-async-20200610-git"; 5 5 6 - description = ''SSL Wrapper around cl-async socket implementation.''; 6 + description = "SSL Wrapper around cl-async socket implementation."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-async/2020-06-10/cl-async-20200610-git.tgz''; 12 - sha256 = ''10fyd36i5zlnxh69y1l7098b3h94l4hqwl0zhv0nshcs4sa7l37h''; 11 + url = "http://beta.quicklisp.org/archive/cl-async/2020-06-10/cl-async-20200610-git.tgz"; 12 + sha256 = "10fyd36i5zlnxh69y1l7098b3h94l4hqwl0zhv0nshcs4sa7l37h"; 13 13 }; 14 14 15 15 packageName = "cl-async-ssl";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-async.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-async''; 4 - version = ''20200610-git''; 3 + baseName = "cl-async"; 4 + version = "20200610-git"; 5 5 6 6 parasites = [ "cl-async-base" "cl-async-util" ]; 7 7 8 - description = ''Asynchronous operations for Common Lisp.''; 8 + description = "Asynchronous operations for Common Lisp."; 9 9 10 10 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-async/2020-06-10/cl-async-20200610-git.tgz''; 14 - sha256 = ''10fyd36i5zlnxh69y1l7098b3h94l4hqwl0zhv0nshcs4sa7l37h''; 13 + url = "http://beta.quicklisp.org/archive/cl-async/2020-06-10/cl-async-20200610-git.tgz"; 14 + sha256 = "10fyd36i5zlnxh69y1l7098b3h94l4hqwl0zhv0nshcs4sa7l37h"; 15 15 }; 16 16 17 17 packageName = "cl-async";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-base64.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-base64''; 4 - version = ''20201016-git''; 3 + baseName = "cl-base64"; 4 + version = "20201016-git"; 5 5 6 6 parasites = [ "cl-base64/test" ]; 7 7 8 - description = ''Base64 encoding and decoding with URI support.''; 8 + description = "Base64 encoding and decoding with URI support."; 9 9 10 10 deps = [ args."kmrcl" args."ptester" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-base64/2020-10-16/cl-base64-20201016-git.tgz''; 14 - sha256 = ''1wd2sgvfrivrbzlhs1vgj762jqz7sk171ssli6gl1kfwbnphzx9z''; 13 + url = "http://beta.quicklisp.org/archive/cl-base64/2020-10-16/cl-base64-20201016-git.tgz"; 14 + sha256 = "1wd2sgvfrivrbzlhs1vgj762jqz7sk171ssli6gl1kfwbnphzx9z"; 15 15 }; 16 16 17 17 packageName = "cl-base64";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-cairo.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-cffi-gtk-cairo''; 4 - version = ''cl-cffi-gtk-20201016-git''; 3 + baseName = "cl-cffi-gtk-cairo"; 4 + version = "cl-cffi-gtk-20201016-git"; 5 5 6 - description = ''A Lisp binding to Cairo''; 6 + description = "A Lisp binding to Cairo"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."iterate" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz''; 12 - sha256 = ''1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55''; 11 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz"; 12 + sha256 = "1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55"; 13 13 }; 14 14 15 15 packageName = "cl-cffi-gtk-cairo";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-gdk-pixbuf.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-cffi-gtk-gdk-pixbuf''; 4 - version = ''cl-cffi-gtk-20201016-git''; 3 + baseName = "cl-cffi-gtk-gdk-pixbuf"; 4 + version = "cl-cffi-gtk-20201016-git"; 5 5 6 - description = ''A Lisp binding to GDK Pixbuf 2''; 6 + description = "A Lisp binding to GDK Pixbuf 2"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz''; 12 - sha256 = ''1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55''; 11 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz"; 12 + sha256 = "1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55"; 13 13 }; 14 14 15 15 packageName = "cl-cffi-gtk-gdk-pixbuf";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-gdk.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-cffi-gtk-gdk''; 4 - version = ''cl-cffi-gtk-20201016-git''; 3 + baseName = "cl-cffi-gtk-gdk"; 4 + version = "cl-cffi-gtk-20201016-git"; 5 5 6 - description = ''A Lisp binding to GDK 3''; 6 + description = "A Lisp binding to GDK 3"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz''; 12 - sha256 = ''1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55''; 11 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz"; 12 + sha256 = "1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55"; 13 13 }; 14 14 15 15 packageName = "cl-cffi-gtk-gdk";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-gio.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-cffi-gtk-gio''; 4 - version = ''cl-cffi-gtk-20201016-git''; 3 + baseName = "cl-cffi-gtk-gio"; 4 + version = "cl-cffi-gtk-20201016-git"; 5 5 6 - description = ''A Lisp binding to GIO 2''; 6 + description = "A Lisp binding to GIO 2"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz''; 12 - sha256 = ''1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55''; 11 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz"; 12 + sha256 = "1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55"; 13 13 }; 14 14 15 15 packageName = "cl-cffi-gtk-gio";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-glib.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-cffi-gtk-glib''; 4 - version = ''cl-cffi-gtk-20201016-git''; 3 + baseName = "cl-cffi-gtk-glib"; 4 + version = "cl-cffi-gtk-20201016-git"; 5 5 6 - description = ''A Lisp binding to GLib 2''; 6 + description = "A Lisp binding to GLib 2"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."iterate" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz''; 12 - sha256 = ''1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55''; 11 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz"; 12 + sha256 = "1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55"; 13 13 }; 14 14 15 15 packageName = "cl-cffi-gtk-glib";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-gobject.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-cffi-gtk-gobject''; 4 - version = ''cl-cffi-gtk-20201016-git''; 3 + baseName = "cl-cffi-gtk-gobject"; 4 + version = "cl-cffi-gtk-20201016-git"; 5 5 6 - description = ''A Lisp binding GObject 2''; 6 + description = "A Lisp binding GObject 2"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz''; 12 - sha256 = ''1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55''; 11 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz"; 12 + sha256 = "1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55"; 13 13 }; 14 14 15 15 packageName = "cl-cffi-gtk-gobject";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk-pango.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-cffi-gtk-pango''; 4 - version = ''cl-cffi-gtk-20201016-git''; 3 + baseName = "cl-cffi-gtk-pango"; 4 + version = "cl-cffi-gtk-20201016-git"; 5 5 6 - description = ''A Lisp binding to Pango''; 6 + description = "A Lisp binding to Pango"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz''; 12 - sha256 = ''1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55''; 11 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz"; 12 + sha256 = "1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55"; 13 13 }; 14 14 15 15 packageName = "cl-cffi-gtk-pango";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cffi-gtk.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-cffi-gtk''; 4 - version = ''20201016-git''; 3 + baseName = "cl-cffi-gtk"; 4 + version = "20201016-git"; 5 5 6 - description = ''A Lisp binding to GTK 3''; 6 + description = "A Lisp binding to GTK 3"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz''; 12 - sha256 = ''1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55''; 11 + url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-10-16/cl-cffi-gtk-20201016-git.tgz"; 12 + sha256 = "1m91597nwwrps32awvk57k3h4jjq603ja0kf395n2jxvckfz0a55"; 13 13 }; 14 14 15 15 packageName = "cl-cffi-gtk";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-change-case.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-change-case''; 4 - version = ''20191007-git''; 3 + baseName = "cl-change-case"; 4 + version = "20191007-git"; 5 5 6 - description = ''Convert strings between camelCase, param-case, PascalCase and more''; 6 + description = "Convert strings between camelCase, param-case, PascalCase and more"; 7 7 8 8 deps = [ args."cl-ppcre" args."cl-ppcre-unicode" args."cl-unicode" args."flexi-streams" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-change-case/2019-10-07/cl-change-case-20191007-git.tgz''; 12 - sha256 = ''097n7bzlsryqh6gbwn3nzi9qdw4jhck4vn3qw41zpc496xfgz9y1''; 11 + url = "http://beta.quicklisp.org/archive/cl-change-case/2019-10-07/cl-change-case-20191007-git.tgz"; 12 + sha256 = "097n7bzlsryqh6gbwn3nzi9qdw4jhck4vn3qw41zpc496xfgz9y1"; 13 13 }; 14 14 15 15 packageName = "cl-change-case";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cli.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-cli''; 4 - version = ''20151218-git''; 3 + baseName = "cl-cli"; 4 + version = "20151218-git"; 5 5 6 - description = ''Command line parser''; 6 + description = "Command line parser"; 7 7 8 8 deps = [ args."split-sequence" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cli/2015-12-18/cl-cli-20151218-git.tgz''; 12 - sha256 = ''0d097wjprljghkai1yacvjqmjm1mwpa46yxbacjnwps8pqwh18ay''; 11 + url = "http://beta.quicklisp.org/archive/cl-cli/2015-12-18/cl-cli-20151218-git.tgz"; 12 + sha256 = "0d097wjprljghkai1yacvjqmjm1mwpa46yxbacjnwps8pqwh18ay"; 13 13 }; 14 14 15 15 packageName = "cl-cli";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-colors.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-colors''; 4 - version = ''20180328-git''; 3 + baseName = "cl-colors"; 4 + version = "20180328-git"; 5 5 6 6 parasites = [ "cl-colors-tests" ]; 7 7 8 - description = ''Simple color library for Common Lisp''; 8 + description = "Simple color library for Common Lisp"; 9 9 10 10 deps = [ args."alexandria" args."anaphora" args."let-plus" args."lift" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-colors/2018-03-28/cl-colors-20180328-git.tgz''; 14 - sha256 = ''0anrb3zsi03dixfsjz92y06w93kpn0d0c5142fhx72f5kafwvc4a''; 13 + url = "http://beta.quicklisp.org/archive/cl-colors/2018-03-28/cl-colors-20180328-git.tgz"; 14 + sha256 = "0anrb3zsi03dixfsjz92y06w93kpn0d0c5142fhx72f5kafwvc4a"; 15 15 }; 16 16 17 17 packageName = "cl-colors";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-colors2.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-colors2''; 4 - version = ''20200218-git''; 3 + baseName = "cl-colors2"; 4 + version = "20200218-git"; 5 5 6 6 parasites = [ "cl-colors2/tests" ]; 7 7 8 - description = ''Simple color library for Common Lisp''; 8 + description = "Simple color library for Common Lisp"; 9 9 10 10 deps = [ args."alexandria" args."cl-ppcre" args."clunit2" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-colors2/2020-02-18/cl-colors2-20200218-git.tgz''; 14 - sha256 = ''0rpf8j232qv254zhkvkz3ja20al1kswvcqhvvv0r2ag6dks56j29''; 13 + url = "http://beta.quicklisp.org/archive/cl-colors2/2020-02-18/cl-colors2-20200218-git.tgz"; 14 + sha256 = "0rpf8j232qv254zhkvkz3ja20al1kswvcqhvvv0r2ag6dks56j29"; 15 15 }; 16 16 17 17 packageName = "cl-colors2";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-containers.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-containers''; 4 - version = ''20200427-git''; 3 + baseName = "cl-containers"; 4 + version = "20200427-git"; 5 5 6 6 parasites = [ "cl-containers/with-moptilities" "cl-containers/with-utilities" ]; 7 7 8 - description = ''A generic container library for Common Lisp''; 8 + description = "A generic container library for Common Lisp"; 9 9 10 10 deps = [ args."asdf-system-connections" args."metatilities-base" args."moptilities" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-containers/2020-04-27/cl-containers-20200427-git.tgz''; 14 - sha256 = ''0llaymnlss0dhwyqgr2s38w1hjb2as1x1nn57qcvdphnm7qs50fy''; 13 + url = "http://beta.quicklisp.org/archive/cl-containers/2020-04-27/cl-containers-20200427-git.tgz"; 14 + sha256 = "0llaymnlss0dhwyqgr2s38w1hjb2as1x1nn57qcvdphnm7qs50fy"; 15 15 }; 16 16 17 17 packageName = "cl-containers";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cookie.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-cookie''; 4 - version = ''20191007-git''; 3 + baseName = "cl-cookie"; 4 + version = "20191007-git"; 5 5 6 - description = ''HTTP cookie manager''; 6 + description = "HTTP cookie manager"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-cookie/2019-10-07/cl-cookie-20191007-git.tgz''; 12 - sha256 = ''1xcb69n3qfp37nwj0mj2whf3yj5xfsgh9sdw6c64gxqkiiq9nfhh''; 11 + url = "http://beta.quicklisp.org/archive/cl-cookie/2019-10-07/cl-cookie-20191007-git.tgz"; 12 + sha256 = "1xcb69n3qfp37nwj0mj2whf3yj5xfsgh9sdw6c64gxqkiiq9nfhh"; 13 13 }; 14 14 15 15 packageName = "cl-cookie";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-css.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-css''; 4 - version = ''20140914-git''; 3 + baseName = "cl-css"; 4 + version = "20140914-git"; 5 5 6 - description = ''Simple inline CSS generator''; 6 + description = "Simple inline CSS generator"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-css/2014-09-14/cl-css-20140914-git.tgz''; 12 - sha256 = ''16zjm10qqyv5v0ysvicbiscplrwlfr0assbf01gp73j1m108rn7n''; 11 + url = "http://beta.quicklisp.org/archive/cl-css/2014-09-14/cl-css-20140914-git.tgz"; 12 + sha256 = "16zjm10qqyv5v0ysvicbiscplrwlfr0assbf01gp73j1m108rn7n"; 13 13 }; 14 14 15 15 packageName = "cl-css";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-csv.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-csv''; 4 - version = ''20201016-git''; 3 + baseName = "cl-csv"; 4 + version = "20201016-git"; 5 5 6 6 parasites = [ "cl-csv/speed-test" "cl-csv/test" ]; 7 7 8 - description = ''Facilities for reading and writing CSV format files''; 8 + description = "Facilities for reading and writing CSV format files"; 9 9 10 10 deps = [ args."alexandria" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-csv/2020-10-16/cl-csv-20201016-git.tgz''; 14 - sha256 = ''1w12ads26v5sgcmy6rjm6ys9lml7l6rz86w776s2an2maci9kzmf''; 13 + url = "http://beta.quicklisp.org/archive/cl-csv/2020-10-16/cl-csv-20201016-git.tgz"; 14 + sha256 = "1w12ads26v5sgcmy6rjm6ys9lml7l6rz86w776s2an2maci9kzmf"; 15 15 }; 16 16 17 17 packageName = "cl-csv";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-dbi.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-dbi''; 4 - version = ''20200610-git''; 3 + baseName = "cl-dbi"; 4 + version = "20200610-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ args."alexandria" args."bordeaux-threads" args."closer-mop" args."dbi" args."split-sequence" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-dbi/2020-06-10/cl-dbi-20200610-git.tgz''; 12 - sha256 = ''1d7hwywcqzqwmr5b42c0mmjq3v3xxd4cwb4fn5k1wd7j6pr0bkas''; 11 + url = "http://beta.quicklisp.org/archive/cl-dbi/2020-06-10/cl-dbi-20200610-git.tgz"; 12 + sha256 = "1d7hwywcqzqwmr5b42c0mmjq3v3xxd4cwb4fn5k1wd7j6pr0bkas"; 13 13 }; 14 14 15 15 packageName = "cl-dbi";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-dot.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-dot''; 4 - version = ''20200925-git''; 3 + baseName = "cl-dot"; 4 + version = "20200925-git"; 5 5 6 - description = ''Generate Dot Output from Arbitrary Lisp Data''; 6 + description = "Generate Dot Output from Arbitrary Lisp Data"; 7 7 8 8 deps = [ args."uiop" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-dot/2020-09-25/cl-dot-20200925-git.tgz''; 12 - sha256 = ''01vx4yzasmgswrlyagjr2cz76g906jsijdwikdf8wvxyyq77gkla''; 11 + url = "http://beta.quicklisp.org/archive/cl-dot/2020-09-25/cl-dot-20200925-git.tgz"; 12 + sha256 = "01vx4yzasmgswrlyagjr2cz76g906jsijdwikdf8wvxyyq77gkla"; 13 13 }; 14 14 15 15 packageName = "cl-dot";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-emb.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-emb''; 4 - version = ''20190521-git''; 3 + baseName = "cl-emb"; 4 + version = "20190521-git"; 5 5 6 - description = ''A templating system for Common Lisp''; 6 + description = "A templating system for Common Lisp"; 7 7 8 8 deps = [ args."cl-ppcre" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-emb/2019-05-21/cl-emb-20190521-git.tgz''; 12 - sha256 = ''1d6bi2mx1kw7an3maxjp4ldrhkwfdb58va9whxblz2xjlbykdv8d''; 11 + url = "http://beta.quicklisp.org/archive/cl-emb/2019-05-21/cl-emb-20190521-git.tgz"; 12 + sha256 = "1d6bi2mx1kw7an3maxjp4ldrhkwfdb58va9whxblz2xjlbykdv8d"; 13 13 }; 14 14 15 15 packageName = "cl-emb";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-fad.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-fad''; 4 - version = ''20200610-git''; 3 + baseName = "cl-fad"; 4 + version = "20200610-git"; 5 5 6 6 parasites = [ "cl-fad-test" ]; 7 7 8 - description = ''Portable pathname library''; 8 + description = "Portable pathname library"; 9 9 10 10 deps = [ args."alexandria" args."bordeaux-threads" args."cl-ppcre" args."unit-test" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-fad/2020-06-10/cl-fad-20200610-git.tgz''; 14 - sha256 = ''08d0q2jpjz4djz20w8m86rfkili8g0vdbkkmvn8c88qmvcr79k5x''; 13 + url = "http://beta.quicklisp.org/archive/cl-fad/2020-06-10/cl-fad-20200610-git.tgz"; 14 + sha256 = "08d0q2jpjz4djz20w8m86rfkili8g0vdbkkmvn8c88qmvcr79k5x"; 15 15 }; 16 16 17 17 packageName = "cl-fad";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-fuse-meta-fs.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-fuse-meta-fs''; 4 - version = ''20190710-git''; 3 + baseName = "cl-fuse-meta-fs"; 4 + version = "20190710-git"; 5 5 6 - description = ''CFFI bindings to FUSE (Filesystem in user space)''; 6 + description = "CFFI bindings to FUSE (Filesystem in user space)"; 7 7 8 8 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 9 10 10 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''; 11 + url = "http://beta.quicklisp.org/archive/cl-fuse-meta-fs/2019-07-10/cl-fuse-meta-fs-20190710-git.tgz"; 12 + sha256 = "1c2nyxj7q8njxydn4xiagvnb21zhb1l07q7nhfw0qs2qk6dkasq7"; 13 13 }; 14 14 15 15 packageName = "cl-fuse-meta-fs";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-fuse.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-fuse''; 4 - version = ''20200925-git''; 3 + baseName = "cl-fuse"; 4 + version = "20200925-git"; 5 5 6 - description = ''CFFI bindings to FUSE (Filesystem in user space)''; 6 + description = "CFFI bindings to FUSE (Filesystem in user space)"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-fuse/2020-09-25/cl-fuse-20200925-git.tgz''; 12 - sha256 = ''1c5cn0l0md77asw804qssylcbbphw81mfpbijydd0s25q6xga7dp''; 11 + url = "http://beta.quicklisp.org/archive/cl-fuse/2020-09-25/cl-fuse-20200925-git.tgz"; 12 + sha256 = "1c5cn0l0md77asw804qssylcbbphw81mfpbijydd0s25q6xga7dp"; 13 13 }; 14 14 15 15 packageName = "cl-fuse";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-hooks.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-hooks''; 4 - version = ''architecture.hooks-20181210-git''; 3 + baseName = "cl-hooks"; 4 + version = "architecture.hooks-20181210-git"; 5 5 6 6 parasites = [ "cl-hooks/test" ]; 7 7 ··· 11 11 deps = [ args."alexandria" args."anaphora" args."closer-mop" args."fiveam" args."let-plus" args."trivial-garbage" ]; 12 12 13 13 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/architecture.hooks/2018-12-10/architecture.hooks-20181210-git.tgz''; 15 - sha256 = ''04l8rjmgsd7i580rpm1wndz1jcvfqrmwllnkh3h7als3azi3q2ns''; 14 + url = "http://beta.quicklisp.org/archive/architecture.hooks/2018-12-10/architecture.hooks-20181210-git.tgz"; 15 + sha256 = "04l8rjmgsd7i580rpm1wndz1jcvfqrmwllnkh3h7als3azi3q2ns"; 16 16 }; 17 17 18 18 packageName = "cl-hooks";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-html-parse.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-html-parse''; 4 - version = ''20200925-git''; 3 + baseName = "cl-html-parse"; 4 + version = "20200925-git"; 5 5 6 - description = ''HTML Parser''; 6 + description = "HTML Parser"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-html-parse/2020-09-25/cl-html-parse-20200925-git.tgz''; 12 - sha256 = ''14pfd4gwjb8ywr79dqrcznw6h8a1il3g5b6cm5x9aiyr49zdv15f''; 11 + url = "http://beta.quicklisp.org/archive/cl-html-parse/2020-09-25/cl-html-parse-20200925-git.tgz"; 12 + sha256 = "14pfd4gwjb8ywr79dqrcznw6h8a1il3g5b6cm5x9aiyr49zdv15f"; 13 13 }; 14 14 15 15 packageName = "cl-html-parse";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-html5-parser.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-html5-parser''; 4 - version = ''20190521-git''; 3 + baseName = "cl-html5-parser"; 4 + version = "20190521-git"; 5 5 6 - description = ''A HTML5 parser for Common Lisp''; 6 + description = "A HTML5 parser for Common Lisp"; 7 7 8 8 deps = [ args."cl-ppcre" args."flexi-streams" args."string-case" args."trivial-gray-streams" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-html5-parser/2019-05-21/cl-html5-parser-20190521-git.tgz''; 12 - sha256 = ''055jz0yqgjncvy2dxvnwg4iwdvmfsvkch46v58nymz5gi8gaaz7p''; 11 + url = "http://beta.quicklisp.org/archive/cl-html5-parser/2019-05-21/cl-html5-parser-20190521-git.tgz"; 12 + sha256 = "055jz0yqgjncvy2dxvnwg4iwdvmfsvkch46v58nymz5gi8gaaz7p"; 13 13 }; 14 14 15 15 packageName = "cl-html5-parser";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-interpol.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-interpol''; 4 - version = ''20200715-git''; 3 + baseName = "cl-interpol"; 4 + version = "20200715-git"; 5 5 6 6 parasites = [ "cl-interpol-test" ]; 7 7 8 - description = ''System lacks description''; 8 + description = "System lacks description"; 9 9 10 10 deps = [ args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."named-readtables" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-interpol/2020-07-15/cl-interpol-20200715-git.tgz''; 14 - sha256 = ''0qbmpgnlg9y6ykwahmw1q8b058krmcq47w3gx75xz920im46wvmw''; 13 + url = "http://beta.quicklisp.org/archive/cl-interpol/2020-07-15/cl-interpol-20200715-git.tgz"; 14 + sha256 = "0qbmpgnlg9y6ykwahmw1q8b058krmcq47w3gx75xz920im46wvmw"; 15 15 }; 16 16 17 17 packageName = "cl-interpol";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-jpeg.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-jpeg''; 4 - version = ''20170630-git''; 3 + baseName = "cl-jpeg"; 4 + version = "20170630-git"; 5 5 6 - description = ''A self-contained baseline JPEG codec implementation''; 6 + description = "A self-contained baseline JPEG codec implementation"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-jpeg/2017-06-30/cl-jpeg-20170630-git.tgz''; 12 - sha256 = ''1wwzn2valhh5ka7qkmab59pb1ijagcj296553fp8z03migl0sil0''; 11 + url = "http://beta.quicklisp.org/archive/cl-jpeg/2017-06-30/cl-jpeg-20170630-git.tgz"; 12 + sha256 = "1wwzn2valhh5ka7qkmab59pb1ijagcj296553fp8z03migl0sil0"; 13 13 }; 14 14 15 15 packageName = "cl-jpeg";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-json.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-json''; 4 - version = ''20141217-git''; 3 + baseName = "cl-json"; 4 + version = "20141217-git"; 5 5 6 6 parasites = [ "cl-json.test" ]; 7 7 8 - description = ''JSON in Lisp. JSON (JavaScript Object Notation) is a lightweight data-interchange format.''; 8 + description = "JSON in Lisp. JSON (JavaScript Object Notation) is a lightweight data-interchange format."; 9 9 10 10 deps = [ args."fiveam" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-json/2014-12-17/cl-json-20141217-git.tgz''; 14 - sha256 = ''00cfppyi6njsbpv1x03jcv4zwplg0q1138174l3wjkvi3gsql17g''; 13 + url = "http://beta.quicklisp.org/archive/cl-json/2014-12-17/cl-json-20141217-git.tgz"; 14 + sha256 = "00cfppyi6njsbpv1x03jcv4zwplg0q1138174l3wjkvi3gsql17g"; 15 15 }; 16 16 17 17 packageName = "cl-json";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-l10n-cldr.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-l10n-cldr''; 4 - version = ''20120909-darcs''; 3 + baseName = "cl-l10n-cldr"; 4 + version = "20120909-darcs"; 5 5 6 - description = ''The necessary CLDR files for cl-l10n packaged in a QuickLisp friendly way.''; 6 + description = "The necessary CLDR files for cl-l10n packaged in a QuickLisp friendly way."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-l10n-cldr/2012-09-09/cl-l10n-cldr-20120909-darcs.tgz''; 12 - sha256 = ''03l81bx8izvzwzw0qah34l4k47l4gmhr917phhhl81qp55x7zbiv''; 11 + url = "http://beta.quicklisp.org/archive/cl-l10n-cldr/2012-09-09/cl-l10n-cldr-20120909-darcs.tgz"; 12 + sha256 = "03l81bx8izvzwzw0qah34l4k47l4gmhr917phhhl81qp55x7zbiv"; 13 13 }; 14 14 15 15 packageName = "cl-l10n-cldr";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-l10n.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-l10n''; 4 - version = ''20161204-darcs''; 3 + baseName = "cl-l10n"; 4 + version = "20161204-darcs"; 5 5 6 6 parasites = [ "cl-l10n/test" ]; 7 7 8 - description = ''Portable CL Locale Support''; 8 + description = "Portable CL Locale Support"; 9 9 10 10 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-l10n/2016-12-04/cl-l10n-20161204-darcs.tgz''; 14 - sha256 = ''1r8jgwks21az78c5kdxgw5llk9ml423vjkv1f93qg1vx3zma6vzl''; 13 + url = "http://beta.quicklisp.org/archive/cl-l10n/2016-12-04/cl-l10n-20161204-darcs.tgz"; 14 + sha256 = "1r8jgwks21az78c5kdxgw5llk9ml423vjkv1f93qg1vx3zma6vzl"; 15 15 }; 16 16 17 17 packageName = "cl-l10n";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-libuv.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-libuv''; 4 - version = ''20200610-git''; 3 + baseName = "cl-libuv"; 4 + version = "20200610-git"; 5 5 6 - description = ''Low-level libuv bindings for Common Lisp.''; 6 + description = "Low-level libuv bindings for Common Lisp."; 7 7 8 8 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-libuv/2020-06-10/cl-libuv-20200610-git.tgz''; 12 - sha256 = ''1ywk1z1ibyk3z0irg5azjrjk3x08ixv30fx4qa0p500fmbfhha19''; 11 + url = "http://beta.quicklisp.org/archive/cl-libuv/2020-06-10/cl-libuv-20200610-git.tgz"; 12 + sha256 = "1ywk1z1ibyk3z0irg5azjrjk3x08ixv30fx4qa0p500fmbfhha19"; 13 13 }; 14 14 15 15 packageName = "cl-libuv";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-locale.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-locale''; 4 - version = ''20151031-git''; 3 + baseName = "cl-locale"; 4 + version = "20151031-git"; 5 5 6 - description = ''Simple i18n library for Common Lisp''; 6 + description = "Simple i18n library for Common Lisp"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-locale/2015-10-31/cl-locale-20151031-git.tgz''; 12 - sha256 = ''14j4xazrx2v5cj4q4irfwra0ksvl2l0s7073fimpwc0xqjfsnjpg''; 11 + url = "http://beta.quicklisp.org/archive/cl-locale/2015-10-31/cl-locale-20151031-git.tgz"; 12 + sha256 = "14j4xazrx2v5cj4q4irfwra0ksvl2l0s7073fimpwc0xqjfsnjpg"; 13 13 }; 14 14 15 15 packageName = "cl-locale";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-markup.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-markup''; 4 - version = ''20131003-git''; 3 + baseName = "cl-markup"; 4 + version = "20131003-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-markup/2013-10-03/cl-markup-20131003-git.tgz''; 12 - sha256 = ''1ik3a5k6axq941zbf6zyig553i5gnypbcxdq9l7bfxp8w18vbj0r''; 11 + url = "http://beta.quicklisp.org/archive/cl-markup/2013-10-03/cl-markup-20131003-git.tgz"; 12 + sha256 = "1ik3a5k6axq941zbf6zyig553i5gnypbcxdq9l7bfxp8w18vbj0r"; 13 13 }; 14 14 15 15 packageName = "cl-markup";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-mysql.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-mysql''; 4 - version = ''20200610-git''; 3 + baseName = "cl-mysql"; 4 + version = "20200610-git"; 5 5 6 - description = ''Common Lisp MySQL library bindings''; 6 + description = "Common Lisp MySQL library bindings"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-mysql/2020-06-10/cl-mysql-20200610-git.tgz''; 12 - sha256 = ''0fzyqzz01zn9fy8v766lib3dghg9yq5wawa0hcmxslms7knzxz7w''; 11 + url = "http://beta.quicklisp.org/archive/cl-mysql/2020-06-10/cl-mysql-20200610-git.tgz"; 12 + sha256 = "0fzyqzz01zn9fy8v766lib3dghg9yq5wawa0hcmxslms7knzxz7w"; 13 13 }; 14 14 15 15 packageName = "cl-mysql";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-paths-ttf.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-paths-ttf''; 4 - version = ''cl-vectors-20180228-git''; 3 + baseName = "cl-paths-ttf"; 4 + version = "cl-vectors-20180228-git"; 5 5 6 - description = ''cl-paths-ttf: vectorial paths manipulation''; 6 + description = "cl-paths-ttf: vectorial paths manipulation"; 7 7 8 8 deps = [ args."cl-paths" args."zpb-ttf" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz''; 12 - sha256 = ''0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly''; 11 + url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; 12 + sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly"; 13 13 }; 14 14 15 15 packageName = "cl-paths-ttf";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-paths.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-paths''; 4 - version = ''cl-vectors-20180228-git''; 3 + baseName = "cl-paths"; 4 + version = "cl-vectors-20180228-git"; 5 5 6 - description = ''cl-paths: vectorial paths manipulation''; 6 + description = "cl-paths: vectorial paths manipulation"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz''; 12 - sha256 = ''0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly''; 11 + url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; 12 + sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly"; 13 13 }; 14 14 15 15 packageName = "cl-paths";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-pdf.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-pdf''; 4 - version = ''20191007-git''; 3 + baseName = "cl-pdf"; 4 + version = "20191007-git"; 5 5 6 - description = ''Common Lisp PDF Generation Library''; 6 + description = "Common Lisp PDF Generation Library"; 7 7 8 8 deps = [ args."iterate" args."uiop" args."zpb-ttf" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-pdf/2019-10-07/cl-pdf-20191007-git.tgz''; 12 - sha256 = ''0l0hnxysy7dc4wj50nfwn8x7v188vaxvsvk8kl92zb92lfzgw7cd''; 11 + url = "http://beta.quicklisp.org/archive/cl-pdf/2019-10-07/cl-pdf-20191007-git.tgz"; 12 + sha256 = "0l0hnxysy7dc4wj50nfwn8x7v188vaxvsvk8kl92zb92lfzgw7cd"; 13 13 }; 14 14 15 15 packageName = "cl-pdf";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-postgres.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-postgres''; 4 - version = ''postmodern-20201016-git''; 3 + baseName = "cl-postgres"; 4 + version = "postmodern-20201016-git"; 5 5 6 6 parasites = [ "cl-postgres/simple-date-tests" "cl-postgres/tests" ]; 7 7 8 - description = ''Low-level client library for PostgreSQL''; 8 + description = "Low-level client library for PostgreSQL"; 9 9 10 10 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/postmodern/2020-10-16/postmodern-20201016-git.tgz''; 14 - sha256 = ''1svaiksbqcaq8sh7q6sj9kzazdfl360zqr2nzhwbgy4xnaj4vf3n''; 13 + url = "http://beta.quicklisp.org/archive/postmodern/2020-10-16/postmodern-20201016-git.tgz"; 14 + sha256 = "1svaiksbqcaq8sh7q6sj9kzazdfl360zqr2nzhwbgy4xnaj4vf3n"; 15 15 }; 16 16 17 17 packageName = "cl-postgres";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ppcre-template.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-ppcre-template''; 4 - version = ''cl-unification-20200925-git''; 3 + baseName = "cl-ppcre-template"; 4 + version = "cl-unification-20200925-git"; 5 5 6 6 description = ''A system used to conditionally load the CL-PPCRE Template. 7 7 ··· 12 12 deps = [ args."cl-ppcre" args."cl-unification" ]; 13 13 14 14 src = fetchurl { 15 - url = ''http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz''; 16 - sha256 = ''05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais''; 15 + url = "http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz"; 16 + sha256 = "05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais"; 17 17 }; 18 18 19 19 packageName = "cl-ppcre-template";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ppcre-unicode.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-ppcre-unicode''; 4 - version = ''cl-ppcre-20190521-git''; 3 + baseName = "cl-ppcre-unicode"; 4 + version = "cl-ppcre-20190521-git"; 5 5 6 6 parasites = [ "cl-ppcre-unicode-test" ]; 7 7 8 - description = ''Perl-compatible regular expression library (Unicode)''; 8 + description = "Perl-compatible regular expression library (Unicode)"; 9 9 10 10 deps = [ args."cl-ppcre" args."cl-ppcre-test" args."cl-unicode" args."flexi-streams" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz''; 14 - sha256 = ''0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx''; 13 + url = "http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz"; 14 + sha256 = "0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx"; 15 15 }; 16 16 17 17 packageName = "cl-ppcre-unicode";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ppcre.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-ppcre''; 4 - version = ''20190521-git''; 3 + baseName = "cl-ppcre"; 4 + version = "20190521-git"; 5 5 6 6 parasites = [ "cl-ppcre-test" ]; 7 7 8 - description = ''Perl-compatible regular expression library''; 8 + description = "Perl-compatible regular expression library"; 9 9 10 10 deps = [ args."flexi-streams" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz''; 14 - sha256 = ''0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx''; 13 + url = "http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz"; 14 + sha256 = "0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx"; 15 15 }; 16 16 17 17 packageName = "cl-ppcre";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-prevalence.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-prevalence''; 4 - version = ''20200715-git''; 3 + baseName = "cl-prevalence"; 4 + version = "20200715-git"; 5 5 6 - description = ''Common Lisp Prevalence Package''; 6 + description = "Common Lisp Prevalence Package"; 7 7 8 8 deps = [ args."alexandria" args."bordeaux-threads" args."s-sysdeps" args."s-xml" args."split-sequence" args."usocket" args."usocket-server" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-prevalence/2020-07-15/cl-prevalence-20200715-git.tgz''; 12 - sha256 = ''1m2wrqnly9i35kjk2wydwywjmwkbh3a3f4ds7wl63q8kpn8g0ibd''; 11 + url = "http://beta.quicklisp.org/archive/cl-prevalence/2020-07-15/cl-prevalence-20200715-git.tgz"; 12 + sha256 = "1m2wrqnly9i35kjk2wydwywjmwkbh3a3f4ds7wl63q8kpn8g0ibd"; 13 13 }; 14 14 15 15 packageName = "cl-prevalence";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-project.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-project''; 4 - version = ''20200715-git''; 3 + baseName = "cl-project"; 4 + version = "20200715-git"; 5 5 6 - description = ''Generate a skeleton for modern project''; 6 + description = "Generate a skeleton for modern project"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-project/2020-07-15/cl-project-20200715-git.tgz''; 12 - sha256 = ''044rx97wc839a8q2wv271s07bnsasl6x5fx4gr5pvy34jbrhp306''; 11 + url = "http://beta.quicklisp.org/archive/cl-project/2020-07-15/cl-project-20200715-git.tgz"; 12 + sha256 = "044rx97wc839a8q2wv271s07bnsasl6x5fx4gr5pvy34jbrhp306"; 13 13 }; 14 14 15 15 packageName = "cl-project";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-protobufs.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-protobufs''; 4 - version = ''20200325-git''; 3 + baseName = "cl-protobufs"; 4 + version = "20200325-git"; 5 5 6 - description = ''Protobufs for Common Lisp''; 6 + description = "Protobufs for Common Lisp"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."closer-mop" args."trivial-features" args."trivial-garbage" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-protobufs/2020-03-25/cl-protobufs-20200325-git.tgz''; 12 - sha256 = ''1sgvp038bvd3mq2f0xh4wawf8h21jmw449yjyahidh1zfqdibpin''; 11 + url = "http://beta.quicklisp.org/archive/cl-protobufs/2020-03-25/cl-protobufs-20200325-git.tgz"; 12 + sha256 = "1sgvp038bvd3mq2f0xh4wawf8h21jmw449yjyahidh1zfqdibpin"; 13 13 }; 14 14 15 15 packageName = "cl-protobufs";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-qprint.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-qprint''; 4 - version = ''20150804-git''; 3 + baseName = "cl-qprint"; 4 + version = "20150804-git"; 5 5 6 - description = ''Encode and decode quoted-printable encoded strings.''; 6 + description = "Encode and decode quoted-printable encoded strings."; 7 7 8 8 deps = [ args."flexi-streams" args."trivial-gray-streams" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-qprint/2015-08-04/cl-qprint-20150804-git.tgz''; 12 - sha256 = ''042nq9airkc4yaqzpmly5iszmkbwfn38wsgi9k361ldf1y54lq28''; 11 + url = "http://beta.quicklisp.org/archive/cl-qprint/2015-08-04/cl-qprint-20150804-git.tgz"; 12 + sha256 = "042nq9airkc4yaqzpmly5iszmkbwfn38wsgi9k361ldf1y54lq28"; 13 13 }; 14 14 15 15 packageName = "cl-qprint";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-reexport.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-reexport''; 4 - version = ''20150709-git''; 3 + baseName = "cl-reexport"; 4 + version = "20150709-git"; 5 5 6 - description = ''Reexport external symbols in other packages.''; 6 + description = "Reexport external symbols in other packages."; 7 7 8 8 deps = [ args."alexandria" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-reexport/2015-07-09/cl-reexport-20150709-git.tgz''; 12 - sha256 = ''1y6qlyps7g0wl4rbmzvw6s1kjdwwmh33layyjclsjp9j5nm8mdmi''; 11 + url = "http://beta.quicklisp.org/archive/cl-reexport/2015-07-09/cl-reexport-20150709-git.tgz"; 12 + sha256 = "1y6qlyps7g0wl4rbmzvw6s1kjdwwmh33layyjclsjp9j5nm8mdmi"; 13 13 }; 14 14 15 15 packageName = "cl-reexport";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-slice.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-slice''; 4 - version = ''20171130-git''; 3 + baseName = "cl-slice"; 4 + version = "20171130-git"; 5 5 6 6 parasites = [ "cl-slice-tests" ]; 7 7 8 - description = ''DSL for array slices in Common Lisp.''; 8 + description = "DSL for array slices in Common Lisp."; 9 9 10 10 deps = [ args."alexandria" args."anaphora" args."clunit" args."let-plus" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-slice/2017-11-30/cl-slice-20171130-git.tgz''; 14 - sha256 = ''0nay95qsnck40kdxjgjdii5rcgrdhf880pg9ajmbxilgw84xb2zn''; 13 + url = "http://beta.quicklisp.org/archive/cl-slice/2017-11-30/cl-slice-20171130-git.tgz"; 14 + sha256 = "0nay95qsnck40kdxjgjdii5rcgrdhf880pg9ajmbxilgw84xb2zn"; 15 15 }; 16 16 17 17 packageName = "cl-slice";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-smtp.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-smtp''; 4 - version = ''20191130-git''; 3 + baseName = "cl-smtp"; 4 + version = "20191130-git"; 5 5 6 - description = ''Common Lisp smtp client.''; 6 + description = "Common Lisp smtp client."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-smtp/2019-11-30/cl-smtp-20191130-git.tgz''; 12 - sha256 = ''04x1xq1qlsnhl4wdi82l8ds6rl9rzxk72bjf2ja10jay1p6ljvdq''; 11 + url = "http://beta.quicklisp.org/archive/cl-smtp/2019-11-30/cl-smtp-20191130-git.tgz"; 12 + sha256 = "04x1xq1qlsnhl4wdi82l8ds6rl9rzxk72bjf2ja10jay1p6ljvdq"; 13 13 }; 14 14 15 15 packageName = "cl-smtp";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-store.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-store''; 4 - version = ''20200925-git''; 3 + baseName = "cl-store"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "cl-store-tests" ]; 7 7 8 - description = ''Serialization package''; 8 + description = "Serialization package"; 9 9 10 10 deps = [ args."rt" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-store/2020-09-25/cl-store-20200925-git.tgz''; 14 - sha256 = ''0vqlrci1634jgfg6c1dzwvx58qjjwbcbwdbpm7xxw2s823xl9jf3''; 13 + url = "http://beta.quicklisp.org/archive/cl-store/2020-09-25/cl-store-20200925-git.tgz"; 14 + sha256 = "0vqlrci1634jgfg6c1dzwvx58qjjwbcbwdbpm7xxw2s823xl9jf3"; 15 15 }; 16 16 17 17 packageName = "cl-store";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-syntax-annot.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-syntax-annot''; 4 - version = ''cl-syntax-20150407-git''; 3 + baseName = "cl-syntax-annot"; 4 + version = "cl-syntax-20150407-git"; 5 5 6 - description = ''CL-Syntax Reader Syntax for cl-annot''; 6 + description = "CL-Syntax Reader Syntax for cl-annot"; 7 7 8 8 deps = [ args."alexandria" args."cl-annot" args."cl-syntax" args."named-readtables" args."trivial-types" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz''; 12 - sha256 = ''1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n''; 11 + url = "http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz"; 12 + sha256 = "1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n"; 13 13 }; 14 14 15 15 packageName = "cl-syntax-annot";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-syntax-anonfun.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-syntax-anonfun''; 4 - version = ''cl-syntax-20150407-git''; 3 + baseName = "cl-syntax-anonfun"; 4 + version = "cl-syntax-20150407-git"; 5 5 6 - description = ''CL-Syntax Reader Syntax for cl-anonfun''; 6 + description = "CL-Syntax Reader Syntax for cl-anonfun"; 7 7 8 8 deps = [ args."cl-anonfun" args."cl-syntax" args."named-readtables" args."trivial-types" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz''; 12 - sha256 = ''1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n''; 11 + url = "http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz"; 12 + sha256 = "1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n"; 13 13 }; 14 14 15 15 packageName = "cl-syntax-anonfun";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-syntax-markup.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-syntax-markup''; 4 - version = ''cl-syntax-20150407-git''; 3 + baseName = "cl-syntax-markup"; 4 + version = "cl-syntax-20150407-git"; 5 5 6 - description = ''CL-Syntax Reader Syntax for CL-Markup''; 6 + description = "CL-Syntax Reader Syntax for CL-Markup"; 7 7 8 8 deps = [ args."cl-markup" args."cl-syntax" args."named-readtables" args."trivial-types" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz''; 12 - sha256 = ''1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n''; 11 + url = "http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz"; 12 + sha256 = "1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n"; 13 13 }; 14 14 15 15 packageName = "cl-syntax-markup";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-syntax.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-syntax''; 4 - version = ''20150407-git''; 3 + baseName = "cl-syntax"; 4 + version = "20150407-git"; 5 5 6 - description = ''Reader Syntax Coventions for Common Lisp and SLIME''; 6 + description = "Reader Syntax Coventions for Common Lisp and SLIME"; 7 7 8 8 deps = [ args."named-readtables" args."trivial-types" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz''; 12 - sha256 = ''1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n''; 11 + url = "http://beta.quicklisp.org/archive/cl-syntax/2015-04-07/cl-syntax-20150407-git.tgz"; 12 + sha256 = "1pz9a7hiql493ax5qgs9zb3bmvf0nnmmgdx14s4j2apdy2m34v8n"; 13 13 }; 14 14 15 15 packageName = "cl-syntax";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-test-more.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-test-more''; 4 - version = ''prove-20200218-git''; 3 + baseName = "cl-test-more"; 4 + version = "prove-20200218-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ args."alexandria" args."anaphora" args."cl-ansi-text" args."cl-colors" args."cl-colors2" args."cl-ppcre" args."let-plus" args."prove" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz''; 12 - sha256 = ''1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn''; 11 + url = "http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz"; 12 + sha256 = "1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn"; 13 13 }; 14 14 15 15 packageName = "cl-test-more";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-typesetting.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-typesetting''; 4 - version = ''20170830-git''; 3 + baseName = "cl-typesetting"; 4 + version = "20170830-git"; 5 5 6 - description = ''Common Lisp Typesetting system''; 6 + description = "Common Lisp Typesetting system"; 7 7 8 8 deps = [ args."cl-pdf" args."iterate" args."zpb-ttf" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-typesetting/2017-08-30/cl-typesetting-20170830-git.tgz''; 12 - sha256 = ''1mkdr02qikzij3jiyrqy0dldzy8wsnvgcpznfha6x8p2xap586z3''; 11 + url = "http://beta.quicklisp.org/archive/cl-typesetting/2017-08-30/cl-typesetting-20170830-git.tgz"; 12 + sha256 = "1mkdr02qikzij3jiyrqy0dldzy8wsnvgcpznfha6x8p2xap586z3"; 13 13 }; 14 14 15 15 packageName = "cl-typesetting";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unicode.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-unicode''; 4 - version = ''20190521-git''; 3 + baseName = "cl-unicode"; 4 + version = "20190521-git"; 5 5 6 6 parasites = [ "cl-unicode/base" "cl-unicode/build" "cl-unicode/test" ]; 7 7 8 - description = ''Portable Unicode Library''; 8 + description = "Portable Unicode Library"; 9 9 10 10 deps = [ args."cl-ppcre" args."flexi-streams" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-unicode/2019-05-21/cl-unicode-20190521-git.tgz''; 14 - sha256 = ''0p20yrqbn3fwsnrxvh2cv0m86mh3mz9vj15m7siw1kjkbzq0vngc''; 13 + url = "http://beta.quicklisp.org/archive/cl-unicode/2019-05-21/cl-unicode-20190521-git.tgz"; 14 + sha256 = "0p20yrqbn3fwsnrxvh2cv0m86mh3mz9vj15m7siw1kjkbzq0vngc"; 15 15 }; 16 16 17 17 packageName = "cl-unicode";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unification.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-unification''; 4 - version = ''20200925-git''; 3 + baseName = "cl-unification"; 4 + version = "20200925-git"; 5 5 6 6 description = ''The CL-UNIFICATION system. 7 7 ··· 10 10 deps = [ ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz''; 14 - sha256 = ''05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais''; 13 + url = "http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz"; 14 + sha256 = "05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais"; 15 15 }; 16 16 17 17 packageName = "cl-unification";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-utilities.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-utilities''; 4 - version = ''1.2.4''; 3 + baseName = "cl-utilities"; 4 + version = "1.2.4"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-utilities/2010-10-06/cl-utilities-1.2.4.tgz''; 12 - sha256 = ''1z2ippnv2wgyxpz15zpif7j7sp1r20fkjhm4n6am2fyp6a3k3a87''; 11 + url = "http://beta.quicklisp.org/archive/cl-utilities/2010-10-06/cl-utilities-1.2.4.tgz"; 12 + sha256 = "1z2ippnv2wgyxpz15zpif7j7sp1r20fkjhm4n6am2fyp6a3k3a87"; 13 13 }; 14 14 15 15 packageName = "cl-utilities";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-vectors.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-vectors''; 4 - version = ''20180228-git''; 3 + baseName = "cl-vectors"; 4 + version = "20180228-git"; 5 5 6 - description = ''cl-paths: vectorial paths manipulation''; 6 + description = "cl-paths: vectorial paths manipulation"; 7 7 8 8 deps = [ args."cl-aa" args."cl-paths" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz''; 12 - sha256 = ''0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly''; 11 + url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; 12 + sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly"; 13 13 }; 14 14 15 15 packageName = "cl-vectors";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-webkit2.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-webkit2''; 4 - version = ''cl-webkit-20201016-git''; 3 + baseName = "cl-webkit2"; 4 + version = "cl-webkit-20201016-git"; 5 5 6 - description = ''An FFI binding to WebKit2GTK+''; 6 + description = "An FFI binding to WebKit2GTK+"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-webkit/2020-10-16/cl-webkit-20201016-git.tgz''; 12 - sha256 = ''15xykhjz3j7ad3m853x1hriv3mz6zsgaqdnlc3wk664ka0f7k0vh''; 11 + url = "http://beta.quicklisp.org/archive/cl-webkit/2020-10-16/cl-webkit-20201016-git.tgz"; 12 + sha256 = "15xykhjz3j7ad3m853x1hriv3mz6zsgaqdnlc3wk664ka0f7k0vh"; 13 13 }; 14 14 15 15 packageName = "cl-webkit2";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-who.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-who''; 4 - version = ''20190710-git''; 3 + baseName = "cl-who"; 4 + version = "20190710-git"; 5 5 6 6 parasites = [ "cl-who-test" ]; 7 7 8 - description = ''(X)HTML generation macros''; 8 + description = "(X)HTML generation macros"; 9 9 10 10 deps = [ args."flexi-streams" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-who/2019-07-10/cl-who-20190710-git.tgz''; 14 - sha256 = ''0pbigwn38xikdwvjy9696z9f00dwg565y3wh6ja51q681y8zh9ir''; 13 + url = "http://beta.quicklisp.org/archive/cl-who/2019-07-10/cl-who-20190710-git.tgz"; 14 + sha256 = "0pbigwn38xikdwvjy9696z9f00dwg565y3wh6ja51q681y8zh9ir"; 15 15 }; 16 16 17 17 packageName = "cl-who";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-xmlspam.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl-xmlspam''; 4 - version = ''20101006-http''; 3 + baseName = "cl-xmlspam"; 4 + version = "20101006-http"; 5 5 6 - description = ''Streaming pattern matching for XML''; 6 + description = "Streaming pattern matching for XML"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."cl-ppcre" args."closure-common" args."cxml" args."puri" args."trivial-features" args."trivial-gray-streams" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-xmlspam/2010-10-06/cl-xmlspam-20101006-http.tgz''; 12 - sha256 = ''1mx1a6ab4irncrx5pamh7zng35m4c5wh0pw68avaz7fbz81s953h''; 11 + url = "http://beta.quicklisp.org/archive/cl-xmlspam/2010-10-06/cl-xmlspam-20101006-http.tgz"; 12 + sha256 = "1mx1a6ab4irncrx5pamh7zng35m4c5wh0pw68avaz7fbz81s953h"; 13 13 }; 14 14 15 15 packageName = "cl-xmlspam";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl_plus_ssl.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cl_plus_ssl''; 4 - version = ''cl+ssl-20200610-git''; 3 + baseName = "cl_plus_ssl"; 4 + version = "cl+ssl-20200610-git"; 5 5 6 - description = ''Common Lisp interface to OpenSSL.''; 6 + description = "Common Lisp interface to OpenSSL."; 7 7 8 8 deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."flexi-streams" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."uiop" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl+ssl/2020-06-10/cl+ssl-20200610-git.tgz''; 12 - sha256 = ''1kijg8vlwcxraknp4gadf3n5zjchkgg8axr94v3kas9rb717r6ql''; 11 + url = "http://beta.quicklisp.org/archive/cl+ssl/2020-06-10/cl+ssl-20200610-git.tgz"; 12 + sha256 = "1kijg8vlwcxraknp4gadf3n5zjchkgg8axr94v3kas9rb717r6ql"; 13 13 }; 14 14 15 15 packageName = "cl+ssl";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-handler-hunchentoot.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clack-handler-hunchentoot''; 4 - version = ''clack-20191007-git''; 3 + baseName = "clack-handler-hunchentoot"; 4 + version = "clack-20191007-git"; 5 5 6 - description = ''Clack handler for Hunchentoot.''; 6 + description = "Clack handler for Hunchentoot."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz''; 12 - sha256 = ''004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w''; 11 + url = "http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz"; 12 + sha256 = "004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w"; 13 13 }; 14 14 15 15 packageName = "clack-handler-hunchentoot";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-socket.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clack-socket''; 4 - version = ''clack-20191007-git''; 3 + baseName = "clack-socket"; 4 + version = "clack-20191007-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz''; 12 - sha256 = ''004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w''; 11 + url = "http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz"; 12 + sha256 = "004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w"; 13 13 }; 14 14 15 15 packageName = "clack-socket";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-test.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clack-test''; 4 - version = ''clack-20191007-git''; 3 + baseName = "clack-test"; 4 + version = "clack-20191007-git"; 5 5 6 - description = ''Testing Clack Applications.''; 6 + description = "Testing Clack Applications."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz''; 12 - sha256 = ''004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w''; 11 + url = "http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz"; 12 + sha256 = "004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w"; 13 13 }; 14 14 15 15 packageName = "clack-test";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-v1-compat.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clack-v1-compat''; 4 - version = ''clack-20191007-git''; 3 + baseName = "clack-v1-compat"; 4 + version = "clack-20191007-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz''; 12 - sha256 = ''004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w''; 11 + url = "http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz"; 12 + sha256 = "004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w"; 13 13 }; 14 14 15 15 packageName = "clack-v1-compat";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clack.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clack''; 4 - version = ''20191007-git''; 3 + baseName = "clack"; 4 + version = "20191007-git"; 5 5 6 - description = ''Web application environment for Common Lisp''; 6 + description = "Web application environment for Common Lisp"; 7 7 8 8 deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" args."lack" args."lack-component" args."lack-middleware-backtrace" args."lack-util" args."uiop" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz''; 12 - sha256 = ''004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w''; 11 + url = "http://beta.quicklisp.org/archive/clack/2019-10-07/clack-20191007-git.tgz"; 12 + sha256 = "004drm82mhxmcsa00lbmq2l89g4fzwn6j2drfwdazrpi27z0ry5w"; 13 13 }; 14 14 15 15 packageName = "clack";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clfswm.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clfswm''; 4 - version = ''20161204-git''; 3 + baseName = "clfswm"; 4 + version = "20161204-git"; 5 5 6 - description = ''CLFSWM: Fullscreen Window Manager''; 6 + description = "CLFSWM: Fullscreen Window Manager"; 7 7 8 8 deps = [ args."clx" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clfswm/2016-12-04/clfswm-20161204-git.tgz''; 12 - sha256 = ''1jgz127721dgcv3qm1knc335gy04vzh9gl0hshp256rxi82cpp73''; 11 + url = "http://beta.quicklisp.org/archive/clfswm/2016-12-04/clfswm-20161204-git.tgz"; 12 + sha256 = "1jgz127721dgcv3qm1knc335gy04vzh9gl0hshp256rxi82cpp73"; 13 13 }; 14 14 15 15 packageName = "clfswm";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/closer-mop.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''closer-mop''; 4 - version = ''20201016-git''; 3 + baseName = "closer-mop"; 4 + version = "20201016-git"; 5 5 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.''; 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 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/closer-mop/2020-10-16/closer-mop-20201016-git.tgz''; 12 - sha256 = ''1fccvxzrrfdiwjx9cdia7idp8xym1y86bf7zcyxvmpkdcvgdsdcd''; 11 + url = "http://beta.quicklisp.org/archive/closer-mop/2020-10-16/closer-mop-20201016-git.tgz"; 12 + sha256 = "1fccvxzrrfdiwjx9cdia7idp8xym1y86bf7zcyxvmpkdcvgdsdcd"; 13 13 }; 14 14 15 15 packageName = "closer-mop";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/closure-common.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''closure-common''; 4 - version = ''20181018-git''; 3 + baseName = "closure-common"; 4 + version = "20181018-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."trivial-features" args."trivial-gray-streams" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/closure-common/2018-10-18/closure-common-20181018-git.tgz''; 12 - sha256 = ''18bp7jnxma9hscp09fa723ws9nnynjil935rp8dy9hp6ypghpxpn''; 11 + url = "http://beta.quicklisp.org/archive/closure-common/2018-10-18/closure-common-20181018-git.tgz"; 12 + sha256 = "18bp7jnxma9hscp09fa723ws9nnynjil935rp8dy9hp6ypghpxpn"; 13 13 }; 14 14 15 15 packageName = "closure-common";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/closure-html.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''closure-html''; 4 - version = ''20180711-git''; 3 + baseName = "closure-html"; 4 + version = "20180711-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."closure-common" args."flexi-streams" args."trivial-features" args."trivial-gray-streams" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/closure-html/2018-07-11/closure-html-20180711-git.tgz''; 12 - sha256 = ''0ljcrz1wix77h1ywp0bixm3pb5ncmr1vdiwh8m1qzkygwpfjr8aq''; 11 + url = "http://beta.quicklisp.org/archive/closure-html/2018-07-11/closure-html-20180711-git.tgz"; 12 + sha256 = "0ljcrz1wix77h1ywp0bixm3pb5ncmr1vdiwh8m1qzkygwpfjr8aq"; 13 13 }; 14 14 15 15 packageName = "closure-html";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clsql-postgresql-socket.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clsql-postgresql-socket''; 4 - version = ''clsql-20201016-git''; 3 + baseName = "clsql-postgresql-socket"; 4 + version = "clsql-20201016-git"; 5 5 6 - description = ''Common Lisp SQL PostgreSQL Socket Driver''; 6 + description = "Common Lisp SQL PostgreSQL Socket Driver"; 7 7 8 8 deps = [ args."clsql" args."md5" args."uffi" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clsql/2020-10-16/clsql-20201016-git.tgz''; 12 - sha256 = ''0wzjxcm7df4fipvj5qsqlllai92hkzd4cvlaghvaikcah9r63hv8''; 11 + url = "http://beta.quicklisp.org/archive/clsql/2020-10-16/clsql-20201016-git.tgz"; 12 + sha256 = "0wzjxcm7df4fipvj5qsqlllai92hkzd4cvlaghvaikcah9r63hv8"; 13 13 }; 14 14 15 15 packageName = "clsql-postgresql-socket";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clsql-postgresql.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clsql-postgresql''; 4 - version = ''clsql-20201016-git''; 3 + baseName = "clsql-postgresql"; 4 + version = "clsql-20201016-git"; 5 5 6 - description = ''Common Lisp PostgreSQL API Driver''; 6 + description = "Common Lisp PostgreSQL API Driver"; 7 7 8 8 deps = [ args."clsql" args."clsql-uffi" args."uffi" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clsql/2020-10-16/clsql-20201016-git.tgz''; 12 - sha256 = ''0wzjxcm7df4fipvj5qsqlllai92hkzd4cvlaghvaikcah9r63hv8''; 11 + url = "http://beta.quicklisp.org/archive/clsql/2020-10-16/clsql-20201016-git.tgz"; 12 + sha256 = "0wzjxcm7df4fipvj5qsqlllai92hkzd4cvlaghvaikcah9r63hv8"; 13 13 }; 14 14 15 15 packageName = "clsql-postgresql";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clsql-sqlite3.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clsql-sqlite3''; 4 - version = ''clsql-20201016-git''; 3 + baseName = "clsql-sqlite3"; 4 + version = "clsql-20201016-git"; 5 5 6 - description = ''Common Lisp Sqlite3 Driver''; 6 + description = "Common Lisp Sqlite3 Driver"; 7 7 8 8 deps = [ args."clsql" args."clsql-uffi" args."uffi" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clsql/2020-10-16/clsql-20201016-git.tgz''; 12 - sha256 = ''0wzjxcm7df4fipvj5qsqlllai92hkzd4cvlaghvaikcah9r63hv8''; 11 + url = "http://beta.quicklisp.org/archive/clsql/2020-10-16/clsql-20201016-git.tgz"; 12 + sha256 = "0wzjxcm7df4fipvj5qsqlllai92hkzd4cvlaghvaikcah9r63hv8"; 13 13 }; 14 14 15 15 packageName = "clsql-sqlite3";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clsql-uffi.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clsql-uffi''; 4 - version = ''clsql-20201016-git''; 3 + baseName = "clsql-uffi"; 4 + version = "clsql-20201016-git"; 5 5 6 - description = ''Common UFFI Helper functions for Common Lisp SQL Interface Library''; 6 + description = "Common UFFI Helper functions for Common Lisp SQL Interface Library"; 7 7 8 8 deps = [ args."clsql" args."uffi" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clsql/2020-10-16/clsql-20201016-git.tgz''; 12 - sha256 = ''0wzjxcm7df4fipvj5qsqlllai92hkzd4cvlaghvaikcah9r63hv8''; 11 + url = "http://beta.quicklisp.org/archive/clsql/2020-10-16/clsql-20201016-git.tgz"; 12 + sha256 = "0wzjxcm7df4fipvj5qsqlllai92hkzd4cvlaghvaikcah9r63hv8"; 13 13 }; 14 14 15 15 packageName = "clsql-uffi";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clsql.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clsql''; 4 - version = ''20201016-git''; 3 + baseName = "clsql"; 4 + version = "20201016-git"; 5 5 6 - description = ''Common Lisp SQL Interface library''; 6 + description = "Common Lisp SQL Interface library"; 7 7 8 8 deps = [ args."uffi" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clsql/2020-10-16/clsql-20201016-git.tgz''; 12 - sha256 = ''0wzjxcm7df4fipvj5qsqlllai92hkzd4cvlaghvaikcah9r63hv8''; 11 + url = "http://beta.quicklisp.org/archive/clsql/2020-10-16/clsql-20201016-git.tgz"; 12 + sha256 = "0wzjxcm7df4fipvj5qsqlllai92hkzd4cvlaghvaikcah9r63hv8"; 13 13 }; 14 14 15 15 packageName = "clsql";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clss.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clss''; 4 - version = ''20191130-git''; 3 + baseName = "clss"; 4 + version = "20191130-git"; 5 5 6 - description = ''A DOM tree searching engine based on CSS selectors.''; 6 + description = "A DOM tree searching engine based on CSS selectors."; 7 7 8 8 deps = [ args."array-utils" args."documentation-utils" args."plump" args."trivial-indent" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clss/2019-11-30/clss-20191130-git.tgz''; 12 - sha256 = ''0cbjzsc90fpa8zqv5s0ri7ncbv6f8azgbbfsxswqfphbibkcpcka''; 11 + url = "http://beta.quicklisp.org/archive/clss/2019-11-30/clss-20191130-git.tgz"; 12 + sha256 = "0cbjzsc90fpa8zqv5s0ri7ncbv6f8azgbbfsxswqfphbibkcpcka"; 13 13 }; 14 14 15 15 packageName = "clss";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clump-2-3-tree.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clump-2-3-tree''; 4 - version = ''clump-20160825-git''; 3 + baseName = "clump-2-3-tree"; 4 + version = "clump-20160825-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ args."acclimation" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz''; 12 - sha256 = ''1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl''; 11 + url = "http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz"; 12 + sha256 = "1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl"; 13 13 }; 14 14 15 15 packageName = "clump-2-3-tree";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clump-binary-tree.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clump-binary-tree''; 4 - version = ''clump-20160825-git''; 3 + baseName = "clump-binary-tree"; 4 + version = "clump-20160825-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ args."acclimation" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz''; 12 - sha256 = ''1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl''; 11 + url = "http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz"; 12 + sha256 = "1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl"; 13 13 }; 14 14 15 15 packageName = "clump-binary-tree";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clump.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clump''; 4 - version = ''20160825-git''; 3 + baseName = "clump"; 4 + version = "20160825-git"; 5 5 6 - description = ''Library for operations on different kinds of trees''; 6 + description = "Library for operations on different kinds of trees"; 7 7 8 8 deps = [ args."acclimation" args."clump-2-3-tree" args."clump-binary-tree" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz''; 12 - sha256 = ''1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl''; 11 + url = "http://beta.quicklisp.org/archive/clump/2016-08-25/clump-20160825-git.tgz"; 12 + sha256 = "1mngxmwklpi52inihkp4akzdi7y32609spfi70yamwgzc1wijbrl"; 13 13 }; 14 14 15 15 packageName = "clump";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clunit.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clunit''; 4 - version = ''20171019-git''; 3 + baseName = "clunit"; 4 + version = "20171019-git"; 5 5 6 - description = ''CLUnit is a Common Lisp unit testing framework.''; 6 + description = "CLUnit is a Common Lisp unit testing framework."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clunit/2017-10-19/clunit-20171019-git.tgz''; 12 - sha256 = ''1rapyh0fbjnksj8j3y6imzya1kw80882w18j0fv9iq1hlp718zs5''; 11 + url = "http://beta.quicklisp.org/archive/clunit/2017-10-19/clunit-20171019-git.tgz"; 12 + sha256 = "1rapyh0fbjnksj8j3y6imzya1kw80882w18j0fv9iq1hlp718zs5"; 13 13 }; 14 14 15 15 packageName = "clunit";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clunit2.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clunit2''; 4 - version = ''20201016-git''; 3 + baseName = "clunit2"; 4 + version = "20201016-git"; 5 5 6 - description = ''CLUnit is a Common Lisp unit testing framework.''; 6 + description = "CLUnit is a Common Lisp unit testing framework."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clunit2/2020-10-16/clunit2-20201016-git.tgz''; 12 - sha256 = ''1mj3c125drq9a3pxrh0r8q3gqgq68yk7qi0zbqh4mkpavl1aspdp''; 11 + url = "http://beta.quicklisp.org/archive/clunit2/2020-10-16/clunit2-20201016-git.tgz"; 12 + sha256 = "1mj3c125drq9a3pxrh0r8q3gqgq68yk7qi0zbqh4mkpavl1aspdp"; 13 13 }; 14 14 15 15 packageName = "clunit2";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/clx.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''clx''; 4 - version = ''20200715-git''; 3 + baseName = "clx"; 4 + version = "20200715-git"; 5 5 6 6 parasites = [ "clx/test" ]; 7 7 8 - description = ''An implementation of the X Window System protocol in Lisp.''; 8 + description = "An implementation of the X Window System protocol in Lisp."; 9 9 10 10 deps = [ args."fiasco" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/clx/2020-07-15/clx-20200715-git.tgz''; 14 - sha256 = ''1fvx6m3imvkkd0z5a3jmm2v6mkrndwsidhykrs229rqx343zg8ra''; 13 + url = "http://beta.quicklisp.org/archive/clx/2020-07-15/clx-20200715-git.tgz"; 14 + sha256 = "1fvx6m3imvkkd0z5a3jmm2v6mkrndwsidhykrs229rqx343zg8ra"; 15 15 }; 16 16 17 17 packageName = "clx";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/collectors.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''collectors''; 4 - version = ''20161204-git''; 3 + baseName = "collectors"; 4 + version = "20161204-git"; 5 5 6 6 parasites = [ "collectors-test" ]; 7 7 ··· 11 11 deps = [ args."alexandria" args."closer-mop" args."iterate" args."lisp-unit2" args."symbol-munger" ]; 12 12 13 13 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/collectors/2016-12-04/collectors-20161204-git.tgz''; 15 - sha256 = ''0cf2y2yxraqs9v54gbj8hhp7s522gz8qfwwc5hvlhl2s7540b2zf''; 14 + url = "http://beta.quicklisp.org/archive/collectors/2016-12-04/collectors-20161204-git.tgz"; 15 + sha256 = "0cf2y2yxraqs9v54gbj8hhp7s522gz8qfwwc5hvlhl2s7540b2zf"; 16 16 }; 17 17 18 18 packageName = "collectors";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/colorize.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''colorize''; 4 - version = ''20180228-git''; 3 + baseName = "colorize"; 4 + version = "20180228-git"; 5 5 6 - description = ''A Syntax highlighting library''; 6 + description = "A Syntax highlighting library"; 7 7 8 8 deps = [ args."alexandria" args."html-encode" args."split-sequence" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/colorize/2018-02-28/colorize-20180228-git.tgz''; 12 - sha256 = ''1g0xbryavsf17zy9iy0sbqsb4lyva04h93sbaj3iwv12w50fwz2h''; 11 + url = "http://beta.quicklisp.org/archive/colorize/2018-02-28/colorize-20180228-git.tgz"; 12 + sha256 = "1g0xbryavsf17zy9iy0sbqsb4lyva04h93sbaj3iwv12w50fwz2h"; 13 13 }; 14 14 15 15 packageName = "colorize";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/command-line-arguments.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''command-line-arguments''; 4 - version = ''20200325-git''; 3 + baseName = "command-line-arguments"; 4 + version = "20200325-git"; 5 5 6 - description = ''small library to deal with command-line arguments''; 6 + description = "small library to deal with command-line arguments"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/command-line-arguments/2020-03-25/command-line-arguments-20200325-git.tgz''; 12 - sha256 = ''0ny0c0aw3mfjpmf31pnd9zfnylqh8ji2yi636w1f352c13z2w5sz''; 11 + url = "http://beta.quicklisp.org/archive/command-line-arguments/2020-03-25/command-line-arguments-20200325-git.tgz"; 12 + sha256 = "0ny0c0aw3mfjpmf31pnd9zfnylqh8ji2yi636w1f352c13z2w5sz"; 13 13 }; 14 14 15 15 packageName = "command-line-arguments";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/css-lite.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''css-lite''; 4 - version = ''20120407-git''; 3 + baseName = "css-lite"; 4 + version = "20120407-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/css-lite/2012-04-07/css-lite-20120407-git.tgz''; 12 - sha256 = ''1gf1qqaxhly6ixh9ykqhg9b52s8p5wlwi46vp2k29qy7gmx4f1qg''; 11 + url = "http://beta.quicklisp.org/archive/css-lite/2012-04-07/css-lite-20120407-git.tgz"; 12 + sha256 = "1gf1qqaxhly6ixh9ykqhg9b52s8p5wlwi46vp2k29qy7gmx4f1qg"; 13 13 }; 14 14 15 15 packageName = "css-lite";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/css-selectors-simple-tree.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''css-selectors-simple-tree''; 4 - version = ''css-selectors-20160628-git''; 3 + baseName = "css-selectors-simple-tree"; 4 + version = "css-selectors-20160628-git"; 5 5 6 - description = ''An implementation of css selectors that interacts with cl-html5-parser's simple-tree''; 6 + description = "An implementation of css selectors that interacts with cl-html5-parser's simple-tree"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz''; 12 - sha256 = ''0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b''; 11 + url = "http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz"; 12 + sha256 = "0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b"; 13 13 }; 14 14 15 15 packageName = "css-selectors-simple-tree";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/css-selectors-stp.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''css-selectors-stp''; 4 - version = ''css-selectors-20160628-git''; 3 + baseName = "css-selectors-stp"; 4 + version = "css-selectors-20160628-git"; 5 5 6 - description = ''An implementation of css selectors that interacts with cxml-stp''; 6 + description = "An implementation of css selectors that interacts with cxml-stp"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz''; 12 - sha256 = ''0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b''; 11 + url = "http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz"; 12 + sha256 = "0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b"; 13 13 }; 14 14 15 15 packageName = "css-selectors-stp";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/css-selectors.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''css-selectors''; 4 - version = ''20160628-git''; 3 + baseName = "css-selectors"; 4 + version = "20160628-git"; 5 5 6 6 parasites = [ "css-selectors-test" ]; 7 7 8 - description = ''An implementation of css selectors''; 8 + description = "An implementation of css selectors"; 9 9 10 10 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz''; 14 - sha256 = ''0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b''; 13 + url = "http://beta.quicklisp.org/archive/css-selectors/2016-06-28/css-selectors-20160628-git.tgz"; 14 + sha256 = "0y9q719w5cv4g7in731q5p98n7pznb05vr7i7wi92mmpah2g1w4b"; 15 15 }; 16 16 17 17 packageName = "css-selectors";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cxml-stp.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cxml-stp''; 4 - version = ''20200325-git''; 3 + baseName = "cxml-stp"; 4 + version = "20200325-git"; 5 5 6 6 parasites = [ "cxml-stp/test" ]; 7 7 8 - description = ''System lacks description''; 8 + description = "System lacks description"; 9 9 10 10 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cxml-stp/2020-03-25/cxml-stp-20200325-git.tgz''; 14 - sha256 = ''1y26bksmysvxifqx4lslpbsdvmcqkf7di36a3yyqnjgrb5r0jv1n''; 13 + url = "http://beta.quicklisp.org/archive/cxml-stp/2020-03-25/cxml-stp-20200325-git.tgz"; 14 + sha256 = "1y26bksmysvxifqx4lslpbsdvmcqkf7di36a3yyqnjgrb5r0jv1n"; 15 15 }; 16 16 17 17 packageName = "cxml-stp";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/cxml.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''cxml''; 4 - version = ''20200610-git''; 3 + baseName = "cxml"; 4 + version = "20200610-git"; 5 5 6 6 parasites = [ "cxml/dom" "cxml/klacks" "cxml/test" "cxml/xml" ]; 7 7 8 - description = ''Closure XML - a Common Lisp XML parser''; 8 + description = "Closure XML - a Common Lisp XML parser"; 9 9 10 10 deps = [ args."alexandria" args."babel" args."closure-common" args."puri" args."trivial-features" args."trivial-gray-streams" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cxml/2020-06-10/cxml-20200610-git.tgz''; 14 - sha256 = ''0545rh4mfxqx2yn9b48s0hzd5w80kars7hpykbg0lgf7ys5218mq''; 13 + url = "http://beta.quicklisp.org/archive/cxml/2020-06-10/cxml-20200610-git.tgz"; 14 + sha256 = "0545rh4mfxqx2yn9b48s0hzd5w80kars7hpykbg0lgf7ys5218mq"; 15 15 }; 16 16 17 17 packageName = "cxml";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-mysql.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''dbd-mysql''; 4 - version = ''cl-dbi-20200610-git''; 3 + baseName = "dbd-mysql"; 4 + version = "cl-dbi-20200610-git"; 5 5 6 - description = ''Database driver for MySQL.''; 6 + description = "Database driver for MySQL."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-dbi/2020-06-10/cl-dbi-20200610-git.tgz''; 12 - sha256 = ''1d7hwywcqzqwmr5b42c0mmjq3v3xxd4cwb4fn5k1wd7j6pr0bkas''; 11 + url = "http://beta.quicklisp.org/archive/cl-dbi/2020-06-10/cl-dbi-20200610-git.tgz"; 12 + sha256 = "1d7hwywcqzqwmr5b42c0mmjq3v3xxd4cwb4fn5k1wd7j6pr0bkas"; 13 13 }; 14 14 15 15 packageName = "dbd-mysql";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-postgres.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''dbd-postgres''; 4 - version = ''cl-dbi-20200610-git''; 3 + baseName = "dbd-postgres"; 4 + version = "cl-dbi-20200610-git"; 5 5 6 - description = ''Database driver for PostgreSQL.''; 6 + description = "Database driver for PostgreSQL."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-dbi/2020-06-10/cl-dbi-20200610-git.tgz''; 12 - sha256 = ''1d7hwywcqzqwmr5b42c0mmjq3v3xxd4cwb4fn5k1wd7j6pr0bkas''; 11 + url = "http://beta.quicklisp.org/archive/cl-dbi/2020-06-10/cl-dbi-20200610-git.tgz"; 12 + sha256 = "1d7hwywcqzqwmr5b42c0mmjq3v3xxd4cwb4fn5k1wd7j6pr0bkas"; 13 13 }; 14 14 15 15 packageName = "dbd-postgres";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-sqlite3.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''dbd-sqlite3''; 4 - version = ''cl-dbi-20200610-git''; 3 + baseName = "dbd-sqlite3"; 4 + version = "cl-dbi-20200610-git"; 5 5 6 - description = ''Database driver for SQLite3.''; 6 + description = "Database driver for SQLite3."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-dbi/2020-06-10/cl-dbi-20200610-git.tgz''; 12 - sha256 = ''1d7hwywcqzqwmr5b42c0mmjq3v3xxd4cwb4fn5k1wd7j6pr0bkas''; 11 + url = "http://beta.quicklisp.org/archive/cl-dbi/2020-06-10/cl-dbi-20200610-git.tgz"; 12 + sha256 = "1d7hwywcqzqwmr5b42c0mmjq3v3xxd4cwb4fn5k1wd7j6pr0bkas"; 13 13 }; 14 14 15 15 packageName = "dbd-sqlite3";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dbi-test.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''dbi-test''; 4 - version = ''cl-dbi-20200610-git''; 3 + baseName = "dbi-test"; 4 + version = "cl-dbi-20200610-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-dbi/2020-06-10/cl-dbi-20200610-git.tgz''; 12 - sha256 = ''1d7hwywcqzqwmr5b42c0mmjq3v3xxd4cwb4fn5k1wd7j6pr0bkas''; 11 + url = "http://beta.quicklisp.org/archive/cl-dbi/2020-06-10/cl-dbi-20200610-git.tgz"; 12 + sha256 = "1d7hwywcqzqwmr5b42c0mmjq3v3xxd4cwb4fn5k1wd7j6pr0bkas"; 13 13 }; 14 14 15 15 packageName = "dbi-test";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dbi.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''dbi''; 4 - version = ''cl-20200610-git''; 3 + baseName = "dbi"; 4 + version = "cl-20200610-git"; 5 5 6 6 parasites = [ "dbi/test" ]; 7 7 8 - description = ''Database independent interface for Common Lisp''; 8 + description = "Database independent interface for Common Lisp"; 9 9 10 10 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/cl-dbi/2020-06-10/cl-dbi-20200610-git.tgz''; 14 - sha256 = ''1d7hwywcqzqwmr5b42c0mmjq3v3xxd4cwb4fn5k1wd7j6pr0bkas''; 13 + url = "http://beta.quicklisp.org/archive/cl-dbi/2020-06-10/cl-dbi-20200610-git.tgz"; 14 + sha256 = "1d7hwywcqzqwmr5b42c0mmjq3v3xxd4cwb4fn5k1wd7j6pr0bkas"; 15 15 }; 16 16 17 17 packageName = "dbi";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dbus.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''dbus''; 4 - version = ''20200610-git''; 3 + baseName = "dbus"; 4 + version = "20200610-git"; 5 5 6 - description = ''A D-BUS client library for Common Lisp''; 6 + description = "A D-BUS client library for Common Lisp"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/dbus/2020-06-10/dbus-20200610-git.tgz''; 12 - sha256 = ''1njwjf1z9xngsfmlddmbcan49vcjqvvxfkhbi62xcxwbn9rgqn79''; 11 + url = "http://beta.quicklisp.org/archive/dbus/2020-06-10/dbus-20200610-git.tgz"; 12 + sha256 = "1njwjf1z9xngsfmlddmbcan49vcjqvvxfkhbi62xcxwbn9rgqn79"; 13 13 }; 14 14 15 15 packageName = "dbus";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dexador.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''dexador''; 4 - version = ''20200427-git''; 3 + baseName = "dexador"; 4 + version = "20200427-git"; 5 5 6 - description = ''Yet another HTTP client for Common Lisp''; 6 + description = "Yet another HTTP client for Common Lisp"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/dexador/2020-04-27/dexador-20200427-git.tgz''; 12 - sha256 = ''0qy8x47ni270dzwscy86nkwfzn491w2jqwyg57dm6w8lkjzwpgld''; 11 + url = "http://beta.quicklisp.org/archive/dexador/2020-04-27/dexador-20200427-git.tgz"; 12 + sha256 = "0qy8x47ni270dzwscy86nkwfzn491w2jqwyg57dm6w8lkjzwpgld"; 13 13 }; 14 14 15 15 packageName = "dexador";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/dissect.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''dissect''; 4 - version = ''20200427-git''; 3 + baseName = "dissect"; 4 + version = "20200427-git"; 5 5 6 - description = ''A lib for introspecting the call stack and active restarts.''; 6 + description = "A lib for introspecting the call stack and active restarts."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/dissect/2020-04-27/dissect-20200427-git.tgz''; 12 - sha256 = ''1d7sri20jma9r105lxv0sx2q60kb8zp7bf023kain3rnyqr74v8a''; 11 + url = "http://beta.quicklisp.org/archive/dissect/2020-04-27/dissect-20200427-git.tgz"; 12 + sha256 = "1d7sri20jma9r105lxv0sx2q60kb8zp7bf023kain3rnyqr74v8a"; 13 13 }; 14 14 15 15 packageName = "dissect";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/djula.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''djula''; 4 - version = ''20201016-git''; 3 + baseName = "djula"; 4 + version = "20201016-git"; 5 5 6 - description = ''An implementation of Django templates for Common Lisp.''; 6 + description = "An implementation of Django templates for Common Lisp."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/djula/2020-10-16/djula-20201016-git.tgz''; 12 - sha256 = ''09j9wmvs3vgx291p11dclrpwx0dqknazzadikg2320nv7a29zgiy''; 11 + url = "http://beta.quicklisp.org/archive/djula/2020-10-16/djula-20201016-git.tgz"; 12 + sha256 = "09j9wmvs3vgx291p11dclrpwx0dqknazzadikg2320nv7a29zgiy"; 13 13 }; 14 14 15 15 packageName = "djula";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/do-urlencode.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''do-urlencode''; 4 - version = ''20181018-git''; 3 + baseName = "do-urlencode"; 4 + version = "20181018-git"; 5 5 6 - description = ''Percent Encoding (aka URL Encoding) library''; 6 + description = "Percent Encoding (aka URL Encoding) library"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/do-urlencode/2018-10-18/do-urlencode-20181018-git.tgz''; 12 - sha256 = ''1cajd219s515y65kp562c6xczqaq0p4lyp13iv00z6i44rijmfp2''; 11 + url = "http://beta.quicklisp.org/archive/do-urlencode/2018-10-18/do-urlencode-20181018-git.tgz"; 12 + sha256 = "1cajd219s515y65kp562c6xczqaq0p4lyp13iv00z6i44rijmfp2"; 13 13 }; 14 14 15 15 packageName = "do-urlencode";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/documentation-utils.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''documentation-utils''; 4 - version = ''20190710-git''; 3 + baseName = "documentation-utils"; 4 + version = "20190710-git"; 5 5 6 - description = ''A few simple tools to help you with documenting your library.''; 6 + description = "A few simple tools to help you with documenting your library."; 7 7 8 8 deps = [ args."trivial-indent" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/documentation-utils/2019-07-10/documentation-utils-20190710-git.tgz''; 12 - sha256 = ''1n3z8sw75k2jjpsg6ch5g9s4v56y96dbs4338ajrfdsk3pk4wgj3''; 11 + url = "http://beta.quicklisp.org/archive/documentation-utils/2019-07-10/documentation-utils-20190710-git.tgz"; 12 + sha256 = "1n3z8sw75k2jjpsg6ch5g9s4v56y96dbs4338ajrfdsk3pk4wgj3"; 13 13 }; 14 14 15 15 packageName = "documentation-utils";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/drakma.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''drakma''; 4 - version = ''v2.0.7''; 3 + baseName = "drakma"; 4 + version = "v2.0.7"; 5 5 6 - description = ''Full-featured http/https client based on usocket''; 6 + description = "Full-featured http/https client based on usocket"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/drakma/2019-11-30/drakma-v2.0.7.tgz''; 12 - sha256 = ''1r0sh0nsx7fq24yybazjw8n7grk1b85l52x523axwchnnaj58kzw''; 11 + url = "http://beta.quicklisp.org/archive/drakma/2019-11-30/drakma-v2.0.7.tgz"; 12 + sha256 = "1r0sh0nsx7fq24yybazjw8n7grk1b85l52x523axwchnnaj58kzw"; 13 13 }; 14 14 15 15 packageName = "drakma";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/enchant.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''enchant''; 4 - version = ''cl-20190521-git''; 3 + baseName = "enchant"; 4 + version = "cl-20190521-git"; 5 5 6 - description = ''Programming interface for Enchant spell-checker library''; 6 + description = "Programming interface for Enchant spell-checker library"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-enchant/2019-05-21/cl-enchant-20190521-git.tgz''; 12 - sha256 = ''16ag48fr74m536an8fak5z0lfjdb265gv1ajai1lqg0vq2l5mr14''; 11 + url = "http://beta.quicklisp.org/archive/cl-enchant/2019-05-21/cl-enchant-20190521-git.tgz"; 12 + sha256 = "16ag48fr74m536an8fak5z0lfjdb265gv1ajai1lqg0vq2l5mr14"; 13 13 }; 14 14 15 15 packageName = "enchant";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/esrap-peg.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''esrap-peg''; 4 - version = ''20191007-git''; 3 + baseName = "esrap-peg"; 4 + version = "20191007-git"; 5 5 6 - description = ''A wrapper around Esrap to allow generating Esrap grammars from PEG definitions''; 6 + description = "A wrapper around Esrap to allow generating Esrap grammars from PEG definitions"; 7 7 8 8 deps = [ args."alexandria" args."cl-unification" args."esrap" args."iterate" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/esrap-peg/2019-10-07/esrap-peg-20191007-git.tgz''; 12 - sha256 = ''0285ngcm73rpzmr0ydy6frps2b4q6n4jymjv3ncwsh81x5blfvis''; 11 + url = "http://beta.quicklisp.org/archive/esrap-peg/2019-10-07/esrap-peg-20191007-git.tgz"; 12 + sha256 = "0285ngcm73rpzmr0ydy6frps2b4q6n4jymjv3ncwsh81x5blfvis"; 13 13 }; 14 14 15 15 packageName = "esrap-peg";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/esrap.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''esrap''; 4 - version = ''20200325-git''; 3 + baseName = "esrap"; 4 + version = "20200325-git"; 5 5 6 6 parasites = [ "esrap/tests" ]; 7 7 8 - description = ''A Packrat / Parsing Grammar / TDPL parser for Common Lisp.''; 8 + description = "A Packrat / Parsing Grammar / TDPL parser for Common Lisp."; 9 9 10 10 deps = [ args."alexandria" args."fiveam" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/esrap/2020-03-25/esrap-20200325-git.tgz''; 14 - sha256 = ''1pwgjsm19nxx8d4iwbn3x7g08r6qyq1vmp9m83m87r53597b3a68''; 13 + url = "http://beta.quicklisp.org/archive/esrap/2020-03-25/esrap-20200325-git.tgz"; 14 + sha256 = "1pwgjsm19nxx8d4iwbn3x7g08r6qyq1vmp9m83m87r53597b3a68"; 15 15 }; 16 16 17 17 packageName = "esrap";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/external-program.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''external-program''; 4 - version = ''20190307-git''; 3 + baseName = "external-program"; 4 + version = "20190307-git"; 5 5 6 6 parasites = [ "external-program-test" ]; 7 7 8 - description = ''System lacks description''; 8 + description = "System lacks description"; 9 9 10 10 deps = [ args."fiveam" args."trivial-features" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/external-program/2019-03-07/external-program-20190307-git.tgz''; 14 - sha256 = ''1nl3mngh7vp2l9mfbdhni4nc164zznafnl74p1kv9j07n5fcpnyz''; 13 + url = "http://beta.quicklisp.org/archive/external-program/2019-03-07/external-program-20190307-git.tgz"; 14 + sha256 = "1nl3mngh7vp2l9mfbdhni4nc164zznafnl74p1kv9j07n5fcpnyz"; 15 15 }; 16 16 17 17 packageName = "external-program";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-csv.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''fare-csv''; 4 - version = ''20171227-git''; 3 + baseName = "fare-csv"; 4 + version = "20171227-git"; 5 5 6 - description = ''Robust CSV parser and printer''; 6 + description = "Robust CSV parser and printer"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-csv/2017-12-27/fare-csv-20171227-git.tgz''; 12 - sha256 = ''1hkzg05kq2c4xihsfx4wk1k6mmjq2fw40id8vy0315rpa47a5i7x''; 11 + url = "http://beta.quicklisp.org/archive/fare-csv/2017-12-27/fare-csv-20171227-git.tgz"; 12 + sha256 = "1hkzg05kq2c4xihsfx4wk1k6mmjq2fw40id8vy0315rpa47a5i7x"; 13 13 }; 14 14 15 15 packageName = "fare-csv";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-mop.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''fare-mop''; 4 - version = ''20151218-git''; 3 + baseName = "fare-mop"; 4 + version = "20151218-git"; 5 5 6 - description = ''Utilities using the MOP; notably make informative pretty-printing trivial''; 6 + description = "Utilities using the MOP; notably make informative pretty-printing trivial"; 7 7 8 8 deps = [ args."closer-mop" args."fare-utils" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-mop/2015-12-18/fare-mop-20151218-git.tgz''; 12 - sha256 = ''0bvrwqvacy114xsblrk2w28qk6b484a3p0w14mzl264b3wjrdna9''; 11 + url = "http://beta.quicklisp.org/archive/fare-mop/2015-12-18/fare-mop-20151218-git.tgz"; 12 + sha256 = "0bvrwqvacy114xsblrk2w28qk6b484a3p0w14mzl264b3wjrdna9"; 13 13 }; 14 14 15 15 packageName = "fare-mop";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-quasiquote-extras.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''fare-quasiquote-extras''; 4 - version = ''fare-quasiquote-20200925-git''; 3 + baseName = "fare-quasiquote-extras"; 4 + version = "fare-quasiquote-20200925-git"; 5 5 6 - description = ''fare-quasiquote plus extras''; 6 + description = "fare-quasiquote plus extras"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz''; 12 - sha256 = ''0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b''; 11 + url = "http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz"; 12 + sha256 = "0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b"; 13 13 }; 14 14 15 15 packageName = "fare-quasiquote-extras";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-quasiquote-optima.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''fare-quasiquote-optima''; 4 - version = ''fare-quasiquote-20200925-git''; 3 + baseName = "fare-quasiquote-optima"; 4 + version = "fare-quasiquote-20200925-git"; 5 5 6 - description = ''fare-quasiquote extension for optima''; 6 + description = "fare-quasiquote extension for optima"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz''; 12 - sha256 = ''0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b''; 11 + url = "http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz"; 12 + sha256 = "0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b"; 13 13 }; 14 14 15 15 packageName = "fare-quasiquote-optima";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-quasiquote-readtable.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''fare-quasiquote-readtable''; 4 - version = ''fare-quasiquote-20200925-git''; 3 + baseName = "fare-quasiquote-readtable"; 4 + version = "fare-quasiquote-20200925-git"; 5 5 6 - description = ''Using fare-quasiquote with named-readtable''; 6 + description = "Using fare-quasiquote with named-readtable"; 7 7 8 8 deps = [ args."fare-quasiquote" args."fare-utils" args."named-readtables" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz''; 12 - sha256 = ''0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b''; 11 + url = "http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz"; 12 + sha256 = "0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b"; 13 13 }; 14 14 15 15 packageName = "fare-quasiquote-readtable";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-quasiquote.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''fare-quasiquote''; 4 - version = ''20200925-git''; 3 + baseName = "fare-quasiquote"; 4 + version = "20200925-git"; 5 5 6 - description = ''Portable, matchable implementation of quasiquote''; 6 + description = "Portable, matchable implementation of quasiquote"; 7 7 8 8 deps = [ args."fare-utils" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz''; 12 - sha256 = ''0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b''; 11 + url = "http://beta.quicklisp.org/archive/fare-quasiquote/2020-09-25/fare-quasiquote-20200925-git.tgz"; 12 + sha256 = "0k25kx4gvr046bcnv5mqxbb4483v9p2lk7dvzjkgj2cxrvczmj8b"; 13 13 }; 14 14 15 15 packageName = "fare-quasiquote";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fare-utils.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''fare-utils''; 4 - version = ''20170124-git''; 3 + baseName = "fare-utils"; 4 + version = "20170124-git"; 5 5 6 - description = ''Basic functions and macros, interfaces, pure and stateful datastructures''; 6 + description = "Basic functions and macros, interfaces, pure and stateful datastructures"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fare-utils/2017-01-24/fare-utils-20170124-git.tgz''; 12 - sha256 = ''0jhb018ccn3spkgjywgd0524m5qacn8x15fdiban4zz3amj9dapq''; 11 + url = "http://beta.quicklisp.org/archive/fare-utils/2017-01-24/fare-utils-20170124-git.tgz"; 12 + sha256 = "0jhb018ccn3spkgjywgd0524m5qacn8x15fdiban4zz3amj9dapq"; 13 13 }; 14 14 15 15 packageName = "fare-utils";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fast-http.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''fast-http''; 4 - version = ''20191007-git''; 3 + baseName = "fast-http"; 4 + version = "20191007-git"; 5 5 6 - description = ''A fast HTTP protocol parser in Common Lisp''; 6 + description = "A fast HTTP protocol parser in Common Lisp"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fast-http/2019-10-07/fast-http-20191007-git.tgz''; 12 - sha256 = ''00qnl56cfss2blm4pp03dwv84bmkyd0kbarhahclxbn8f7pgwf32''; 11 + url = "http://beta.quicklisp.org/archive/fast-http/2019-10-07/fast-http-20191007-git.tgz"; 12 + sha256 = "00qnl56cfss2blm4pp03dwv84bmkyd0kbarhahclxbn8f7pgwf32"; 13 13 }; 14 14 15 15 packageName = "fast-http";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fast-io.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''fast-io''; 4 - version = ''20200925-git''; 3 + baseName = "fast-io"; 4 + version = "20200925-git"; 5 5 6 - description = ''Alternative I/O mechanism to a stream or vector''; 6 + description = "Alternative I/O mechanism to a stream or vector"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."static-vectors" args."trivial-features" args."trivial-gray-streams" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/fast-io/2020-09-25/fast-io-20200925-git.tgz''; 12 - sha256 = ''1rgyr6y20fp3jqnx5snpjf9lngzalip2a28l04ssypwagmhaa975''; 11 + url = "http://beta.quicklisp.org/archive/fast-io/2020-09-25/fast-io-20200925-git.tgz"; 12 + sha256 = "1rgyr6y20fp3jqnx5snpjf9lngzalip2a28l04ssypwagmhaa975"; 13 13 }; 14 14 15 15 packageName = "fast-io";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fiasco.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''fiasco''; 4 - version = ''20200610-git''; 3 + baseName = "fiasco"; 4 + version = "20200610-git"; 5 5 6 6 parasites = [ "fiasco-self-tests" ]; 7 7 8 - description = ''A Common Lisp test framework that treasures your failures, logical continuation of Stefil.''; 8 + description = "A Common Lisp test framework that treasures your failures, logical continuation of Stefil."; 9 9 10 10 deps = [ args."alexandria" args."trivial-gray-streams" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/fiasco/2020-06-10/fiasco-20200610-git.tgz''; 14 - sha256 = ''1wb0ibw6ka9fbsb40zjipn7vh3jbzyfsvcc9gq19nqhbqa8gy9r4''; 13 + url = "http://beta.quicklisp.org/archive/fiasco/2020-06-10/fiasco-20200610-git.tgz"; 14 + sha256 = "1wb0ibw6ka9fbsb40zjipn7vh3jbzyfsvcc9gq19nqhbqa8gy9r4"; 15 15 }; 16 16 17 17 packageName = "fiasco";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/fiveam.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''fiveam''; 4 - version = ''20200925-git''; 3 + baseName = "fiveam"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "fiveam/test" ]; 7 7 8 - description = ''A simple regression testing framework''; 8 + description = "A simple regression testing framework"; 9 9 10 10 deps = [ args."alexandria" args."net_dot_didierverna_dot_asdf-flv" args."trivial-backtrace" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/fiveam/2020-09-25/fiveam-20200925-git.tgz''; 14 - sha256 = ''0j9dzjs4prlx33f5idbcic4amx2mcgnjcyrpc3dd4b7lrw426l0d''; 13 + url = "http://beta.quicklisp.org/archive/fiveam/2020-09-25/fiveam-20200925-git.tgz"; 14 + sha256 = "0j9dzjs4prlx33f5idbcic4amx2mcgnjcyrpc3dd4b7lrw426l0d"; 15 15 }; 16 16 17 17 packageName = "fiveam";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/flexi-streams.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''flexi-streams''; 4 - version = ''20200925-git''; 3 + baseName = "flexi-streams"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "flexi-streams-test" ]; 7 7 8 - description = ''Flexible bivalent streams for Common Lisp''; 8 + description = "Flexible bivalent streams for Common Lisp"; 9 9 10 10 deps = [ args."trivial-gray-streams" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/flexi-streams/2020-09-25/flexi-streams-20200925-git.tgz''; 14 - sha256 = ''1hmsryfkjnk4gdv803s3hpp71fpdybfl1jb5hgngxpd5lsrq0gb2''; 13 + url = "http://beta.quicklisp.org/archive/flexi-streams/2020-09-25/flexi-streams-20200925-git.tgz"; 14 + sha256 = "1hmsryfkjnk4gdv803s3hpp71fpdybfl1jb5hgngxpd5lsrq0gb2"; 15 15 }; 16 16 17 17 packageName = "flexi-streams";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/form-fiddle.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''form-fiddle''; 4 - version = ''20190710-git''; 3 + baseName = "form-fiddle"; 4 + version = "20190710-git"; 5 5 6 - description = ''A collection of utilities to destructure lambda forms.''; 6 + description = "A collection of utilities to destructure lambda forms."; 7 7 8 8 deps = [ args."documentation-utils" args."trivial-indent" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/form-fiddle/2019-07-10/form-fiddle-20190710-git.tgz''; 12 - sha256 = ''12zmqm2vls043kaka7jp6pnsvkxlyv6x183yjyrs8jk461qfydwl''; 11 + url = "http://beta.quicklisp.org/archive/form-fiddle/2019-07-10/form-fiddle-20190710-git.tgz"; 12 + sha256 = "12zmqm2vls043kaka7jp6pnsvkxlyv6x183yjyrs8jk461qfydwl"; 13 13 }; 14 14 15 15 packageName = "form-fiddle";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/fset.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''fset''; 4 - version = ''20200925-git''; 3 + baseName = "fset"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "fset/test" ]; 7 7 ··· 12 12 deps = [ args."misc-extensions" args."mt19937" args."named-readtables" ]; 13 13 14 14 src = fetchurl { 15 - url = ''http://beta.quicklisp.org/archive/fset/2020-09-25/fset-20200925-git.tgz''; 16 - sha256 = ''19fr6ds1a493b0kbsligpn7i771r1yfshbbkdp0hxs4l792l05wv''; 15 + url = "http://beta.quicklisp.org/archive/fset/2020-09-25/fset-20200925-git.tgz"; 16 + sha256 = "19fr6ds1a493b0kbsligpn7i771r1yfshbbkdp0hxs4l792l05wv"; 17 17 }; 18 18 19 19 packageName = "fset";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/gettext.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''gettext''; 4 - version = ''20171130-git''; 3 + baseName = "gettext"; 4 + version = "20171130-git"; 5 5 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.''; 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 7 8 8 deps = [ args."flexi-streams" args."split-sequence" args."trivial-gray-streams" args."yacc" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/gettext/2017-11-30/gettext-20171130-git.tgz''; 12 - sha256 = ''0nb8i66sb5qmpnk6rk2adlr87m322bra0xpirp63872mybd3y6yd''; 11 + url = "http://beta.quicklisp.org/archive/gettext/2017-11-30/gettext-20171130-git.tgz"; 12 + sha256 = "0nb8i66sb5qmpnk6rk2adlr87m322bra0xpirp63872mybd3y6yd"; 13 13 }; 14 14 15 15 packageName = "gettext";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/global-vars.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''global-vars''; 4 - version = ''20141106-git''; 3 + baseName = "global-vars"; 4 + version = "20141106-git"; 5 5 6 - description = ''Define efficient global variables.''; 6 + description = "Define efficient global variables."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/global-vars/2014-11-06/global-vars-20141106-git.tgz''; 12 - sha256 = ''0bjgmsifs9vrq409rfrsgrhlxwklvls1dpvh2d706i0incxq957j''; 11 + url = "http://beta.quicklisp.org/archive/global-vars/2014-11-06/global-vars-20141106-git.tgz"; 12 + sha256 = "0bjgmsifs9vrq409rfrsgrhlxwklvls1dpvh2d706i0incxq957j"; 13 13 }; 14 14 15 15 packageName = "global-vars";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/html-encode.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''html-encode''; 4 - version = ''1.2''; 3 + baseName = "html-encode"; 4 + version = "1.2"; 5 5 6 - description = ''A library for encoding text in various web-savvy encodings.''; 6 + description = "A library for encoding text in various web-savvy encodings."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-1.2.tgz''; 12 - sha256 = ''06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf''; 11 + url = "http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-1.2.tgz"; 12 + sha256 = "06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf"; 13 13 }; 14 14 15 15 packageName = "html-encode";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/http-body.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''http-body''; 4 - version = ''20190813-git''; 3 + baseName = "http-body"; 4 + version = "20190813-git"; 5 5 6 - description = ''HTTP POST data parser for Common Lisp''; 6 + description = "HTTP POST data parser for Common Lisp"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/http-body/2019-08-13/http-body-20190813-git.tgz''; 12 - sha256 = ''1mc4xinqnvjr7cdyaywdb5lv9k34pal7lhp6f9a660r1rbxybvy8''; 11 + url = "http://beta.quicklisp.org/archive/http-body/2019-08-13/http-body-20190813-git.tgz"; 12 + sha256 = "1mc4xinqnvjr7cdyaywdb5lv9k34pal7lhp6f9a660r1rbxybvy8"; 13 13 }; 14 14 15 15 packageName = "http-body";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''hu_dot_dwim_dot_asdf''; 4 - version = ''20200925-darcs''; 3 + baseName = "hu_dot_dwim_dot_asdf"; 4 + version = "20200925-darcs"; 5 5 6 - description = ''Various ASDF extensions such as attached test and documentation system, explicit development support, etc.''; 6 + description = "Various ASDF extensions such as attached test and documentation system, explicit development support, etc."; 7 7 8 8 deps = [ args."uiop" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/hu.dwim.asdf/2020-09-25/hu.dwim.asdf-20200925-darcs.tgz''; 12 - sha256 = ''1812gk65x8yy8s817zhzga52zvdlagws4sw6a8f6zk7yaaa6br8h''; 11 + url = "http://beta.quicklisp.org/archive/hu.dwim.asdf/2020-09-25/hu.dwim.asdf-20200925-darcs.tgz"; 12 + sha256 = "1812gk65x8yy8s817zhzga52zvdlagws4sw6a8f6zk7yaaa6br8h"; 13 13 }; 14 14 15 15 packageName = "hu.dwim.asdf";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_defclass-star.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''hu_dot_dwim_dot_defclass-star''; 4 - version = ''20150709-darcs''; 3 + baseName = "hu_dot_dwim_dot_defclass-star"; 4 + version = "20150709-darcs"; 5 5 6 - description = ''Simplify class like definitions with defclass* and friends.''; 6 + description = "Simplify class like definitions with defclass* and friends."; 7 7 8 8 deps = [ args."hu_dot_dwim_dot_asdf" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/hu.dwim.defclass-star/2015-07-09/hu.dwim.defclass-star-20150709-darcs.tgz''; 12 - sha256 = ''032982lyp0hm0ssxlyh572whi2hr4j1nqkyqlllaj373v0dbs3vs''; 11 + url = "http://beta.quicklisp.org/archive/hu.dwim.defclass-star/2015-07-09/hu.dwim.defclass-star-20150709-darcs.tgz"; 12 + sha256 = "032982lyp0hm0ssxlyh572whi2hr4j1nqkyqlllaj373v0dbs3vs"; 13 13 }; 14 14 15 15 packageName = "hu.dwim.defclass-star";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_stefil.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''hu_dot_dwim_dot_stefil''; 4 - version = ''20200218-darcs''; 3 + baseName = "hu_dot_dwim_dot_stefil"; 4 + version = "20200218-darcs"; 5 5 6 6 parasites = [ "hu.dwim.stefil/test" ]; 7 7 8 - description = ''A Simple Test Framework In Lisp.''; 8 + description = "A Simple Test Framework In Lisp."; 9 9 10 10 deps = [ args."alexandria" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz''; 14 - sha256 = ''16p25pq9fhk0dny6r43yl9z24g6qm6dag9zf2cila9v9jh3r76qf''; 13 + url = "http://beta.quicklisp.org/archive/hu.dwim.stefil/2020-02-18/hu.dwim.stefil-20200218-darcs.tgz"; 14 + sha256 = "16p25pq9fhk0dny6r43yl9z24g6qm6dag9zf2cila9v9jh3r76qf"; 15 15 }; 16 16 17 17 packageName = "hu.dwim.stefil";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/hunchentoot.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''hunchentoot''; 4 - version = ''v1.3.0''; 3 + baseName = "hunchentoot"; 4 + version = "v1.3.0"; 5 5 6 6 parasites = [ "hunchentoot-test" ]; 7 7 ··· 13 13 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."drakma" args."flexi-streams" args."md5" args."rfc2388" args."split-sequence" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."usocket" ]; 14 14 15 15 src = fetchurl { 16 - url = ''http://beta.quicklisp.org/archive/hunchentoot/2020-06-10/hunchentoot-v1.3.0.tgz''; 17 - sha256 = ''08znpi5lq2dhgv6mhvabk3w4ggrg31dbv4k6gmshr18xd2lq43i8''; 16 + url = "http://beta.quicklisp.org/archive/hunchentoot/2020-06-10/hunchentoot-v1.3.0.tgz"; 17 + sha256 = "08znpi5lq2dhgv6mhvabk3w4ggrg31dbv4k6gmshr18xd2lq43i8"; 18 18 }; 19 19 20 20 packageName = "hunchentoot";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/idna.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''idna''; 4 - version = ''20120107-git''; 3 + baseName = "idna"; 4 + version = "20120107-git"; 5 5 6 - description = ''IDNA (international domain names) string encoding and decoding routines''; 6 + description = "IDNA (international domain names) string encoding and decoding routines"; 7 7 8 8 deps = [ args."split-sequence" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/idna/2012-01-07/idna-20120107-git.tgz''; 12 - sha256 = ''0q9hja9v5q7z89p0bzm2whchn05hymn3255fr5zj3fkja8akma5c''; 11 + url = "http://beta.quicklisp.org/archive/idna/2012-01-07/idna-20120107-git.tgz"; 12 + sha256 = "0q9hja9v5q7z89p0bzm2whchn05hymn3255fr5zj3fkja8akma5c"; 13 13 }; 14 14 15 15 packageName = "idna";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/ieee-floats.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''ieee-floats''; 4 - version = ''20170830-git''; 3 + baseName = "ieee-floats"; 4 + version = "20170830-git"; 5 5 6 6 parasites = [ "ieee-floats-tests" ]; 7 7 8 - description = ''Convert floating point values to IEEE 754 binary representation''; 8 + description = "Convert floating point values to IEEE 754 binary representation"; 9 9 10 10 deps = [ args."fiveam" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/ieee-floats/2017-08-30/ieee-floats-20170830-git.tgz''; 14 - sha256 = ''15c4q4w3cda82vqlpvdfrnah6ms6vxbjf4a0chd10daw72rwayqk''; 13 + url = "http://beta.quicklisp.org/archive/ieee-floats/2017-08-30/ieee-floats-20170830-git.tgz"; 14 + sha256 = "15c4q4w3cda82vqlpvdfrnah6ms6vxbjf4a0chd10daw72rwayqk"; 15 15 }; 16 16 17 17 packageName = "ieee-floats";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/inferior-shell.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''inferior-shell''; 4 - version = ''20200925-git''; 3 + baseName = "inferior-shell"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "inferior-shell/test" ]; 7 7 8 - description = ''spawn local or remote processes and shell pipes''; 8 + description = "spawn local or remote processes and shell pipes"; 9 9 10 10 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/inferior-shell/2020-09-25/inferior-shell-20200925-git.tgz''; 14 - sha256 = ''1hykybcmdpcjk0irl4f1lmqc4aawpp1zfvh27qp6mldsibra7l80''; 13 + url = "http://beta.quicklisp.org/archive/inferior-shell/2020-09-25/inferior-shell-20200925-git.tgz"; 14 + sha256 = "1hykybcmdpcjk0irl4f1lmqc4aawpp1zfvh27qp6mldsibra7l80"; 15 15 }; 16 16 17 17 packageName = "inferior-shell";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/introspect-environment.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''introspect-environment''; 4 - version = ''20200715-git''; 3 + baseName = "introspect-environment"; 4 + version = "20200715-git"; 5 5 6 - description = ''Small interface to portable but nonstandard introspection of CL environments.''; 6 + description = "Small interface to portable but nonstandard introspection of CL environments."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/introspect-environment/2020-07-15/introspect-environment-20200715-git.tgz''; 12 - sha256 = ''1m2vqpbrvjb0mkmi2n5rg3j0dr68hyv23lbw6s474hylx02nw5ns''; 11 + url = "http://beta.quicklisp.org/archive/introspect-environment/2020-07-15/introspect-environment-20200715-git.tgz"; 12 + sha256 = "1m2vqpbrvjb0mkmi2n5rg3j0dr68hyv23lbw6s474hylx02nw5ns"; 13 13 }; 14 14 15 15 packageName = "introspect-environment";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''iolib''; 4 - version = ''v0.8.3''; 3 + baseName = "iolib"; 4 + version = "v0.8.3"; 5 5 6 6 parasites = [ "iolib/multiplex" "iolib/os" "iolib/pathnames" "iolib/sockets" "iolib/streams" "iolib/syscalls" "iolib/trivial-sockets" "iolib/zstreams" ]; 7 7 8 - description = ''I/O library.''; 8 + description = "I/O library."; 9 9 10 10 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz''; 14 - sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c''; 13 + url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 14 + sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 15 15 }; 16 16 17 17 packageName = "iolib";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_asdf.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''iolib_dot_asdf''; 4 - version = ''iolib-v0.8.3''; 3 + baseName = "iolib_dot_asdf"; 4 + version = "iolib-v0.8.3"; 5 5 6 - description = ''A few ASDF component classes.''; 6 + description = "A few ASDF component classes."; 7 7 8 8 deps = [ args."alexandria" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz''; 12 - sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c''; 11 + url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 12 + sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 13 13 }; 14 14 15 15 packageName = "iolib.asdf";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_base.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''iolib_dot_base''; 4 - version = ''iolib-v0.8.3''; 3 + baseName = "iolib_dot_base"; 4 + version = "iolib-v0.8.3"; 5 5 6 - description = ''Base IOlib package, used instead of CL.''; 6 + description = "Base IOlib package, used instead of CL."; 7 7 8 8 deps = [ args."alexandria" args."iolib_dot_asdf" args."iolib_dot_common-lisp" args."iolib_dot_conf" args."split-sequence" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz''; 12 - sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c''; 11 + url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 12 + sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 13 13 }; 14 14 15 15 packageName = "iolib.base";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_common-lisp.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''iolib_dot_common-lisp''; 4 - version = ''iolib-v0.8.3''; 3 + baseName = "iolib_dot_common-lisp"; 4 + version = "iolib-v0.8.3"; 5 5 6 - description = ''Slightly modified Common Lisp.''; 6 + description = "Slightly modified Common Lisp."; 7 7 8 8 deps = [ args."alexandria" args."iolib_dot_asdf" args."iolib_dot_conf" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz''; 12 - sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c''; 11 + url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 12 + sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 13 13 }; 14 14 15 15 packageName = "iolib.common-lisp";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_conf.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''iolib_dot_conf''; 4 - version = ''iolib-v0.8.3''; 3 + baseName = "iolib_dot_conf"; 4 + version = "iolib-v0.8.3"; 5 5 6 - description = ''Compile-time configuration for IOLib.''; 6 + description = "Compile-time configuration for IOLib."; 7 7 8 8 deps = [ args."alexandria" args."iolib_dot_asdf" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz''; 12 - sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c''; 11 + url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 12 + sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 13 13 }; 14 14 15 15 packageName = "iolib.conf";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_dot_grovel.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''iolib_dot_grovel''; 4 - version = ''iolib-v0.8.3''; 3 + baseName = "iolib_dot_grovel"; 4 + version = "iolib-v0.8.3"; 5 5 6 - description = ''The CFFI Groveller''; 6 + description = "The CFFI Groveller"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz''; 12 - sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c''; 11 + url = "http://beta.quicklisp.org/archive/iolib/2018-02-28/iolib-v0.8.3.tgz"; 12 + sha256 = "12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c"; 13 13 }; 14 14 15 15 packageName = "iolib.grovel";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/ironclad.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''ironclad''; 4 - version = ''v0.51''; 3 + baseName = "ironclad"; 4 + version = "v0.51"; 5 5 6 6 parasites = [ "ironclad/tests" ]; 7 7 8 - description = ''A cryptographic toolkit written in pure Common Lisp''; 8 + description = "A cryptographic toolkit written in pure Common Lisp"; 9 9 10 10 deps = [ args."alexandria" args."bordeaux-threads" args."rt" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/ironclad/2020-09-25/ironclad-v0.51.tgz''; 14 - sha256 = ''0zfazyvg91fxr9gm195qwwf1y5qdci7i1cwzpv0fggxhylpkswrn''; 13 + url = "http://beta.quicklisp.org/archive/ironclad/2020-09-25/ironclad-v0.51.tgz"; 14 + sha256 = "0zfazyvg91fxr9gm195qwwf1y5qdci7i1cwzpv0fggxhylpkswrn"; 15 15 }; 16 16 17 17 packageName = "ironclad";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/iterate.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''iterate''; 4 - version = ''20200610-git''; 3 + baseName = "iterate"; 4 + version = "20200610-git"; 5 5 6 6 parasites = [ "iterate/tests" ]; 7 7 8 - description = ''Jonathan Amsterdam's iterator/gatherer/accumulator facility''; 8 + description = "Jonathan Amsterdam's iterator/gatherer/accumulator facility"; 9 9 10 10 deps = [ ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/iterate/2020-06-10/iterate-20200610-git.tgz''; 14 - sha256 = ''0xz3v321b8zgjsgak432frs0gmpr2n24sf5gq97qnqvwqfn4infb''; 13 + url = "http://beta.quicklisp.org/archive/iterate/2020-06-10/iterate-20200610-git.tgz"; 14 + sha256 = "0xz3v321b8zgjsgak432frs0gmpr2n24sf5gq97qnqvwqfn4infb"; 15 15 }; 16 16 17 17 packageName = "iterate";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/jonathan.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''jonathan''; 4 - version = ''20200925-git''; 3 + baseName = "jonathan"; 4 + version = "20200925-git"; 5 5 6 - description = ''High performance JSON encoder and decoder. Currently support: SBCL, CCL.''; 6 + description = "High performance JSON encoder and decoder. Currently support: SBCL, CCL."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/jonathan/2020-09-25/jonathan-20200925-git.tgz''; 12 - sha256 = ''1y5v3g351nsy7px0frdr2asmcy0lyfbj73ic1f5yf4q65hrgvryx''; 11 + url = "http://beta.quicklisp.org/archive/jonathan/2020-09-25/jonathan-20200925-git.tgz"; 12 + sha256 = "1y5v3g351nsy7px0frdr2asmcy0lyfbj73ic1f5yf4q65hrgvryx"; 13 13 }; 14 14 15 15 packageName = "jonathan";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/kmrcl.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''kmrcl''; 4 - version = ''20201016-git''; 3 + baseName = "kmrcl"; 4 + version = "20201016-git"; 5 5 6 6 parasites = [ "kmrcl/test" ]; 7 7 8 - description = ''System lacks description''; 8 + description = "System lacks description"; 9 9 10 10 deps = [ args."rt" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/kmrcl/2020-10-16/kmrcl-20201016-git.tgz''; 14 - sha256 = ''0i0k61385hrzbg15qs1wprz6sis7mx2abxv1hqcc2f53rqm9b2hf''; 13 + url = "http://beta.quicklisp.org/archive/kmrcl/2020-10-16/kmrcl-20201016-git.tgz"; 14 + sha256 = "0i0k61385hrzbg15qs1wprz6sis7mx2abxv1hqcc2f53rqm9b2hf"; 15 15 }; 16 16 17 17 packageName = "kmrcl";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-component.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lack-component''; 4 - version = ''lack-20201016-git''; 3 + baseName = "lack-component"; 4 + version = "lack-20201016-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz''; 12 - sha256 = ''124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan''; 11 + url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz"; 12 + sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan"; 13 13 }; 14 14 15 15 packageName = "lack-component";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-middleware-backtrace.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lack-middleware-backtrace''; 4 - version = ''lack-20201016-git''; 3 + baseName = "lack-middleware-backtrace"; 4 + version = "lack-20201016-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ args."uiop" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz''; 12 - sha256 = ''124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan''; 11 + url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz"; 12 + sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan"; 13 13 }; 14 14 15 15 packageName = "lack-middleware-backtrace";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-util.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lack-util''; 4 - version = ''lack-20201016-git''; 3 + baseName = "lack-util"; 4 + version = "lack-20201016-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz''; 12 - sha256 = ''124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan''; 11 + url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz"; 12 + sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan"; 13 13 }; 14 14 15 15 packageName = "lack-util";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lack''; 4 - version = ''20201016-git''; 3 + baseName = "lack"; 4 + version = "20201016-git"; 5 5 6 - description = ''A minimal Clack''; 6 + description = "A minimal Clack"; 7 7 8 8 deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" args."lack-component" args."lack-util" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz''; 12 - sha256 = ''124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan''; 11 + url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz"; 12 + sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan"; 13 13 }; 14 14 15 15 packageName = "lack";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/let-plus.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''let-plus''; 4 - version = ''20191130-git''; 3 + baseName = "let-plus"; 4 + version = "20191130-git"; 5 5 6 6 parasites = [ "let-plus/tests" ]; 7 7 8 - description = ''Destructuring extension of LET*.''; 8 + description = "Destructuring extension of LET*."; 9 9 10 10 deps = [ args."alexandria" args."anaphora" args."lift" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/let-plus/2019-11-30/let-plus-20191130-git.tgz''; 14 - sha256 = ''0zj0fgb7lvczgpz4jq8q851p77kma7ikn7hd2jk2c37iv4nmz29p''; 13 + url = "http://beta.quicklisp.org/archive/let-plus/2019-11-30/let-plus-20191130-git.tgz"; 14 + sha256 = "0zj0fgb7lvczgpz4jq8q851p77kma7ikn7hd2jk2c37iv4nmz29p"; 15 15 }; 16 16 17 17 packageName = "let-plus";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lev.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lev''; 4 - version = ''20150505-git''; 3 + baseName = "lev"; 4 + version = "20150505-git"; 5 5 6 - description = ''libev bindings for Common Lisp''; 6 + description = "libev bindings for Common Lisp"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lev/2015-05-05/lev-20150505-git.tgz''; 12 - sha256 = ''0lkkzb221ks4f0qjgh6pr5lyvb4884a87p96ir4m36x411pyk5xl''; 11 + url = "http://beta.quicklisp.org/archive/lev/2015-05-05/lev-20150505-git.tgz"; 12 + sha256 = "0lkkzb221ks4f0qjgh6pr5lyvb4884a87p96ir4m36x411pyk5xl"; 13 13 }; 14 14 15 15 packageName = "lev";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lfarm-client.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lfarm-client''; 4 - version = ''lfarm-20150608-git''; 3 + baseName = "lfarm-client"; 4 + version = "lfarm-20150608-git"; 5 5 6 - description = ''Client component of lfarm, a library for distributing work across machines.''; 6 + description = "Client component of lfarm, a library for distributing work across machines."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz''; 12 - sha256 = ''1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66''; 11 + url = "http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz"; 12 + sha256 = "1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66"; 13 13 }; 14 14 15 15 packageName = "lfarm-client";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/lfarm-common.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lfarm-common''; 4 - version = ''lfarm-20150608-git''; 3 + baseName = "lfarm-common"; 4 + version = "lfarm-20150608-git"; 5 5 6 6 description = ''(private) Common components of lfarm, a library for distributing 7 7 work across machines.''; ··· 9 9 deps = [ args."alexandria" args."bordeaux-threads" args."cl-store" args."flexi-streams" args."split-sequence" args."trivial-gray-streams" args."usocket" ]; 10 10 11 11 src = fetchurl { 12 - url = ''http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz''; 13 - sha256 = ''1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66''; 12 + url = "http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz"; 13 + sha256 = "1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66"; 14 14 }; 15 15 16 16 packageName = "lfarm-common";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lfarm-server.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lfarm-server''; 4 - version = ''lfarm-20150608-git''; 3 + baseName = "lfarm-server"; 4 + version = "lfarm-20150608-git"; 5 5 6 - description = ''Server component of lfarm, a library for distributing work across machines.''; 6 + description = "Server component of lfarm, a library for distributing work across machines."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz''; 12 - sha256 = ''1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66''; 11 + url = "http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz"; 12 + sha256 = "1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66"; 13 13 }; 14 14 15 15 packageName = "lfarm-server";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lfarm-ssl.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lfarm-ssl''; 4 - version = ''lfarm-20150608-git''; 3 + baseName = "lfarm-ssl"; 4 + version = "lfarm-20150608-git"; 5 5 6 - description = ''SSL support for lfarm''; 6 + description = "SSL support for lfarm"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz''; 12 - sha256 = ''1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66''; 11 + url = "http://beta.quicklisp.org/archive/lfarm/2015-06-08/lfarm-20150608-git.tgz"; 12 + sha256 = "1rkjcfam4601yczs13pi2qgi5jql0c150dxja53hkcnqhkyqgl66"; 13 13 }; 14 14 15 15 packageName = "lfarm-ssl";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lift.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lift''; 4 - version = ''20190521-git''; 3 + baseName = "lift"; 4 + version = "20190521-git"; 5 5 6 - description = ''LIsp Framework for Testing''; 6 + description = "LIsp Framework for Testing"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lift/2019-05-21/lift-20190521-git.tgz''; 12 - sha256 = ''0cinilin9bxzsj3mzd4488zx2irvyl5qpbykv0xbyfz2mjh94ac9''; 11 + url = "http://beta.quicklisp.org/archive/lift/2019-05-21/lift-20190521-git.tgz"; 12 + sha256 = "0cinilin9bxzsj3mzd4488zx2irvyl5qpbykv0xbyfz2mjh94ac9"; 13 13 }; 14 14 15 15 packageName = "lift";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lisp-namespace.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lisp-namespace''; 4 - version = ''20171130-git''; 3 + baseName = "lisp-namespace"; 4 + version = "20171130-git"; 5 5 6 - description = ''Provides LISP-N --- extensible namespaces in Common Lisp.''; 6 + description = "Provides LISP-N --- extensible namespaces in Common Lisp."; 7 7 8 8 deps = [ args."alexandria" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lisp-namespace/2017-11-30/lisp-namespace-20171130-git.tgz''; 12 - sha256 = ''0vxk06c5434kcjv9p414yk23gs4rkibfq695is9y7wglck31fz2j''; 11 + url = "http://beta.quicklisp.org/archive/lisp-namespace/2017-11-30/lisp-namespace-20171130-git.tgz"; 12 + sha256 = "0vxk06c5434kcjv9p414yk23gs4rkibfq695is9y7wglck31fz2j"; 13 13 }; 14 14 15 15 packageName = "lisp-namespace";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lisp-unit2.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lisp-unit2''; 4 - version = ''20180131-git''; 3 + baseName = "lisp-unit2"; 4 + version = "20180131-git"; 5 5 6 6 parasites = [ "lisp-unit2-test" ]; 7 7 8 - description = ''Common Lisp library that supports unit testing.''; 8 + description = "Common Lisp library that supports unit testing."; 9 9 10 10 deps = [ args."alexandria" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."iterate" args."named-readtables" args."symbol-munger" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/lisp-unit2/2018-01-31/lisp-unit2-20180131-git.tgz''; 14 - sha256 = ''04kwrg605mqzf3ghshgbygvvryk5kipl6gyc5kdaxafjxvhxaak7''; 13 + url = "http://beta.quicklisp.org/archive/lisp-unit2/2018-01-31/lisp-unit2-20180131-git.tgz"; 14 + sha256 = "04kwrg605mqzf3ghshgbygvvryk5kipl6gyc5kdaxafjxvhxaak7"; 15 15 }; 16 16 17 17 packageName = "lisp-unit2";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/local-time.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''local-time''; 4 - version = ''20200925-git''; 3 + baseName = "local-time"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "local-time/test" ]; 7 7 8 - description = ''A library for manipulating dates and times, based on a paper by Erik Naggum''; 8 + description = "A library for manipulating dates and times, based on a paper by Erik Naggum"; 9 9 10 10 deps = [ args."stefil" args."uiop" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/local-time/2020-09-25/local-time-20200925-git.tgz''; 14 - sha256 = ''0rr2bs93vhj7ngplw85572jfx8250fr2iki8y9spxmfz1sldm12f''; 13 + url = "http://beta.quicklisp.org/archive/local-time/2020-09-25/local-time-20200925-git.tgz"; 14 + sha256 = "0rr2bs93vhj7ngplw85572jfx8250fr2iki8y9spxmfz1sldm12f"; 15 15 }; 16 16 17 17 packageName = "local-time";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/log4cl.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''log4cl''; 4 - version = ''20200925-git''; 3 + baseName = "log4cl"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "log4cl/syslog" "log4cl/test" ]; 7 7 8 - description = ''System lacks description''; 8 + description = "System lacks description"; 9 9 10 10 deps = [ args."alexandria" args."bordeaux-threads" args."stefil" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/log4cl/2020-09-25/log4cl-20200925-git.tgz''; 14 - sha256 = ''1z98ly71hsbd46i0dqqv2s3cm9y8bi0pl3yg8a168vz629c6mdrf''; 13 + url = "http://beta.quicklisp.org/archive/log4cl/2020-09-25/log4cl-20200925-git.tgz"; 14 + sha256 = "1z98ly71hsbd46i0dqqv2s3cm9y8bi0pl3yg8a168vz629c6mdrf"; 15 15 }; 16 16 17 17 packageName = "log4cl";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lparallel.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lparallel''; 4 - version = ''20160825-git''; 3 + baseName = "lparallel"; 4 + version = "20160825-git"; 5 5 6 - description = ''Parallelism for Common Lisp''; 6 + description = "Parallelism for Common Lisp"; 7 7 8 8 deps = [ args."alexandria" args."bordeaux-threads" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lparallel/2016-08-25/lparallel-20160825-git.tgz''; 12 - sha256 = ''0wwwwszbj6m0b2rsp8mpn4m6y7xk448bw8fb7gy0ggmsdfgchfr1''; 11 + url = "http://beta.quicklisp.org/archive/lparallel/2016-08-25/lparallel-20160825-git.tgz"; 12 + sha256 = "0wwwwszbj6m0b2rsp8mpn4m6y7xk448bw8fb7gy0ggmsdfgchfr1"; 13 13 }; 14 14 15 15 packageName = "lparallel";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/lquery.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''lquery''; 4 - version = ''20200715-git''; 3 + baseName = "lquery"; 4 + version = "20200715-git"; 5 5 6 - description = ''A library to allow jQuery-like HTML/DOM manipulation.''; 6 + description = "A library to allow jQuery-like HTML/DOM manipulation."; 7 7 8 8 deps = [ args."array-utils" args."clss" args."documentation-utils" args."form-fiddle" args."plump" args."trivial-indent" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/lquery/2020-07-15/lquery-20200715-git.tgz''; 12 - sha256 = ''1akj9yzz71733yfbqq9jig0zkx8brphzh35d8zzic0469idd3rcd''; 11 + url = "http://beta.quicklisp.org/archive/lquery/2020-07-15/lquery-20200715-git.tgz"; 12 + sha256 = "1akj9yzz71733yfbqq9jig0zkx8brphzh35d8zzic0469idd3rcd"; 13 13 }; 14 14 15 15 packageName = "lquery";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/map-set.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''map-set''; 4 - version = ''20190307-hg''; 3 + baseName = "map-set"; 4 + version = "20190307-hg"; 5 5 6 - description = ''Set-like data structure.''; 6 + description = "Set-like data structure."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/map-set/2019-03-07/map-set-20190307-hg.tgz''; 12 - sha256 = ''1x7yh4gzdvypr1q45qgmjln5pjlh82bfpk6sqyrihrldmwwnbzg9''; 11 + url = "http://beta.quicklisp.org/archive/map-set/2019-03-07/map-set-20190307-hg.tgz"; 12 + sha256 = "1x7yh4gzdvypr1q45qgmjln5pjlh82bfpk6sqyrihrldmwwnbzg9"; 13 13 }; 14 14 15 15 packageName = "map-set";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/marshal.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''marshal''; 4 - version = ''cl-20201016-git''; 3 + baseName = "marshal"; 4 + version = "cl-20201016-git"; 5 5 6 - description = ''marshal: Simple (de)serialization of Lisp datastructures.''; 6 + description = "marshal: Simple (de)serialization of Lisp datastructures."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-marshal/2020-10-16/cl-marshal-20201016-git.tgz''; 12 - sha256 = ''03j52yhgpc2myypgy07213l20rznxvf6m3sfbzy2wyapcmv7nxnz''; 11 + url = "http://beta.quicklisp.org/archive/cl-marshal/2020-10-16/cl-marshal-20201016-git.tgz"; 12 + sha256 = "03j52yhgpc2myypgy07213l20rznxvf6m3sfbzy2wyapcmv7nxnz"; 13 13 }; 14 14 15 15 packageName = "marshal";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/md5.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''md5''; 4 - version = ''20180228-git''; 3 + baseName = "md5"; 4 + version = "20180228-git"; 5 5 6 - description = ''The MD5 Message-Digest Algorithm RFC 1321''; 6 + description = "The MD5 Message-Digest Algorithm RFC 1321"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/md5/2018-02-28/md5-20180228-git.tgz''; 12 - sha256 = ''1261ix6bmkjyx8bkpj6ksa0kgyrhngm31as77dyy3vfg6dvrsnd4''; 11 + url = "http://beta.quicklisp.org/archive/md5/2018-02-28/md5-20180228-git.tgz"; 12 + sha256 = "1261ix6bmkjyx8bkpj6ksa0kgyrhngm31as77dyy3vfg6dvrsnd4"; 13 13 }; 14 14 15 15 packageName = "md5";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/metabang-bind.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''metabang-bind''; 4 - version = ''20200218-git''; 3 + baseName = "metabang-bind"; 4 + version = "20200218-git"; 5 5 6 - description = ''Bind is a macro that generalizes multiple-value-bind, let, let*, destructuring-bind, structure and slot accessors, and a whole lot more.''; 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 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/metabang-bind/2020-02-18/metabang-bind-20200218-git.tgz''; 12 - sha256 = ''0mfjzfsv8v6i9ahwldfzznl29i42cmh5srmpgq64ar1vp6bdn1hq''; 11 + url = "http://beta.quicklisp.org/archive/metabang-bind/2020-02-18/metabang-bind-20200218-git.tgz"; 12 + sha256 = "0mfjzfsv8v6i9ahwldfzznl29i42cmh5srmpgq64ar1vp6bdn1hq"; 13 13 }; 14 14 15 15 packageName = "metabang-bind";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/metatilities-base.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''metatilities-base''; 4 - version = ''20191227-git''; 3 + baseName = "metatilities-base"; 4 + version = "20191227-git"; 5 5 6 - description = ''These are metabang.com's Common Lisp basic utilities.''; 6 + description = "These are metabang.com's Common Lisp basic utilities."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/metatilities-base/2019-12-27/metatilities-base-20191227-git.tgz''; 12 - sha256 = ''1mal51p7mknya2ljcwl3wdjvnirw5vvzic6qcnci7qhmfrb1awil''; 11 + url = "http://beta.quicklisp.org/archive/metatilities-base/2019-12-27/metatilities-base-20191227-git.tgz"; 12 + sha256 = "1mal51p7mknya2ljcwl3wdjvnirw5vvzic6qcnci7qhmfrb1awil"; 13 13 }; 14 14 15 15 packageName = "metatilities-base";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/mgl-pax.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''mgl-pax''; 4 - version = ''20201016-git''; 3 + baseName = "mgl-pax"; 4 + version = "20201016-git"; 5 5 6 6 parasites = [ "mgl-pax/test" ]; 7 7 ··· 11 11 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" ]; 12 12 13 13 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/mgl-pax/2020-10-16/mgl-pax-20201016-git.tgz''; 15 - sha256 = ''0n48fw4a21sqy491bfi9fygrjl9psrryw00iha40dxy2ww86s6li''; 14 + url = "http://beta.quicklisp.org/archive/mgl-pax/2020-10-16/mgl-pax-20201016-git.tgz"; 15 + sha256 = "0n48fw4a21sqy491bfi9fygrjl9psrryw00iha40dxy2ww86s6li"; 16 16 }; 17 17 18 18 packageName = "mgl-pax";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/misc-extensions.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''misc-extensions''; 4 - version = ''20150608-git''; 3 + baseName = "misc-extensions"; 4 + version = "20150608-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/misc-extensions/2015-06-08/misc-extensions-20150608-git.tgz''; 12 - sha256 = ''0pkvi1l5djwpvm0p8m0bcdjm61gxvzy0vgn415gngdixvbbchdqj''; 11 + url = "http://beta.quicklisp.org/archive/misc-extensions/2015-06-08/misc-extensions-20150608-git.tgz"; 12 + sha256 = "0pkvi1l5djwpvm0p8m0bcdjm61gxvzy0vgn415gngdixvbbchdqj"; 13 13 }; 14 14 15 15 packageName = "misc-extensions";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/mk-string-metrics.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''mk-string-metrics''; 4 - version = ''20180131-git''; 3 + baseName = "mk-string-metrics"; 4 + version = "20180131-git"; 5 5 6 - description = ''efficient implementations of various string metric algorithms''; 6 + description = "efficient implementations of various string metric algorithms"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/mk-string-metrics/2018-01-31/mk-string-metrics-20180131-git.tgz''; 12 - sha256 = ''10xb9n6568nh019nq3phijbc7l6hkv69yllfiqvc1zzsprxpkwc4''; 11 + url = "http://beta.quicklisp.org/archive/mk-string-metrics/2018-01-31/mk-string-metrics-20180131-git.tgz"; 12 + sha256 = "10xb9n6568nh019nq3phijbc7l6hkv69yllfiqvc1zzsprxpkwc4"; 13 13 }; 14 14 15 15 packageName = "mk-string-metrics";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/moptilities.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''moptilities''; 4 - version = ''20170403-git''; 3 + baseName = "moptilities"; 4 + version = "20170403-git"; 5 5 6 - description = ''Common Lisp MOP utilities''; 6 + description = "Common Lisp MOP utilities"; 7 7 8 8 deps = [ args."closer-mop" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/moptilities/2017-04-03/moptilities-20170403-git.tgz''; 12 - sha256 = ''0az01wx60ll3nybqlp21f5bps3fnpqhvvfg6d9x84969wdj7q4q8''; 11 + url = "http://beta.quicklisp.org/archive/moptilities/2017-04-03/moptilities-20170403-git.tgz"; 12 + sha256 = "0az01wx60ll3nybqlp21f5bps3fnpqhvvfg6d9x84969wdj7q4q8"; 13 13 }; 14 14 15 15 packageName = "moptilities";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/more-conditions.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''more-conditions''; 4 - version = ''20180831-git''; 3 + baseName = "more-conditions"; 4 + version = "20180831-git"; 5 5 6 6 parasites = [ "more-conditions/test" ]; 7 7 ··· 11 11 deps = [ args."alexandria" args."closer-mop" args."fiveam" args."let-plus" ]; 12 12 13 13 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/more-conditions/2018-08-31/more-conditions-20180831-git.tgz''; 15 - sha256 = ''0wa989kv3sl977g9szxkx52fdnww6aj2a9i77363f90iq02vj97x''; 14 + url = "http://beta.quicklisp.org/archive/more-conditions/2018-08-31/more-conditions-20180831-git.tgz"; 15 + sha256 = "0wa989kv3sl977g9szxkx52fdnww6aj2a9i77363f90iq02vj97x"; 16 16 }; 17 17 18 18 packageName = "more-conditions";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/mt19937.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''mt19937''; 4 - version = ''1.1.1''; 3 + baseName = "mt19937"; 4 + version = "1.1.1"; 5 5 6 - description = ''Portable MT19937 Mersenne Twister random number generator''; 6 + description = "Portable MT19937 Mersenne Twister random number generator"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/mt19937/2011-02-19/mt19937-1.1.1.tgz''; 12 - sha256 = ''1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv''; 11 + url = "http://beta.quicklisp.org/archive/mt19937/2011-02-19/mt19937-1.1.1.tgz"; 12 + sha256 = "1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv"; 13 13 }; 14 14 15 15 packageName = "mt19937";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/myway.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''myway''; 4 - version = ''20200325-git''; 3 + baseName = "myway"; 4 + version = "20200325-git"; 5 5 6 - description = ''Sinatra-compatible routing library.''; 6 + description = "Sinatra-compatible routing library."; 7 7 8 8 deps = [ args."alexandria" args."babel" args."cl-ppcre" args."cl-utilities" args."map-set" args."quri" args."split-sequence" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/myway/2020-03-25/myway-20200325-git.tgz''; 12 - sha256 = ''07r0mq9n0gmm7n20mkpsnmjvcr4gj9nckpnh1c2mddrb3sag8n15''; 11 + url = "http://beta.quicklisp.org/archive/myway/2020-03-25/myway-20200325-git.tgz"; 12 + sha256 = "07r0mq9n0gmm7n20mkpsnmjvcr4gj9nckpnh1c2mddrb3sag8n15"; 13 13 }; 14 14 15 15 packageName = "myway";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/named-readtables.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''named-readtables''; 4 - version = ''20200925-git''; 3 + baseName = "named-readtables"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "named-readtables/test" ]; 7 7 ··· 11 11 deps = [ ]; 12 12 13 13 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/named-readtables/2020-09-25/named-readtables-20200925-git.tgz''; 15 - sha256 = ''0klbvv2syv8a8agacxdjrmmhibvhgfbxxwv6k4hx0ifk6n5iazxl''; 14 + url = "http://beta.quicklisp.org/archive/named-readtables/2020-09-25/named-readtables-20200925-git.tgz"; 15 + sha256 = "0klbvv2syv8a8agacxdjrmmhibvhgfbxxwv6k4hx0ifk6n5iazxl"; 16 16 }; 17 17 18 18 packageName = "named-readtables";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/net-telent-date.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''net-telent-date''; 4 - version = ''net-telent-date_0.42''; 3 + baseName = "net-telent-date"; 4 + version = "net-telent-date_0.42"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/net-telent-date/2010-10-06/net-telent-date_0.42.tgz''; 12 - sha256 = ''06vdlddwi6kx999n1093chwgw0ksbys4j4w9i9zqvw768wxp4li1''; 11 + url = "http://beta.quicklisp.org/archive/net-telent-date/2010-10-06/net-telent-date_0.42.tgz"; 12 + sha256 = "06vdlddwi6kx999n1093chwgw0ksbys4j4w9i9zqvw768wxp4li1"; 13 13 }; 14 14 15 15 packageName = "net-telent-date";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/net_dot_didierverna_dot_asdf-flv.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''net_dot_didierverna_dot_asdf-flv''; 4 - version = ''asdf-flv-version-2.1''; 3 + baseName = "net_dot_didierverna_dot_asdf-flv"; 4 + version = "asdf-flv-version-2.1"; 5 5 6 - description = ''ASDF extension to provide support for file-local variables.''; 6 + description = "ASDF extension to provide support for file-local variables."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/asdf-flv/2016-04-21/asdf-flv-version-2.1.tgz''; 12 - sha256 = ''12k0d4xyv6s9vy6gq18p8c9bm334jsfjly22lhg680kx2zr7y0lc''; 11 + url = "http://beta.quicklisp.org/archive/asdf-flv/2016-04-21/asdf-flv-version-2.1.tgz"; 12 + sha256 = "12k0d4xyv6s9vy6gq18p8c9bm334jsfjly22lhg680kx2zr7y0lc"; 13 13 }; 14 14 15 15 packageName = "net.didierverna.asdf-flv";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/nibbles.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''nibbles''; 4 - version = ''20200925-git''; 3 + baseName = "nibbles"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "nibbles/tests" ]; 7 7 8 - description = ''A library for accessing octet-addressed blocks of data in big- and little-endian orders''; 8 + description = "A library for accessing octet-addressed blocks of data in big- and little-endian orders"; 9 9 10 10 deps = [ args."rt" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/nibbles/2020-09-25/nibbles-20200925-git.tgz''; 14 - sha256 = ''14k9hg8kmzwcb9b5aiwqhimc0zmcs3xp8q29sck8zklf8ziqaqb4''; 13 + url = "http://beta.quicklisp.org/archive/nibbles/2020-09-25/nibbles-20200925-git.tgz"; 14 + sha256 = "14k9hg8kmzwcb9b5aiwqhimc0zmcs3xp8q29sck8zklf8ziqaqb4"; 15 15 }; 16 16 17 17 packageName = "nibbles";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/optima.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''optima''; 4 - version = ''20150709-git''; 3 + baseName = "optima"; 4 + version = "20150709-git"; 5 5 6 - description = ''Optimized Pattern Matching Library''; 6 + description = "Optimized Pattern Matching Library"; 7 7 8 8 deps = [ args."alexandria" args."closer-mop" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/optima/2015-07-09/optima-20150709-git.tgz''; 12 - sha256 = ''0vqyqrnx2d8qwa2jlg9l2wn6vrykraj8a1ysz0gxxxnwpqc29hdc''; 11 + url = "http://beta.quicklisp.org/archive/optima/2015-07-09/optima-20150709-git.tgz"; 12 + sha256 = "0vqyqrnx2d8qwa2jlg9l2wn6vrykraj8a1ysz0gxxxnwpqc29hdc"; 13 13 }; 14 14 15 15 packageName = "optima";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/osicat.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''osicat''; 4 - version = ''20200925-git''; 3 + baseName = "osicat"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "osicat/tests" ]; 7 7 8 - description = ''A lightweight operating system interface''; 8 + description = "A lightweight operating system interface"; 9 9 10 10 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."rt" args."trivial-features" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/osicat/2020-09-25/osicat-20200925-git.tgz''; 14 - sha256 = ''191ncd5arfx6i9cw3iny4a473wsrr3dpv2lwb9jr02p6qpmqwysk''; 13 + url = "http://beta.quicklisp.org/archive/osicat/2020-09-25/osicat-20200925-git.tgz"; 14 + sha256 = "191ncd5arfx6i9cw3iny4a473wsrr3dpv2lwb9jr02p6qpmqwysk"; 15 15 }; 16 16 17 17 packageName = "osicat";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/parenscript.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''parenscript''; 4 - version = ''Parenscript-2.7.1''; 3 + baseName = "parenscript"; 4 + version = "Parenscript-2.7.1"; 5 5 6 - description = ''Lisp to JavaScript transpiler''; 6 + description = "Lisp to JavaScript transpiler"; 7 7 8 8 deps = [ args."anaphora" args."cl-ppcre" args."named-readtables" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/parenscript/2018-12-10/Parenscript-2.7.1.tgz''; 12 - sha256 = ''1vbldjzj9py8vqyk0f3rb795cjai0h7p858dflm4l8p0kp4mll6f''; 11 + url = "http://beta.quicklisp.org/archive/parenscript/2018-12-10/Parenscript-2.7.1.tgz"; 12 + sha256 = "1vbldjzj9py8vqyk0f3rb795cjai0h7p858dflm4l8p0kp4mll6f"; 13 13 }; 14 14 15 15 packageName = "parenscript";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/parse-declarations-1_dot_0.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''parse-declarations-1_dot_0''; 4 - version = ''parse-declarations-20101006-darcs''; 3 + baseName = "parse-declarations-1_dot_0"; 4 + version = "parse-declarations-20101006-darcs"; 5 5 6 - description = ''Library to parse and rebuild declarations.''; 6 + description = "Library to parse and rebuild declarations."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/parse-declarations/2010-10-06/parse-declarations-20101006-darcs.tgz''; 12 - sha256 = ''0r85b0jfacd28kr65kw9c13dx4i6id1dpmby68zjy63mqbnyawrd''; 11 + url = "http://beta.quicklisp.org/archive/parse-declarations/2010-10-06/parse-declarations-20101006-darcs.tgz"; 12 + sha256 = "0r85b0jfacd28kr65kw9c13dx4i6id1dpmby68zjy63mqbnyawrd"; 13 13 }; 14 14 15 15 packageName = "parse-declarations-1.0";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/parse-number.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''parse-number''; 4 - version = ''v1.7''; 3 + baseName = "parse-number"; 4 + version = "v1.7"; 5 5 6 6 parasites = [ "parse-number/tests" ]; 7 7 8 - description = ''Number parsing library''; 8 + description = "Number parsing library"; 9 9 10 10 deps = [ ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/parse-number/2018-02-28/parse-number-v1.7.tgz''; 14 - sha256 = ''11ji8856ipmqki5i4cw1zgx8hahfi8x1raz1xb20c4rmgad6nsha''; 13 + url = "http://beta.quicklisp.org/archive/parse-number/2018-02-28/parse-number-v1.7.tgz"; 14 + sha256 = "11ji8856ipmqki5i4cw1zgx8hahfi8x1raz1xb20c4rmgad6nsha"; 15 15 }; 16 16 17 17 packageName = "parse-number";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/parser-combinators.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''parser-combinators''; 4 - version = ''cl-20131111-git''; 3 + baseName = "parser-combinators"; 4 + version = "cl-20131111-git"; 5 5 6 - description = ''An implementation of parser combinators for Common Lisp''; 6 + description = "An implementation of parser combinators for Common Lisp"; 7 7 8 8 deps = [ args."alexandria" args."iterate" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-parser-combinators/2013-11-11/cl-parser-combinators-20131111-git.tgz''; 12 - sha256 = ''0wg1a7favbwqcxyqcy2zxi4l11qsp4ar9fvddmx960grf2d72lds''; 11 + url = "http://beta.quicklisp.org/archive/cl-parser-combinators/2013-11-11/cl-parser-combinators-20131111-git.tgz"; 12 + sha256 = "0wg1a7favbwqcxyqcy2zxi4l11qsp4ar9fvddmx960grf2d72lds"; 13 13 }; 14 14 15 15 packageName = "parser-combinators";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/parser_dot_common-rules.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''parser_dot_common-rules''; 4 - version = ''20200715-git''; 3 + baseName = "parser_dot_common-rules"; 4 + version = "20200715-git"; 5 5 6 6 parasites = [ "parser.common-rules/test" ]; 7 7 8 - description = ''Provides common parsing rules that are useful in many grammars.''; 8 + description = "Provides common parsing rules that are useful in many grammars."; 9 9 10 10 deps = [ args."alexandria" args."anaphora" args."esrap" args."fiveam" args."let-plus" args."split-sequence" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/parser.common-rules/2020-07-15/parser.common-rules-20200715-git.tgz''; 14 - sha256 = ''17nw0shhb8079b26ldwpfxggkzs6ysfqm4s4nr1rfhba9mkvxdxy''; 13 + url = "http://beta.quicklisp.org/archive/parser.common-rules/2020-07-15/parser.common-rules-20200715-git.tgz"; 14 + sha256 = "17nw0shhb8079b26ldwpfxggkzs6ysfqm4s4nr1rfhba9mkvxdxy"; 15 15 }; 16 16 17 17 packageName = "parser.common-rules";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/pcall-queue.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''pcall-queue''; 4 - version = ''pcall-0.3''; 3 + baseName = "pcall-queue"; 4 + version = "pcall-0.3"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ args."alexandria" args."bordeaux-threads" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz''; 12 - sha256 = ''02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y''; 11 + url = "http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz"; 12 + sha256 = "02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y"; 13 13 }; 14 14 15 15 packageName = "pcall-queue";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/pcall.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''pcall''; 4 - version = ''0.3''; 3 + baseName = "pcall"; 4 + version = "0.3"; 5 5 6 6 parasites = [ "pcall-tests" ]; 7 7 8 - description = ''System lacks description''; 8 + description = "System lacks description"; 9 9 10 10 deps = [ args."alexandria" args."bordeaux-threads" args."fiveam" args."pcall-queue" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz''; 14 - sha256 = ''02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y''; 13 + url = "http://beta.quicklisp.org/archive/pcall/2010-10-06/pcall-0.3.tgz"; 14 + sha256 = "02idx1wnv9770fl2nh179sb8njw801g70b5mf8jqhqm2gwsb731y"; 15 15 }; 16 16 17 17 packageName = "pcall";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/plump.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''plump''; 4 - version = ''20200427-git''; 3 + baseName = "plump"; 4 + version = "20200427-git"; 5 5 6 - description = ''An XML / XHTML / HTML parser that aims to be as lenient as possible.''; 6 + description = "An XML / XHTML / HTML parser that aims to be as lenient as possible."; 7 7 8 8 deps = [ args."array-utils" args."documentation-utils" args."trivial-indent" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/plump/2020-04-27/plump-20200427-git.tgz''; 12 - sha256 = ''0l5bi503djjkhrih94h5jbihlm60h267qm2ycq9m9fldp4fjrjic''; 11 + url = "http://beta.quicklisp.org/archive/plump/2020-04-27/plump-20200427-git.tgz"; 12 + sha256 = "0l5bi503djjkhrih94h5jbihlm60h267qm2ycq9m9fldp4fjrjic"; 13 13 }; 14 14 15 15 packageName = "plump";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/postmodern.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''postmodern''; 4 - version = ''20201016-git''; 3 + baseName = "postmodern"; 4 + version = "20201016-git"; 5 5 6 6 parasites = [ "postmodern/tests" ]; 7 7 8 - description = ''PostgreSQL programming API''; 8 + description = "PostgreSQL programming API"; 9 9 10 10 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."flexi-streams" args."global-vars" args."ironclad" 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/postmodern/2020-10-16/postmodern-20201016-git.tgz''; 14 - sha256 = ''1svaiksbqcaq8sh7q6sj9kzazdfl360zqr2nzhwbgy4xnaj4vf3n''; 13 + url = "http://beta.quicklisp.org/archive/postmodern/2020-10-16/postmodern-20201016-git.tgz"; 14 + sha256 = "1svaiksbqcaq8sh7q6sj9kzazdfl360zqr2nzhwbgy4xnaj4vf3n"; 15 15 }; 16 16 17 17 packageName = "postmodern";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/proc-parse.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''proc-parse''; 4 - version = ''20190813-git''; 3 + baseName = "proc-parse"; 4 + version = "20190813-git"; 5 5 6 - description = ''Procedural vector parser''; 6 + description = "Procedural vector parser"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/proc-parse/2019-08-13/proc-parse-20190813-git.tgz''; 12 - sha256 = ''126l7mqxjcgw2limddgrdq63cdhwkhaxabxl9l0bjadf92nczg0j''; 11 + url = "http://beta.quicklisp.org/archive/proc-parse/2019-08-13/proc-parse-20190813-git.tgz"; 12 + sha256 = "126l7mqxjcgw2limddgrdq63cdhwkhaxabxl9l0bjadf92nczg0j"; 13 13 }; 14 14 15 15 packageName = "proc-parse";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/prove-asdf.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''prove-asdf''; 4 - version = ''prove-20200218-git''; 3 + baseName = "prove-asdf"; 4 + version = "prove-20200218-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz''; 12 - sha256 = ''1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn''; 11 + url = "http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz"; 12 + sha256 = "1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn"; 13 13 }; 14 14 15 15 packageName = "prove-asdf";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/prove.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''prove''; 4 - version = ''20200218-git''; 3 + baseName = "prove"; 4 + version = "20200218-git"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ args."alexandria" args."anaphora" args."cl-ansi-text" args."cl-colors" args."cl-colors2" args."cl-ppcre" args."let-plus" args."uiop" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz''; 12 - sha256 = ''1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn''; 11 + url = "http://beta.quicklisp.org/archive/prove/2020-02-18/prove-20200218-git.tgz"; 12 + sha256 = "1sv3zyam9sdmyis5lyv0khvw82q7bcpsycpj9b3bsv9isb4j30zn"; 13 13 }; 14 14 15 15 packageName = "prove";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/ptester.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''ptester''; 4 - version = ''20160929-git''; 3 + baseName = "ptester"; 4 + version = "20160929-git"; 5 5 6 - description = ''Portable test harness package''; 6 + description = "Portable test harness package"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/ptester/2016-09-29/ptester-20160929-git.tgz''; 12 - sha256 = ''04rlq1zljhxc65pm31bah3sq3as24l0sdivz440s79qlnnyh13hz''; 11 + url = "http://beta.quicklisp.org/archive/ptester/2016-09-29/ptester-20160929-git.tgz"; 12 + sha256 = "04rlq1zljhxc65pm31bah3sq3as24l0sdivz440s79qlnnyh13hz"; 13 13 }; 14 14 15 15 packageName = "ptester";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/puri.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''puri''; 4 - version = ''20201016-git''; 3 + baseName = "puri"; 4 + version = "20201016-git"; 5 5 6 6 parasites = [ "puri/test" ]; 7 7 8 - description = ''Portable Universal Resource Indentifier Library''; 8 + description = "Portable Universal Resource Indentifier Library"; 9 9 10 10 deps = [ args."ptester" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/puri/2020-10-16/puri-20201016-git.tgz''; 14 - sha256 = ''16h7gip6d0564s9yba3jg0rjzndmysv531hcrngvi3j3sandjfzx''; 13 + url = "http://beta.quicklisp.org/archive/puri/2020-10-16/puri-20201016-git.tgz"; 14 + sha256 = "16h7gip6d0564s9yba3jg0rjzndmysv531hcrngvi3j3sandjfzx"; 15 15 }; 16 16 17 17 packageName = "puri";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/pythonic-string-reader.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''pythonic-string-reader''; 4 - version = ''20180711-git''; 3 + baseName = "pythonic-string-reader"; 4 + version = "20180711-git"; 5 5 6 6 description = ''A simple and unintrusive read table modification that allows for 7 7 simple string literal definition that doesn't require escaping characters.''; ··· 9 9 deps = [ args."named-readtables" ]; 10 10 11 11 src = fetchurl { 12 - url = ''http://beta.quicklisp.org/archive/pythonic-string-reader/2018-07-11/pythonic-string-reader-20180711-git.tgz''; 13 - sha256 = ''0gr6sbkmfwca9r0xa5vczjm4s9psbrqy5hvijkp5g42b0b7x5myx''; 12 + url = "http://beta.quicklisp.org/archive/pythonic-string-reader/2018-07-11/pythonic-string-reader-20180711-git.tgz"; 13 + sha256 = "0gr6sbkmfwca9r0xa5vczjm4s9psbrqy5hvijkp5g42b0b7x5myx"; 14 14 }; 15 15 16 16 packageName = "pythonic-string-reader";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/query-fs.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''query-fs''; 4 - version = ''20200610-git''; 3 + baseName = "query-fs"; 4 + version = "20200610-git"; 5 5 6 - description = ''High-level virtual FS using CL-Fuse-Meta-FS to represent results of queries''; 6 + description = "High-level virtual FS using CL-Fuse-Meta-FS to represent results of queries"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/query-fs/2020-06-10/query-fs-20200610-git.tgz''; 12 - sha256 = ''1kcq2xs5dqwbhapknrynanwqn3c9h4cpi7hf362il2p6v6y4r413''; 11 + url = "http://beta.quicklisp.org/archive/query-fs/2020-06-10/query-fs-20200610-git.tgz"; 12 + sha256 = "1kcq2xs5dqwbhapknrynanwqn3c9h4cpi7hf362il2p6v6y4r413"; 13 13 }; 14 14 15 15 packageName = "query-fs";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/quri.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''quri''; 4 - version = ''20200610-git''; 3 + baseName = "quri"; 4 + version = "20200610-git"; 5 5 6 - description = ''Yet another URI library for Common Lisp''; 6 + description = "Yet another URI library for Common Lisp"; 7 7 8 8 deps = [ args."alexandria" args."babel" args."cl-utilities" args."split-sequence" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/quri/2020-06-10/quri-20200610-git.tgz''; 12 - sha256 = ''1qv8x1m6m70jczvydfq9ws5zw3jw6y74s607vfrqaf0ck5rrwsk6''; 11 + url = "http://beta.quicklisp.org/archive/quri/2020-06-10/quri-20200610-git.tgz"; 12 + sha256 = "1qv8x1m6m70jczvydfq9ws5zw3jw6y74s607vfrqaf0ck5rrwsk6"; 13 13 }; 14 14 15 15 packageName = "quri";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/rfc2388.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''rfc2388''; 4 - version = ''20180831-git''; 3 + baseName = "rfc2388"; 4 + version = "20180831-git"; 5 5 6 - description = ''Implementation of RFC 2388''; 6 + description = "Implementation of RFC 2388"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/rfc2388/2018-08-31/rfc2388-20180831-git.tgz''; 12 - sha256 = ''1r7vvrlq2wl213bm2aknkf34ynpl8y4nbkfir79srrdsl1337z33''; 11 + url = "http://beta.quicklisp.org/archive/rfc2388/2018-08-31/rfc2388-20180831-git.tgz"; 12 + sha256 = "1r7vvrlq2wl213bm2aknkf34ynpl8y4nbkfir79srrdsl1337z33"; 13 13 }; 14 14 15 15 packageName = "rfc2388";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/rove.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''rove''; 4 - version = ''20200325-git''; 3 + baseName = "rove"; 4 + version = "20200325-git"; 5 5 6 - description = ''Yet another testing framework intended to be a successor of Prove''; 6 + description = "Yet another testing framework intended to be a successor of Prove"; 7 7 8 8 deps = [ args."bordeaux-threads" args."dissect" args."trivial-gray-streams" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/rove/2020-03-25/rove-20200325-git.tgz''; 12 - sha256 = ''0zn8d3408rgy2nibia5hdfbf80ix1fgssywx01izx7z99l5x50z5''; 11 + url = "http://beta.quicklisp.org/archive/rove/2020-03-25/rove-20200325-git.tgz"; 12 + sha256 = "0zn8d3408rgy2nibia5hdfbf80ix1fgssywx01izx7z99l5x50z5"; 13 13 }; 14 14 15 15 packageName = "rove";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/rt.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''rt''; 4 - version = ''20101006-git''; 3 + baseName = "rt"; 4 + version = "20101006-git"; 5 5 6 - description = ''MIT Regression Tester''; 6 + description = "MIT Regression Tester"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/rt/2010-10-06/rt-20101006-git.tgz''; 12 - sha256 = ''1jncar0xwkqk8yrc2dln389ivvgzs7ijdhhs3zpfyi5d21f0qa1v''; 11 + url = "http://beta.quicklisp.org/archive/rt/2010-10-06/rt-20101006-git.tgz"; 12 + sha256 = "1jncar0xwkqk8yrc2dln389ivvgzs7ijdhhs3zpfyi5d21f0qa1v"; 13 13 }; 14 14 15 15 packageName = "rt";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/s-sql.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''s-sql''; 4 - version = ''postmodern-20201016-git''; 3 + baseName = "s-sql"; 4 + version = "postmodern-20201016-git"; 5 5 6 6 parasites = [ "s-sql/tests" ]; 7 7 8 - description = ''Lispy DSL for SQL''; 8 + description = "Lispy DSL for SQL"; 9 9 10 10 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/postmodern/2020-10-16/postmodern-20201016-git.tgz''; 14 - sha256 = ''1svaiksbqcaq8sh7q6sj9kzazdfl360zqr2nzhwbgy4xnaj4vf3n''; 13 + url = "http://beta.quicklisp.org/archive/postmodern/2020-10-16/postmodern-20201016-git.tgz"; 14 + sha256 = "1svaiksbqcaq8sh7q6sj9kzazdfl360zqr2nzhwbgy4xnaj4vf3n"; 15 15 }; 16 16 17 17 packageName = "s-sql";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/s-sysdeps.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''s-sysdeps''; 4 - version = ''20200427-git''; 3 + baseName = "s-sysdeps"; 4 + version = "20200427-git"; 5 5 6 - description = ''An abstraction layer over platform dependent functionality''; 6 + description = "An abstraction layer over platform dependent functionality"; 7 7 8 8 deps = [ args."alexandria" args."bordeaux-threads" args."split-sequence" args."usocket" args."usocket-server" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/s-sysdeps/2020-04-27/s-sysdeps-20200427-git.tgz''; 12 - sha256 = ''04dhi0mibqz4i1jly9i6lrd9lf93i25k2f0hba1sqis3x6sm38zy''; 11 + url = "http://beta.quicklisp.org/archive/s-sysdeps/2020-04-27/s-sysdeps-20200427-git.tgz"; 12 + sha256 = "04dhi0mibqz4i1jly9i6lrd9lf93i25k2f0hba1sqis3x6sm38zy"; 13 13 }; 14 14 15 15 packageName = "s-sysdeps";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/s-xml.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''s-xml''; 4 - version = ''20150608-git''; 3 + baseName = "s-xml"; 4 + version = "20150608-git"; 5 5 6 6 parasites = [ "s-xml.examples" "s-xml.test" ]; 7 7 8 - description = ''Simple Common Lisp XML Parser''; 8 + description = "Simple Common Lisp XML Parser"; 9 9 10 10 deps = [ ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/s-xml/2015-06-08/s-xml-20150608-git.tgz''; 14 - sha256 = ''0cy36wqzasqma4maw9djq1vdwsp5hxq8svlbnhbv9sq9zzys5viq''; 13 + url = "http://beta.quicklisp.org/archive/s-xml/2015-06-08/s-xml-20150608-git.tgz"; 14 + sha256 = "0cy36wqzasqma4maw9djq1vdwsp5hxq8svlbnhbv9sq9zzys5viq"; 15 15 }; 16 16 17 17 packageName = "s-xml";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/salza2.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''salza2''; 4 - version = ''2.0.9''; 3 + baseName = "salza2"; 4 + version = "2.0.9"; 5 5 6 6 description = ''Create compressed data in the ZLIB, DEFLATE, or GZIP 7 7 data formats''; ··· 9 9 deps = [ ]; 10 10 11 11 src = fetchurl { 12 - url = ''http://beta.quicklisp.org/archive/salza2/2013-07-20/salza2-2.0.9.tgz''; 13 - sha256 = ''1m0hksgvq3njd9xa2nxlm161vgzw77djxmisq08v9pz2bz16v8va''; 12 + url = "http://beta.quicklisp.org/archive/salza2/2013-07-20/salza2-2.0.9.tgz"; 13 + sha256 = "1m0hksgvq3njd9xa2nxlm161vgzw77djxmisq08v9pz2bz16v8va"; 14 14 }; 15 15 16 16 packageName = "salza2";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/serapeum.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''serapeum''; 4 - version = ''20201016-git''; 3 + baseName = "serapeum"; 4 + version = "20201016-git"; 5 5 6 - description = ''Utilities beyond Alexandria.''; 6 + description = "Utilities beyond Alexandria."; 7 7 8 8 deps = [ args."alexandria" 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-file-size" args."trivial-garbage" args."trivial-macroexpand-all" args."type-i" args."uiop" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/serapeum/2020-10-16/serapeum-20201016-git.tgz''; 12 - sha256 = ''0rbxa0r75jxkhisyjwjh7zn7m1450k58sc9g68bgkj0fsjvr44sq''; 11 + url = "http://beta.quicklisp.org/archive/serapeum/2020-10-16/serapeum-20201016-git.tgz"; 12 + sha256 = "0rbxa0r75jxkhisyjwjh7zn7m1450k58sc9g68bgkj0fsjvr44sq"; 13 13 }; 14 14 15 15 packageName = "serapeum";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/simple-date-time.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''simple-date-time''; 4 - version = ''20160421-git''; 3 + baseName = "simple-date-time"; 4 + version = "20160421-git"; 5 5 6 - description = ''date and time library for common lisp''; 6 + description = "date and time library for common lisp"; 7 7 8 8 deps = [ args."cl-ppcre" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/simple-date-time/2016-04-21/simple-date-time-20160421-git.tgz''; 12 - sha256 = ''1db9n7pspxkqkzz12829a1lp7v4ghrnlb7g3wh04yz6m224d3i4h''; 11 + url = "http://beta.quicklisp.org/archive/simple-date-time/2016-04-21/simple-date-time-20160421-git.tgz"; 12 + sha256 = "1db9n7pspxkqkzz12829a1lp7v4ghrnlb7g3wh04yz6m224d3i4h"; 13 13 }; 14 14 15 15 packageName = "simple-date-time";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/simple-date.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''simple-date''; 4 - version = ''postmodern-20201016-git''; 3 + baseName = "simple-date"; 4 + version = "postmodern-20201016-git"; 5 5 6 6 parasites = [ "simple-date/tests" ]; 7 7 8 - description = ''Simple date library that can be used with postmodern''; 8 + description = "Simple date library that can be used with postmodern"; 9 9 10 10 deps = [ args."fiveam" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/postmodern/2020-10-16/postmodern-20201016-git.tgz''; 14 - sha256 = ''1svaiksbqcaq8sh7q6sj9kzazdfl360zqr2nzhwbgy4xnaj4vf3n''; 13 + url = "http://beta.quicklisp.org/archive/postmodern/2020-10-16/postmodern-20201016-git.tgz"; 14 + sha256 = "1svaiksbqcaq8sh7q6sj9kzazdfl360zqr2nzhwbgy4xnaj4vf3n"; 15 15 }; 16 16 17 17 packageName = "simple-date";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/simple-tasks.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''simple-tasks''; 4 - version = ''20190710-git''; 3 + baseName = "simple-tasks"; 4 + version = "20190710-git"; 5 5 6 - description = ''A very simple task scheduling framework.''; 6 + description = "A very simple task scheduling framework."; 7 7 8 8 deps = [ args."alexandria" args."array-utils" args."bordeaux-threads" args."dissect" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/simple-tasks/2019-07-10/simple-tasks-20190710-git.tgz''; 12 - sha256 = ''12y5phnbj9s2fsrz1ab6xj857zf1fv8kjk7jj2mdjs6k2d8gk8v3''; 11 + url = "http://beta.quicklisp.org/archive/simple-tasks/2019-07-10/simple-tasks-20190710-git.tgz"; 12 + sha256 = "12y5phnbj9s2fsrz1ab6xj857zf1fv8kjk7jj2mdjs6k2d8gk8v3"; 13 13 }; 14 14 15 15 packageName = "simple-tasks";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/smart-buffer.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''smart-buffer''; 4 - version = ''20160628-git''; 3 + baseName = "smart-buffer"; 4 + version = "20160628-git"; 5 5 6 - description = ''Smart octets buffer''; 6 + description = "Smart octets buffer"; 7 7 8 8 deps = [ args."flexi-streams" args."trivial-gray-streams" args."uiop" args."xsubseq" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/smart-buffer/2016-06-28/smart-buffer-20160628-git.tgz''; 12 - sha256 = ''1wp50snkc8739n91xlnfnq1dzz3kfp0awgp92m7xbpcw3hbaib1s''; 11 + url = "http://beta.quicklisp.org/archive/smart-buffer/2016-06-28/smart-buffer-20160628-git.tgz"; 12 + sha256 = "1wp50snkc8739n91xlnfnq1dzz3kfp0awgp92m7xbpcw3hbaib1s"; 13 13 }; 14 14 15 15 packageName = "smart-buffer";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/split-sequence.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''split-sequence''; 4 - version = ''v2.0.0''; 3 + baseName = "split-sequence"; 4 + version = "v2.0.0"; 5 5 6 6 parasites = [ "split-sequence/tests" ]; 7 7 ··· 11 11 deps = [ args."fiveam" ]; 12 12 13 13 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/split-sequence/2019-05-21/split-sequence-v2.0.0.tgz''; 15 - sha256 = ''09cmmswzl1kahvlzgqv8lqm9qcnz5iqg8f26fw3mm9rb3dcp7aba''; 14 + url = "http://beta.quicklisp.org/archive/split-sequence/2019-05-21/split-sequence-v2.0.0.tgz"; 15 + sha256 = "09cmmswzl1kahvlzgqv8lqm9qcnz5iqg8f26fw3mm9rb3dcp7aba"; 16 16 }; 17 17 18 18 packageName = "split-sequence";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/sqlite.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''sqlite''; 4 - version = ''cl-20190813-git''; 3 + baseName = "sqlite"; 4 + version = "cl-20190813-git"; 5 5 6 - description = ''CL-SQLITE package is an interface to the SQLite embedded relational database engine.''; 6 + description = "CL-SQLITE package is an interface to the SQLite embedded relational database engine."; 7 7 8 8 deps = [ args."alexandria" args."babel" args."cffi" args."iterate" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-sqlite/2019-08-13/cl-sqlite-20190813-git.tgz''; 12 - sha256 = ''07zla2h7i7ggmzsyj33f12vpxvcbbvq6x022c2dy13flx8a83rmk''; 11 + url = "http://beta.quicklisp.org/archive/cl-sqlite/2019-08-13/cl-sqlite-20190813-git.tgz"; 12 + sha256 = "07zla2h7i7ggmzsyj33f12vpxvcbbvq6x022c2dy13flx8a83rmk"; 13 13 }; 14 14 15 15 packageName = "sqlite";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/static-vectors.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''static-vectors''; 4 - version = ''v1.8.6''; 3 + baseName = "static-vectors"; 4 + version = "v1.8.6"; 5 5 6 6 parasites = [ "static-vectors/test" ]; 7 7 8 - description = ''Create vectors allocated in static memory.''; 8 + description = "Create vectors allocated in static memory."; 9 9 10 10 deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."fiveam" args."trivial-features" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/static-vectors/2020-06-10/static-vectors-v1.8.6.tgz''; 14 - sha256 = ''0s549cxd8a8ix6jl4dfxj2nh01nl9f4hgnlmb88w7iixanxn58mc''; 13 + url = "http://beta.quicklisp.org/archive/static-vectors/2020-06-10/static-vectors-v1.8.6.tgz"; 14 + sha256 = "0s549cxd8a8ix6jl4dfxj2nh01nl9f4hgnlmb88w7iixanxn58mc"; 15 15 }; 16 16 17 17 packageName = "static-vectors";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/stefil.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''stefil''; 4 - version = ''20181210-git''; 3 + baseName = "stefil"; 4 + version = "20181210-git"; 5 5 6 6 parasites = [ "stefil-test" ]; 7 7 8 - description = ''Stefil - Simple Test Framework In Lisp''; 8 + description = "Stefil - Simple Test Framework In Lisp"; 9 9 10 10 deps = [ args."alexandria" args."iterate" args."metabang-bind" args."swank" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/stefil/2018-12-10/stefil-20181210-git.tgz''; 14 - sha256 = ''10dr8yjrjc2pyx55knds5llh9k716khlvbkmpxh0vn8rdmxmz96g''; 13 + url = "http://beta.quicklisp.org/archive/stefil/2018-12-10/stefil-20181210-git.tgz"; 14 + sha256 = "10dr8yjrjc2pyx55knds5llh9k716khlvbkmpxh0vn8rdmxmz96g"; 15 15 }; 16 16 17 17 packageName = "stefil";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/str.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''str''; 4 - version = ''cl-20200925-git''; 3 + baseName = "str"; 4 + version = "cl-20200925-git"; 5 5 6 - description = ''Modern, consistent and terse Common Lisp string manipulation library.''; 6 + description = "Modern, consistent and terse Common Lisp string manipulation library."; 7 7 8 8 deps = [ args."cl-change-case" args."cl-ppcre" args."cl-ppcre-unicode" args."cl-unicode" args."flexi-streams" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-str/2020-09-25/cl-str-20200925-git.tgz''; 12 - sha256 = ''06k81x80vjw7qd8gca6lnm5k5ws40c6kl99s7m4z72v7jxwa9ykn''; 11 + url = "http://beta.quicklisp.org/archive/cl-str/2020-09-25/cl-str-20200925-git.tgz"; 12 + sha256 = "06k81x80vjw7qd8gca6lnm5k5ws40c6kl99s7m4z72v7jxwa9ykn"; 13 13 }; 14 14 15 15 packageName = "str";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/string-case.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''string-case''; 4 - version = ''20180711-git''; 3 + baseName = "string-case"; 4 + version = "20180711-git"; 5 5 6 - description = ''string-case is a macro that generates specialised decision trees to dispatch on string equality''; 6 + description = "string-case is a macro that generates specialised decision trees to dispatch on string equality"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/string-case/2018-07-11/string-case-20180711-git.tgz''; 12 - sha256 = ''1n36ign4bv0idw14zyayn6i0n3iaff9yw92kpjh3qmdcq3asv90z''; 11 + url = "http://beta.quicklisp.org/archive/string-case/2018-07-11/string-case-20180711-git.tgz"; 12 + sha256 = "1n36ign4bv0idw14zyayn6i0n3iaff9yw92kpjh3qmdcq3asv90z"; 13 13 }; 14 14 15 15 packageName = "string-case";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/stumpwm.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''stumpwm''; 4 - version = ''20201016-git''; 3 + baseName = "stumpwm"; 4 + version = "20201016-git"; 5 5 6 - description = ''A tiling, keyboard driven window manager''; 6 + description = "A tiling, keyboard driven window manager"; 7 7 8 8 deps = [ args."alexandria" args."cl-ppcre" args."clx" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/stumpwm/2020-10-16/stumpwm-20201016-git.tgz''; 12 - sha256 = ''06lc1d9y83x0ckqd9pls7a1dyriz650mpv1rigncr02qsj3aqpp2''; 11 + url = "http://beta.quicklisp.org/archive/stumpwm/2020-10-16/stumpwm-20201016-git.tgz"; 12 + sha256 = "06lc1d9y83x0ckqd9pls7a1dyriz650mpv1rigncr02qsj3aqpp2"; 13 13 }; 14 14 15 15 packageName = "stumpwm";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/swank.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''swank''; 4 - version = ''slime-v2.26''; 3 + baseName = "swank"; 4 + version = "slime-v2.26"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/slime/2020-09-25/slime-v2.26.tgz''; 12 - sha256 = ''0zba4vm73g9zamhqkqcb0prm51kf4clixm2rjz89mq180qa7rrqc''; 11 + url = "http://beta.quicklisp.org/archive/slime/2020-09-25/slime-v2.26.tgz"; 12 + sha256 = "0zba4vm73g9zamhqkqcb0prm51kf4clixm2rjz89mq180qa7rrqc"; 13 13 }; 14 14 15 15 packageName = "swank";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/swap-bytes.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''swap-bytes''; 4 - version = ''v1.2''; 3 + baseName = "swap-bytes"; 4 + version = "v1.2"; 5 5 6 6 parasites = [ "swap-bytes/test" ]; 7 7 8 - description = ''Optimized byte-swapping primitives.''; 8 + description = "Optimized byte-swapping primitives."; 9 9 10 10 deps = [ args."fiveam" args."trivial-features" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/swap-bytes/2019-11-30/swap-bytes-v1.2.tgz''; 14 - sha256 = ''05g37m4cpsszh16jz7kiscd6m6l66ms73f3s6s94i56c49jfxdy8''; 13 + url = "http://beta.quicklisp.org/archive/swap-bytes/2019-11-30/swap-bytes-v1.2.tgz"; 14 + sha256 = "05g37m4cpsszh16jz7kiscd6m6l66ms73f3s6s94i56c49jfxdy8"; 15 15 }; 16 16 17 17 packageName = "swap-bytes";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/symbol-munger.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''symbol-munger''; 4 - version = ''20150407-git''; 3 + baseName = "symbol-munger"; 4 + version = "20150407-git"; 5 5 6 6 description = ''Functions to convert between the spacing and 7 7 capitalization conventions of various environments''; ··· 9 9 deps = [ args."alexandria" args."iterate" ]; 10 10 11 11 src = fetchurl { 12 - url = ''http://beta.quicklisp.org/archive/symbol-munger/2015-04-07/symbol-munger-20150407-git.tgz''; 13 - sha256 = ''0dccli8557kvyy2rngh646rmavf96p7xqn5bry65d7c1f61lyqv6''; 12 + url = "http://beta.quicklisp.org/archive/symbol-munger/2015-04-07/symbol-munger-20150407-git.tgz"; 13 + sha256 = "0dccli8557kvyy2rngh646rmavf96p7xqn5bry65d7c1f61lyqv6"; 14 14 }; 15 15 16 16 packageName = "symbol-munger";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivia''; 4 - version = ''20200925-git''; 3 + baseName = "trivia"; 4 + version = "20200925-git"; 5 5 6 - description = ''NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase''; 6 + description = "NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz''; 12 - sha256 = ''192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z''; 11 + url = "http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz"; 12 + sha256 = "192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z"; 13 13 }; 14 14 15 15 packageName = "trivia";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_balland2006.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivia_dot_balland2006''; 4 - version = ''trivia-20200925-git''; 3 + baseName = "trivia_dot_balland2006"; 4 + version = "trivia-20200925-git"; 5 5 6 - description = ''Optimizer for Trivia based on (Balland 2006)''; 6 + description = "Optimizer for Trivia based on (Balland 2006)"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz''; 12 - sha256 = ''192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z''; 11 + url = "http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz"; 12 + sha256 = "192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z"; 13 13 }; 14 14 15 15 packageName = "trivia.balland2006";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level0.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivia_dot_level0''; 4 - version = ''trivia-20200925-git''; 3 + baseName = "trivia_dot_level0"; 4 + version = "trivia-20200925-git"; 5 5 6 - description = ''Bootstrapping Pattern Matching Library for implementing Trivia''; 6 + description = "Bootstrapping Pattern Matching Library for implementing Trivia"; 7 7 8 8 deps = [ args."alexandria" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz''; 12 - sha256 = ''192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z''; 11 + url = "http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz"; 12 + sha256 = "192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z"; 13 13 }; 14 14 15 15 packageName = "trivia.level0";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level1.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivia_dot_level1''; 4 - version = ''trivia-20200925-git''; 3 + baseName = "trivia_dot_level1"; 4 + version = "trivia-20200925-git"; 5 5 6 - description = ''Core patterns of Trivia''; 6 + description = "Core patterns of Trivia"; 7 7 8 8 deps = [ args."alexandria" args."trivia_dot_level0" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz''; 12 - sha256 = ''192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z''; 11 + url = "http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz"; 12 + sha256 = "192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z"; 13 13 }; 14 14 15 15 packageName = "trivia.level1";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_level2.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivia_dot_level2''; 4 - version = ''trivia-20200925-git''; 3 + baseName = "trivia_dot_level2"; 4 + version = "trivia-20200925-git"; 5 5 6 - description = ''NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase''; 6 + description = "NON-optimized pattern matcher compatible with OPTIMA, with extensible optimizer interface and clean codebase"; 7 7 8 8 deps = [ args."alexandria" args."closer-mop" args."lisp-namespace" args."trivia_dot_level0" args."trivia_dot_level1" args."trivial-cltl2" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz''; 12 - sha256 = ''192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z''; 11 + url = "http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz"; 12 + sha256 = "192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z"; 13 13 }; 14 14 15 15 packageName = "trivia.level2";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_quasiquote.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivia_dot_quasiquote''; 4 - version = ''trivia-20200925-git''; 3 + baseName = "trivia_dot_quasiquote"; 4 + version = "trivia-20200925-git"; 5 5 6 - description = ''fare-quasiquote extension for trivia''; 6 + description = "fare-quasiquote extension for trivia"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz''; 12 - sha256 = ''192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z''; 11 + url = "http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz"; 12 + sha256 = "192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z"; 13 13 }; 14 14 15 15 packageName = "trivia.quasiquote";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivia_dot_trivial.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivia_dot_trivial''; 4 - version = ''trivia-20200925-git''; 3 + baseName = "trivia_dot_trivial"; 4 + version = "trivia-20200925-git"; 5 5 6 6 description = ''Base level system of Trivia with a trivial optimizer. 7 7 Systems that intend to enhance Trivia should depend on this package, not the TRIVIA system, ··· 10 10 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz''; 14 - sha256 = ''192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z''; 13 + url = "http://beta.quicklisp.org/archive/trivia/2020-09-25/trivia-20200925-git.tgz"; 14 + sha256 = "192306pdx50nikph36swipdy2xz1jqrr8p9c3bi91m8qws75wi4z"; 15 15 }; 16 16 17 17 packageName = "trivia.trivial";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-backtrace.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-backtrace''; 4 - version = ''20200610-git''; 3 + baseName = "trivial-backtrace"; 4 + version = "20200610-git"; 5 5 6 - description = ''trivial-backtrace''; 6 + description = "trivial-backtrace"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-backtrace/2020-06-10/trivial-backtrace-20200610-git.tgz''; 12 - sha256 = ''0slz2chal6vpiqx9zmjh4cnihhw794rq3267s7kz7livpiv52rks''; 11 + url = "http://beta.quicklisp.org/archive/trivial-backtrace/2020-06-10/trivial-backtrace-20200610-git.tgz"; 12 + sha256 = "0slz2chal6vpiqx9zmjh4cnihhw794rq3267s7kz7livpiv52rks"; 13 13 }; 14 14 15 15 packageName = "trivial-backtrace";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-clipboard.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-clipboard''; 4 - version = ''20200925-git''; 3 + baseName = "trivial-clipboard"; 4 + version = "20200925-git"; 5 5 6 - description = ''trivial-clipboard let access system clipboard.''; 6 + description = "trivial-clipboard let access system clipboard."; 7 7 8 8 deps = [ args."uiop" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-clipboard/2020-09-25/trivial-clipboard-20200925-git.tgz''; 12 - sha256 = ''1aksag9nfklkg0bshd7dxfip4dj9gl3x0cbisgd2c143k2csb1yc''; 11 + url = "http://beta.quicklisp.org/archive/trivial-clipboard/2020-09-25/trivial-clipboard-20200925-git.tgz"; 12 + sha256 = "1aksag9nfklkg0bshd7dxfip4dj9gl3x0cbisgd2c143k2csb1yc"; 13 13 }; 14 14 15 15 packageName = "trivial-clipboard";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-cltl2.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-cltl2''; 4 - version = ''20200325-git''; 3 + baseName = "trivial-cltl2"; 4 + version = "20200325-git"; 5 5 6 - description = ''Compatibility package exporting CLtL2 functionality''; 6 + description = "Compatibility package exporting CLtL2 functionality"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-cltl2/2020-03-25/trivial-cltl2-20200325-git.tgz''; 12 - sha256 = ''0hahi36v47alsvamg62d0cgay8l0razcgxl089ifj6sqy7s8iwys''; 11 + url = "http://beta.quicklisp.org/archive/trivial-cltl2/2020-03-25/trivial-cltl2-20200325-git.tgz"; 12 + sha256 = "0hahi36v47alsvamg62d0cgay8l0razcgxl089ifj6sqy7s8iwys"; 13 13 }; 14 14 15 15 packageName = "trivial-cltl2";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-features.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-features''; 4 - version = ''20200715-git''; 3 + baseName = "trivial-features"; 4 + version = "20200715-git"; 5 5 6 - description = ''Ensures consistent *FEATURES* across multiple CLs.''; 6 + description = "Ensures consistent *FEATURES* across multiple CLs."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-features/2020-07-15/trivial-features-20200715-git.tgz''; 12 - sha256 = ''0h0xxkp7vciq5yj6a1b5k76h7mzqgb5f9v25nssijgp738nmkni2''; 11 + url = "http://beta.quicklisp.org/archive/trivial-features/2020-07-15/trivial-features-20200715-git.tgz"; 12 + sha256 = "0h0xxkp7vciq5yj6a1b5k76h7mzqgb5f9v25nssijgp738nmkni2"; 13 13 }; 14 14 15 15 packageName = "trivial-features";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-file-size.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-file-size''; 4 - version = ''20200427-git''; 3 + baseName = "trivial-file-size"; 4 + version = "20200427-git"; 5 5 6 6 parasites = [ "trivial-file-size/tests" ]; 7 7 8 - description = ''Stat a file's size.''; 8 + description = "Stat a file's size."; 9 9 10 10 deps = [ args."fiveam" args."uiop" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/trivial-file-size/2020-04-27/trivial-file-size-20200427-git.tgz''; 14 - sha256 = ''1vspkgygrldbjb4gdm1fsn04j50rwil41x0fvvm4fxm84rwrscsa''; 13 + url = "http://beta.quicklisp.org/archive/trivial-file-size/2020-04-27/trivial-file-size-20200427-git.tgz"; 14 + sha256 = "1vspkgygrldbjb4gdm1fsn04j50rwil41x0fvvm4fxm84rwrscsa"; 15 15 }; 16 16 17 17 packageName = "trivial-file-size";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-garbage.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-garbage''; 4 - version = ''20200925-git''; 3 + baseName = "trivial-garbage"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "trivial-garbage/tests" ]; 7 7 8 - description = ''Portable finalizers, weak hash-tables and weak pointers.''; 8 + description = "Portable finalizers, weak hash-tables and weak pointers."; 9 9 10 10 deps = [ args."rt" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/trivial-garbage/2020-09-25/trivial-garbage-20200925-git.tgz''; 14 - sha256 = ''00iw2iw6qzji9b2gwy798l54jdk185sxh1k7m2qd9srs8s730k83''; 13 + url = "http://beta.quicklisp.org/archive/trivial-garbage/2020-09-25/trivial-garbage-20200925-git.tgz"; 14 + sha256 = "00iw2iw6qzji9b2gwy798l54jdk185sxh1k7m2qd9srs8s730k83"; 15 15 }; 16 16 17 17 packageName = "trivial-garbage";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-gray-streams.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-gray-streams''; 4 - version = ''20200925-git''; 3 + baseName = "trivial-gray-streams"; 4 + version = "20200925-git"; 5 5 6 - description = ''Compatibility layer for Gray Streams (see http://www.cliki.net/Gray%20streams).''; 6 + description = "Compatibility layer for Gray Streams (see http://www.cliki.net/Gray%20streams)."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-gray-streams/2020-09-25/trivial-gray-streams-20200925-git.tgz''; 12 - sha256 = ''1mg31fwjixd04lfqbpzjan3cny1i478xm1a9l3p0i9m4dv4g2k2b''; 11 + url = "http://beta.quicklisp.org/archive/trivial-gray-streams/2020-09-25/trivial-gray-streams-20200925-git.tgz"; 12 + sha256 = "1mg31fwjixd04lfqbpzjan3cny1i478xm1a9l3p0i9m4dv4g2k2b"; 13 13 }; 14 14 15 15 packageName = "trivial-gray-streams";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-indent.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-indent''; 4 - version = ''20191007-git''; 3 + baseName = "trivial-indent"; 4 + version = "20191007-git"; 5 5 6 - description = ''A very simple library to allow indentation hints for SWANK.''; 6 + description = "A very simple library to allow indentation hints for SWANK."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-indent/2019-10-07/trivial-indent-20191007-git.tgz''; 12 - sha256 = ''0v5isxg6lfbgcpmndb3c515d7bswhwqgjm97li85w39krnw1bfmv''; 11 + url = "http://beta.quicklisp.org/archive/trivial-indent/2019-10-07/trivial-indent-20191007-git.tgz"; 12 + sha256 = "0v5isxg6lfbgcpmndb3c515d7bswhwqgjm97li85w39krnw1bfmv"; 13 13 }; 14 14 15 15 packageName = "trivial-indent";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-macroexpand-all.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-macroexpand-all''; 4 - version = ''20171023-git''; 3 + baseName = "trivial-macroexpand-all"; 4 + version = "20171023-git"; 5 5 6 - description = ''Call each implementation's macroexpand-all equivalent''; 6 + description = "Call each implementation's macroexpand-all equivalent"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-macroexpand-all/2017-10-23/trivial-macroexpand-all-20171023-git.tgz''; 12 - sha256 = ''0h5h9zn32pn26x7ll9h08g0csr2f5hvk1wgbr7kdhx5zbrszd7zm''; 11 + url = "http://beta.quicklisp.org/archive/trivial-macroexpand-all/2017-10-23/trivial-macroexpand-all-20171023-git.tgz"; 12 + sha256 = "0h5h9zn32pn26x7ll9h08g0csr2f5hvk1wgbr7kdhx5zbrszd7zm"; 13 13 }; 14 14 15 15 packageName = "trivial-macroexpand-all";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-main-thread.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-main-thread''; 4 - version = ''20190710-git''; 3 + baseName = "trivial-main-thread"; 4 + version = "20190710-git"; 5 5 6 - description = ''Compatibility library to run things in the main thread.''; 6 + description = "Compatibility library to run things in the main thread."; 7 7 8 8 deps = [ args."alexandria" args."array-utils" args."bordeaux-threads" args."dissect" args."simple-tasks" args."trivial-features" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-main-thread/2019-07-10/trivial-main-thread-20190710-git.tgz''; 12 - sha256 = ''1zj12rc29rrff5grmi7sjxfzdv78khbb4sg43hy2cb33hykpvg2h''; 11 + url = "http://beta.quicklisp.org/archive/trivial-main-thread/2019-07-10/trivial-main-thread-20190710-git.tgz"; 12 + sha256 = "1zj12rc29rrff5grmi7sjxfzdv78khbb4sg43hy2cb33hykpvg2h"; 13 13 }; 14 14 15 15 packageName = "trivial-main-thread";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-mimes.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-mimes''; 4 - version = ''20200715-git''; 3 + baseName = "trivial-mimes"; 4 + version = "20200715-git"; 5 5 6 - description = ''Tiny library to detect mime types in files.''; 6 + description = "Tiny library to detect mime types in files."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-mimes/2020-07-15/trivial-mimes-20200715-git.tgz''; 12 - sha256 = ''10mk1v5ad0m3bg5pl7lqhh827jvg5jb896807vmi8wznwk7zaif1''; 11 + url = "http://beta.quicklisp.org/archive/trivial-mimes/2020-07-15/trivial-mimes-20200715-git.tgz"; 12 + sha256 = "10mk1v5ad0m3bg5pl7lqhh827jvg5jb896807vmi8wznwk7zaif1"; 13 13 }; 14 14 15 15 packageName = "trivial-mimes";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-package-local-nicknames.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-package-local-nicknames''; 4 - version = ''20200610-git''; 3 + baseName = "trivial-package-local-nicknames"; 4 + version = "20200610-git"; 5 5 6 - description = ''Portability library for package-local nicknames''; 6 + description = "Portability library for package-local nicknames"; 7 7 8 8 deps = [ ]; 9 9 10 10 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''; 11 + url = "http://beta.quicklisp.org/archive/trivial-package-local-nicknames/2020-06-10/trivial-package-local-nicknames-20200610-git.tgz"; 12 + sha256 = "1wabkcwz0v144rb2w3rvxlcj264indfnvlyigk1wds7nq0c8lwk5"; 13 13 }; 14 14 15 15 packageName = "trivial-package-local-nicknames";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-types.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-types''; 4 - version = ''20120407-git''; 3 + baseName = "trivial-types"; 4 + version = "20120407-git"; 5 5 6 - description = ''Trivial type definitions''; 6 + description = "Trivial type definitions"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/trivial-types/2012-04-07/trivial-types-20120407-git.tgz''; 12 - sha256 = ''0y3lfbbvi2qp2cwswzmk1awzqrsrrcfkcm1qn744bgm1fiqhxbxx''; 11 + url = "http://beta.quicklisp.org/archive/trivial-types/2012-04-07/trivial-types-20120407-git.tgz"; 12 + sha256 = "0y3lfbbvi2qp2cwswzmk1awzqrsrrcfkcm1qn744bgm1fiqhxbxx"; 13 13 }; 14 14 15 15 packageName = "trivial-types";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-utf-8.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''trivial-utf-8''; 4 - version = ''20200925-git''; 3 + baseName = "trivial-utf-8"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "trivial-utf-8/doc" "trivial-utf-8/tests" ]; 7 7 8 - description = ''A small library for doing UTF-8-based input and output.''; 8 + description = "A small library for doing UTF-8-based input and output."; 9 9 10 10 deps = [ args."mgl-pax" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/trivial-utf-8/2020-09-25/trivial-utf-8-20200925-git.tgz''; 14 - sha256 = ''06v9jif4f5xyl5jd7ldg69ds7cypf72xl7nda5q55fssmgcydi1b''; 13 + url = "http://beta.quicklisp.org/archive/trivial-utf-8/2020-09-25/trivial-utf-8-20200925-git.tgz"; 14 + sha256 = "06v9jif4f5xyl5jd7ldg69ds7cypf72xl7nda5q55fssmgcydi1b"; 15 15 }; 16 16 17 17 packageName = "trivial-utf-8";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/type-i.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''type-i''; 4 - version = ''20191227-git''; 3 + baseName = "type-i"; 4 + version = "20191227-git"; 5 5 6 - description = ''Type Inference Utility on Fundamentally 1-arg Predicates''; 6 + description = "Type Inference Utility on Fundamentally 1-arg Predicates"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/type-i/2019-12-27/type-i-20191227-git.tgz''; 12 - sha256 = ''0f8q6klqjgz1kdyhisfkk07izvgs04jchlv2kl3srjxfr5dj5jl5''; 11 + url = "http://beta.quicklisp.org/archive/type-i/2019-12-27/type-i-20191227-git.tgz"; 12 + sha256 = "0f8q6klqjgz1kdyhisfkk07izvgs04jchlv2kl3srjxfr5dj5jl5"; 13 13 }; 14 14 15 15 packageName = "type-i";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/uax-15.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''uax-15''; 4 - version = ''20200325-git''; 3 + baseName = "uax-15"; 4 + version = "20200325-git"; 5 5 6 6 parasites = [ "uax-15/tests" ]; 7 7 8 - description = ''Common lisp implementation of Unicode normalization functions :nfc, :nfd, :nfkc and :nfkd (Uax-15)''; 8 + description = "Common lisp implementation of Unicode normalization functions :nfc, :nfd, :nfkc and :nfkd (Uax-15)"; 9 9 10 10 deps = [ args."cl-ppcre" args."fiveam" args."split-sequence" args."uiop" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/uax-15/2020-03-25/uax-15-20200325-git.tgz''; 14 - sha256 = ''0nld8a95fy0nfni8g663786cz5q3x63bxymx0jlaknb6lfibb6pc''; 13 + url = "http://beta.quicklisp.org/archive/uax-15/2020-03-25/uax-15-20200325-git.tgz"; 14 + sha256 = "0nld8a95fy0nfni8g663786cz5q3x63bxymx0jlaknb6lfibb6pc"; 15 15 }; 16 16 17 17 packageName = "uax-15";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/uffi.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''uffi''; 4 - version = ''20180228-git''; 3 + baseName = "uffi"; 4 + version = "20180228-git"; 5 5 6 - description = ''Universal Foreign Function Library for Common Lisp''; 6 + description = "Universal Foreign Function Library for Common Lisp"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/uffi/2018-02-28/uffi-20180228-git.tgz''; 12 - sha256 = ''1kknzwxsbg2ydy2w0n88y2bq37lqqwg02ffsmz57gqbxvlk26479''; 11 + url = "http://beta.quicklisp.org/archive/uffi/2018-02-28/uffi-20180228-git.tgz"; 12 + sha256 = "1kknzwxsbg2ydy2w0n88y2bq37lqqwg02ffsmz57gqbxvlk26479"; 13 13 }; 14 14 15 15 packageName = "uffi";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/uiop.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''uiop''; 4 - version = ''3.3.4''; 3 + baseName = "uiop"; 4 + version = "3.3.4"; 5 5 6 - description = ''System lacks description''; 6 + description = "System lacks description"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/uiop/2020-02-18/uiop-3.3.4.tgz''; 12 - sha256 = ''0n0fp55ivwi6gzhaywdkngnk2snpp9nn3mz5rq3pnrwldi9q7aav''; 11 + url = "http://beta.quicklisp.org/archive/uiop/2020-02-18/uiop-3.3.4.tgz"; 12 + sha256 = "0n0fp55ivwi6gzhaywdkngnk2snpp9nn3mz5rq3pnrwldi9q7aav"; 13 13 }; 14 14 15 15 packageName = "uiop";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/unit-test.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''unit-test''; 4 - version = ''20120520-git''; 3 + baseName = "unit-test"; 4 + version = "20120520-git"; 5 5 6 - description = ''unit-testing framework for common lisp''; 6 + description = "unit-testing framework for common lisp"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/unit-test/2012-05-20/unit-test-20120520-git.tgz''; 12 - sha256 = ''1bwbx9d2z9qll46ksfh7bgd0dgh4is2dyfhkladq53qycvjywv9l''; 11 + url = "http://beta.quicklisp.org/archive/unit-test/2012-05-20/unit-test-20120520-git.tgz"; 12 + sha256 = "1bwbx9d2z9qll46ksfh7bgd0dgh4is2dyfhkladq53qycvjywv9l"; 13 13 }; 14 14 15 15 packageName = "unit-test";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/unix-options.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''unix-options''; 4 - version = ''20151031-git''; 3 + baseName = "unix-options"; 4 + version = "20151031-git"; 5 5 6 - description = ''Easy to use command line option parser''; 6 + description = "Easy to use command line option parser"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/unix-options/2015-10-31/unix-options-20151031-git.tgz''; 12 - sha256 = ''0c9vbvvyx5qwvns87624gzxjcbdkbkcwssg29cxjfv3ci3qwqcd5''; 11 + url = "http://beta.quicklisp.org/archive/unix-options/2015-10-31/unix-options-20151031-git.tgz"; 12 + sha256 = "0c9vbvvyx5qwvns87624gzxjcbdkbkcwssg29cxjfv3ci3qwqcd5"; 13 13 }; 14 14 15 15 packageName = "unix-options";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/unix-opts.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''unix-opts''; 4 - version = ''20200925-git''; 3 + baseName = "unix-opts"; 4 + version = "20200925-git"; 5 5 6 6 parasites = [ "unix-opts/tests" ]; 7 7 8 - description = ''minimalistic parser of command line arguments''; 8 + description = "minimalistic parser of command line arguments"; 9 9 10 10 deps = [ ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/unix-opts/2020-09-25/unix-opts-20200925-git.tgz''; 14 - sha256 = ''0y7bg825l8my7kpk4iwx0n8wn7rgy7bir60kb0s55g3x0nx5vx35''; 13 + url = "http://beta.quicklisp.org/archive/unix-opts/2020-09-25/unix-opts-20200925-git.tgz"; 14 + sha256 = "0y7bg825l8my7kpk4iwx0n8wn7rgy7bir60kb0s55g3x0nx5vx35"; 15 15 }; 16 16 17 17 packageName = "unix-opts";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/usocket-server.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''usocket-server''; 4 - version = ''usocket-0.8.3''; 3 + baseName = "usocket-server"; 4 + version = "usocket-0.8.3"; 5 5 6 - description = ''Universal socket library for Common Lisp (server side)''; 6 + description = "Universal socket library for Common Lisp (server side)"; 7 7 8 8 deps = [ args."alexandria" args."bordeaux-threads" args."split-sequence" args."usocket" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz''; 12 - sha256 = ''19gl72r9jqms8slzn7i7bww2cqng9mhiqqhhccadlrx2xv6d3lm7''; 11 + url = "http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz"; 12 + sha256 = "19gl72r9jqms8slzn7i7bww2cqng9mhiqqhhccadlrx2xv6d3lm7"; 13 13 }; 14 14 15 15 packageName = "usocket-server";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/usocket.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''usocket''; 4 - version = ''0.8.3''; 3 + baseName = "usocket"; 4 + version = "0.8.3"; 5 5 6 - description = ''Universal socket library for Common Lisp''; 6 + description = "Universal socket library for Common Lisp"; 7 7 8 8 deps = [ args."split-sequence" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz''; 12 - sha256 = ''19gl72r9jqms8slzn7i7bww2cqng9mhiqqhhccadlrx2xv6d3lm7''; 11 + url = "http://beta.quicklisp.org/archive/usocket/2019-12-27/usocket-0.8.3.tgz"; 12 + sha256 = "19gl72r9jqms8slzn7i7bww2cqng9mhiqqhhccadlrx2xv6d3lm7"; 13 13 }; 14 14 15 15 packageName = "usocket";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/utilities_dot_print-items.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''utilities_dot_print-items''; 4 - version = ''20190813-git''; 3 + baseName = "utilities_dot_print-items"; 4 + version = "20190813-git"; 5 5 6 6 parasites = [ "utilities.print-items/test" ]; 7 7 8 - description = ''A protocol for flexible and composable printing.''; 8 + description = "A protocol for flexible and composable printing."; 9 9 10 10 deps = [ args."alexandria" args."fiveam" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/utilities.print-items/2019-08-13/utilities.print-items-20190813-git.tgz''; 14 - sha256 = ''12l4kzz621qfcg8p5qzyxp4n4hh9wdlpiziykwb4c80g32rdwkc2''; 13 + url = "http://beta.quicklisp.org/archive/utilities.print-items/2019-08-13/utilities.print-items-20190813-git.tgz"; 14 + sha256 = "12l4kzz621qfcg8p5qzyxp4n4hh9wdlpiziykwb4c80g32rdwkc2"; 15 15 }; 16 16 17 17 packageName = "utilities.print-items";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/utilities_dot_print-tree.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''utilities_dot_print-tree''; 4 - version = ''20200325-git''; 3 + baseName = "utilities_dot_print-tree"; 4 + version = "20200325-git"; 5 5 6 6 parasites = [ "utilities.print-tree/test" ]; 7 7 8 - description = ''This system provides simple facilities for printing tree structures.''; 8 + description = "This system provides simple facilities for printing tree structures."; 9 9 10 10 deps = [ args."alexandria" args."fiveam" args."uiop" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/utilities.print-tree/2020-03-25/utilities.print-tree-20200325-git.tgz''; 14 - sha256 = ''1nam8g2ppzkzpkwwhmil9y68is43ljpvc7hd64zxp4zsaqab5dww''; 13 + url = "http://beta.quicklisp.org/archive/utilities.print-tree/2020-03-25/utilities.print-tree-20200325-git.tgz"; 14 + sha256 = "1nam8g2ppzkzpkwwhmil9y68is43ljpvc7hd64zxp4zsaqab5dww"; 15 15 }; 16 16 17 17 packageName = "utilities.print-tree";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/uuid.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''uuid''; 4 - version = ''20200715-git''; 3 + baseName = "uuid"; 4 + version = "20200715-git"; 5 5 6 - description = ''UUID Generation''; 6 + description = "UUID Generation"; 7 7 8 8 deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" args."trivial-utf-8" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/uuid/2020-07-15/uuid-20200715-git.tgz''; 12 - sha256 = ''1ymir6hgax1vbbcgyprnwbsx224ih03a55v10l35xridwyzhzrx0''; 11 + url = "http://beta.quicklisp.org/archive/uuid/2020-07-15/uuid-20200715-git.tgz"; 12 + sha256 = "1ymir6hgax1vbbcgyprnwbsx224ih03a55v10l35xridwyzhzrx0"; 13 13 }; 14 14 15 15 packageName = "uuid";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/vom.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''vom''; 4 - version = ''20160825-git''; 3 + baseName = "vom"; 4 + version = "20160825-git"; 5 5 6 - description = ''A tiny logging utility.''; 6 + description = "A tiny logging utility."; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/vom/2016-08-25/vom-20160825-git.tgz''; 12 - sha256 = ''0mvln0xx8qnrsmaj7c0f2ilgahvf078qvhqag7qs3j26xmamjm93''; 11 + url = "http://beta.quicklisp.org/archive/vom/2016-08-25/vom-20160825-git.tgz"; 12 + sha256 = "0mvln0xx8qnrsmaj7c0f2ilgahvf078qvhqag7qs3j26xmamjm93"; 13 13 }; 14 14 15 15 packageName = "vom";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/woo.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''woo''; 4 - version = ''20200427-git''; 3 + baseName = "woo"; 4 + version = "20200427-git"; 5 5 6 - description = ''An asynchronous HTTP server written in Common Lisp''; 6 + description = "An asynchronous HTTP server written in Common Lisp"; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/woo/2020-04-27/woo-20200427-git.tgz''; 12 - sha256 = ''1mmgwgf9n74zab96x1n4faij30l2vk19xy74fcp0xnpj4lrp7v29''; 11 + url = "http://beta.quicklisp.org/archive/woo/2020-04-27/woo-20200427-git.tgz"; 12 + sha256 = "1mmgwgf9n74zab96x1n4faij30l2vk19xy74fcp0xnpj4lrp7v29"; 13 13 }; 14 14 15 15 packageName = "woo";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/wookie.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''wookie''; 4 - version = ''20191130-git''; 3 + baseName = "wookie"; 4 + version = "20191130-git"; 5 5 6 - description = ''An evented webserver for Common Lisp.''; 6 + description = "An evented webserver for Common Lisp."; 7 7 8 8 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 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/wookie/2019-11-30/wookie-20191130-git.tgz''; 12 - sha256 = ''13f9fi7yv28lag79z03jrnm7aih2x5zwvh4hw9cadw75956975d2''; 11 + url = "http://beta.quicklisp.org/archive/wookie/2019-11-30/wookie-20191130-git.tgz"; 12 + sha256 = "13f9fi7yv28lag79z03jrnm7aih2x5zwvh4hw9cadw75956975d2"; 13 13 }; 14 14 15 15 packageName = "wookie";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/xembed.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''xembed''; 4 - version = ''clx-20191130-git''; 3 + baseName = "xembed"; 4 + version = "clx-20191130-git"; 5 5 6 - description = ''An implementation of the XEMBED protocol that integrates with CLX.''; 6 + description = "An implementation of the XEMBED protocol that integrates with CLX."; 7 7 8 8 deps = [ args."clx" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/clx-xembed/2019-11-30/clx-xembed-20191130-git.tgz''; 12 - sha256 = ''1ik5gxzhn9j7827jg6g8rk2wa5jby11n2db24y6wrf0ldnbpj7jd''; 11 + url = "http://beta.quicklisp.org/archive/clx-xembed/2019-11-30/clx-xembed-20191130-git.tgz"; 12 + sha256 = "1ik5gxzhn9j7827jg6g8rk2wa5jby11n2db24y6wrf0ldnbpj7jd"; 13 13 }; 14 14 15 15 packageName = "xembed";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/xkeyboard.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''xkeyboard''; 4 - version = ''clx-20120811-git''; 3 + baseName = "xkeyboard"; 4 + version = "clx-20120811-git"; 5 5 6 6 parasites = [ "xkeyboard-test" ]; 7 7 8 - description = ''XKeyboard is X11 extension for clx of the same name.''; 8 + description = "XKeyboard is X11 extension for clx of the same name."; 9 9 10 10 deps = [ args."clx" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/clx-xkeyboard/2012-08-11/clx-xkeyboard-20120811-git.tgz''; 14 - sha256 = ''11q70drx3xn7rvk528qlnzpnxd6hg6801kc54ys3jz1l7074458n''; 13 + url = "http://beta.quicklisp.org/archive/clx-xkeyboard/2012-08-11/clx-xkeyboard-20120811-git.tgz"; 14 + sha256 = "11q70drx3xn7rvk528qlnzpnxd6hg6801kc54ys3jz1l7074458n"; 15 15 }; 16 16 17 17 packageName = "xkeyboard";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/xml_dot_location.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''xml_dot_location''; 4 - version = ''20200325-git''; 3 + baseName = "xml_dot_location"; 4 + version = "20200325-git"; 5 5 6 6 parasites = [ "xml.location/test" ]; 7 7 ··· 11 11 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 12 13 13 src = fetchurl { 14 - url = ''http://beta.quicklisp.org/archive/xml.location/2020-03-25/xml.location-20200325-git.tgz''; 15 - sha256 = ''0wfccj1p1al0w9pc5rhxpsvm3wb2lr5fc4cfjyg751pwsasjikwx''; 14 + url = "http://beta.quicklisp.org/archive/xml.location/2020-03-25/xml.location-20200325-git.tgz"; 15 + sha256 = "0wfccj1p1al0w9pc5rhxpsvm3wb2lr5fc4cfjyg751pwsasjikwx"; 16 16 }; 17 17 18 18 packageName = "xml.location";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/xmls.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''xmls''; 4 - version = ''3.0.2''; 3 + baseName = "xmls"; 4 + version = "3.0.2"; 5 5 6 6 parasites = [ "xmls/test" "xmls/unit-test" ]; 7 7 8 - description = ''System lacks description''; 8 + description = "System lacks description"; 9 9 10 10 deps = [ args."fiveam" ]; 11 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/xmls/2018-04-30/xmls-3.0.2.tgz''; 14 - sha256 = ''1r7mvw62zjcg45j3hm8jlbiisad2b415pghn6qcmhl03dmgp7kgi''; 13 + url = "http://beta.quicklisp.org/archive/xmls/2018-04-30/xmls-3.0.2.tgz"; 14 + sha256 = "1r7mvw62zjcg45j3hm8jlbiisad2b415pghn6qcmhl03dmgp7kgi"; 15 15 }; 16 16 17 17 packageName = "xmls";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/xpath.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''xpath''; 4 - version = ''plexippus-20190521-git''; 3 + baseName = "xpath"; 4 + version = "plexippus-20190521-git"; 5 5 6 6 parasites = [ "xpath/test" ]; 7 7 8 - description = ''An implementation of the XML Path Language (XPath) Version 1.0''; 8 + description = "An implementation of the XML Path Language (XPath) Version 1.0"; 9 9 10 10 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 11 12 12 src = fetchurl { 13 - url = ''http://beta.quicklisp.org/archive/plexippus-xpath/2019-05-21/plexippus-xpath-20190521-git.tgz''; 14 - sha256 = ''15357w1rlmahld4rh8avix7m40mwiiv7n2vlyc57ldw2k1m0n7xa''; 13 + url = "http://beta.quicklisp.org/archive/plexippus-xpath/2019-05-21/plexippus-xpath-20190521-git.tgz"; 14 + sha256 = "15357w1rlmahld4rh8avix7m40mwiiv7n2vlyc57ldw2k1m0n7xa"; 15 15 }; 16 16 17 17 packageName = "xpath";
+4 -4
pkgs/development/lisp-modules/quicklisp-to-nix-output/xsubseq.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''xsubseq''; 4 - version = ''20170830-git''; 3 + baseName = "xsubseq"; 4 + version = "20170830-git"; 5 5 6 6 description = ''Efficient way to manage "subseq"s in Common Lisp''; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/xsubseq/2017-08-30/xsubseq-20170830-git.tgz''; 12 - sha256 = ''1am63wkha97hyvkqf4ydx3q07mqpa0chkx65znr7kmqi83a8waml''; 11 + url = "http://beta.quicklisp.org/archive/xsubseq/2017-08-30/xsubseq-20170830-git.tgz"; 12 + sha256 = "1am63wkha97hyvkqf4ydx3q07mqpa0chkx65znr7kmqi83a8waml"; 13 13 }; 14 14 15 15 packageName = "xsubseq";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/yacc.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''yacc''; 4 - version = ''cl-20101006-darcs''; 3 + baseName = "yacc"; 4 + version = "cl-20101006-darcs"; 5 5 6 - description = ''A LALR(1) parser generator for Common Lisp''; 6 + description = "A LALR(1) parser generator for Common Lisp"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/cl-yacc/2010-10-06/cl-yacc-20101006-darcs.tgz''; 12 - sha256 = ''0cymvl0arp4yahqcnhxggs1z2g42bf6z4ix75ba7wbsi52zirjp7''; 11 + url = "http://beta.quicklisp.org/archive/cl-yacc/2010-10-06/cl-yacc-20101006-darcs.tgz"; 12 + sha256 = "0cymvl0arp4yahqcnhxggs1z2g42bf6z4ix75ba7wbsi52zirjp7"; 13 13 }; 14 14 15 15 packageName = "yacc";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/yason.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''yason''; 4 - version = ''v0.7.8''; 3 + baseName = "yason"; 4 + version = "v0.7.8"; 5 5 6 - description = ''JSON parser/encoder''; 6 + description = "JSON parser/encoder"; 7 7 8 8 deps = [ args."alexandria" args."trivial-gray-streams" ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/yason/2019-12-27/yason-v0.7.8.tgz''; 12 - sha256 = ''11d51i2iw4nxsparwbh3s6w9zyms3wi0z0fprwz1d3sqlf03j6f1''; 11 + url = "http://beta.quicklisp.org/archive/yason/2019-12-27/yason-v0.7.8.tgz"; 12 + sha256 = "11d51i2iw4nxsparwbh3s6w9zyms3wi0z0fprwz1d3sqlf03j6f1"; 13 13 }; 14 14 15 15 packageName = "yason";
+5 -5
pkgs/development/lisp-modules/quicklisp-to-nix-output/zpb-ttf.nix
··· 1 1 args @ { fetchurl, ... }: 2 2 rec { 3 - baseName = ''zpb-ttf''; 4 - version = ''1.0.3''; 3 + baseName = "zpb-ttf"; 4 + version = "1.0.3"; 5 5 6 - description = ''Access TrueType font metrics and outlines from Common Lisp''; 6 + description = "Access TrueType font metrics and outlines from Common Lisp"; 7 7 8 8 deps = [ ]; 9 9 10 10 src = fetchurl { 11 - url = ''http://beta.quicklisp.org/archive/zpb-ttf/2013-07-20/zpb-ttf-1.0.3.tgz''; 12 - sha256 = ''1irv0d0pcbwi2wx6hhjjyxzw12lnw8pvyg6ljsljh8xmhppbg5j6''; 11 + url = "http://beta.quicklisp.org/archive/zpb-ttf/2013-07-20/zpb-ttf-1.0.3.tgz"; 12 + sha256 = "1irv0d0pcbwi2wx6hhjjyxzw12lnw8pvyg6ljsljh8xmhppbg5j6"; 13 13 }; 14 14 15 15 packageName = "zpb-ttf";
+1 -1
pkgs/development/ocaml-modules/torch/default.nix
··· 46 46 stdio 47 47 ]; 48 48 49 - preBuild = ''export LIBTORCH=${pytorch.dev}/''; 49 + preBuild = "export LIBTORCH=${pytorch.dev}/"; 50 50 51 51 doCheck = !stdenv.isAarch64; 52 52 checkPhase = "dune runtest";
+2 -2
pkgs/development/pure-modules/gl/default.nix
··· 13 13 nativeBuildInputs = [ pkg-config ]; 14 14 propagatedBuildInputs = [ pure freeglut libGLU libGL xlibsWrapper ]; 15 15 makeFlags = [ 16 - "libdir=${placeholder ''out''}/lib" 17 - "prefix=${placeholder ''out''}/" 16 + "libdir=${placeholder "out"}/lib" 17 + "prefix=${placeholder "out"}/" 18 18 ]; 19 19 setupHook = ../generic-setup-hook.sh; 20 20
+1 -1
pkgs/development/python-modules/apptools/default.nix
··· 28 28 ]; 29 29 30 30 doCheck = true; 31 - checkPhase = ''HOME=$TMP nosetests''; 31 + checkPhase = "HOME=$TMP nosetests"; 32 32 33 33 meta = with lib; { 34 34 description = "Set of packages that Enthought has found useful in creating a number of applications.";
+1 -1
pkgs/development/python-modules/betacode/default.nix
··· 6 6 inherit pname version; 7 7 sha256 = "0s84kd9vblbjz61q7zchx64a6hmdqb4lillna5ryh0g9ij76g6r5"; 8 8 }; 9 - preBuild = ''echo > README.rst''; 9 + preBuild = "echo > README.rst"; 10 10 # setup.py uses a python3 os.path.join 11 11 disabled = !isPy3k; 12 12 propagatedBuildInputs = [ pygtrie ];
+1 -1
pkgs/development/python-modules/bravado-core/default.nix
··· 21 21 pytest-benchmark 22 22 ]; 23 23 24 - checkPhase = ''pytest --benchmark-skip''; 24 + checkPhase = "pytest --benchmark-skip"; 25 25 26 26 propagatedBuildInputs = [ 27 27 python-dateutil
+1 -1
pkgs/development/python-modules/emoji/default.nix
··· 11 11 12 12 checkInputs = [ nose ]; 13 13 14 - checkPhase = ''nosetests''; 14 + checkPhase = "nosetests"; 15 15 16 16 meta = with lib; { 17 17 description = "Emoji for Python";
+1 -1
pkgs/development/python-modules/ftputil/default.nix
··· 21 21 and not test_conditional_upload and not test_conditional_download_with_older_target \ 22 22 '' 23 23 # need until https://ftputil.sschwarzer.net/trac/ticket/140#ticket is fixed 24 - + lib.optionalString stdenv.isDarwin ''and not test_error_message_reuse'' 24 + + lib.optionalString stdenv.isDarwin "and not test_error_message_reuse" 25 25 + ''"''; 26 26 27 27 meta = with lib; {
+1 -1
pkgs/development/python-modules/inflection/default.nix
··· 12 12 13 13 checkInputs = [ pytest ]; 14 14 # Suppress overly verbose output if tests run successfully 15 - checkPhase = ''pytest >/dev/null || pytest''; 15 + checkPhase = "pytest >/dev/null || pytest"; 16 16 17 17 meta = { 18 18 homepage = "https://github.com/jpvanhal/inflection";
+1 -1
pkgs/development/python-modules/jenkins-job-builder/default.nix
··· 24 24 propagatedBuildInputs = [ pbr python-jenkins pyyaml six stevedore fasteners jinja2 ]; 25 25 26 26 # Need to fix test deps, relies on stestr and a few other packages that aren't available on nixpkgs 27 - checkPhase = ''$out/bin/jenkins-jobs --help''; 27 + checkPhase = "$out/bin/jenkins-jobs --help"; 28 28 29 29 meta = with lib; { 30 30 description = "Jenkins Job Builder is a system for configuring Jenkins jobs using simple YAML files stored in Git";
+1 -1
pkgs/development/python-modules/nuitka/default.nix
··· 31 31 ''; 32 32 33 33 # We do not want any wrappers here. 34 - postFixup = ''''; 34 + postFixup = ""; 35 35 36 36 checkPhase = '' 37 37 tests/run-tests
+1 -1
pkgs/development/python-modules/pytest-virtualenv/default.nix
··· 12 12 13 13 checkInputs = [ pytest pytestcov mock cmdline ]; 14 14 propagatedBuildInputs = [ pytest-fixture-config pytest-shutil virtualenv ]; 15 - checkPhase = '' py.test tests/unit ''; 15 + checkPhase = "py.test tests/unit "; 16 16 17 17 nativeBuildInputs = [ pytest ]; 18 18
+1 -2
pkgs/development/python-modules/rarfile/default.nix
··· 28 28 else 29 29 ''--replace 'ALT_TOOL = "bsdtar"' "ALT_TOOL = \"${libarchive}/bin/bsdtar\"" 30 30 '') 31 - + '' 32 - ''; 31 + + ""; 33 32 # the tests only work with the standard unrar package 34 33 doCheck = useUnrar; 35 34 LC_ALL = "en_US.UTF-8";
+2 -2
pkgs/development/tools/build-managers/bam/default.nix
··· 13 13 14 14 buildInputs = [ lua5_3 python ]; 15 15 16 - buildPhase = ''${stdenv.shell} make_unix.sh''; 16 + buildPhase = "${stdenv.shell} make_unix.sh"; 17 17 18 - checkPhase = ''${python.interpreter} scripts/test.py''; 18 + checkPhase = "${python.interpreter} scripts/test.py"; 19 19 20 20 installPhase = '' 21 21 mkdir -p "$out/share/bam"
+1 -1
pkgs/development/tools/go-motion/default.nix
··· 9 9 rev = "218875ebe23806e7af82f3b5b14bb3355534f679"; 10 10 11 11 goPackagePath = "github.com/fatih/motion"; 12 - excludedPackages = ''testdata''; 12 + excludedPackages = "testdata"; 13 13 14 14 src = fetchFromGitHub { 15 15 inherit rev;
+1 -1
pkgs/development/tools/go2nix/default.nix
··· 21 21 22 22 nativeBuildInputs = [ go-bindata gotools makeWrapper ]; 23 23 24 - preBuild = ''go generate ./...''; 24 + preBuild = "go generate ./..."; 25 25 26 26 postInstall = '' 27 27 wrapProgram $out/bin/go2nix \
+1 -1
pkgs/development/tools/gocode-gomod/default.nix
··· 9 9 # standard packages. 10 10 allowGoReference = true; 11 11 12 - excludedPackages = ''internal/suggest/testdata''; 12 + excludedPackages = "internal/suggest/testdata"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "stamblerre";
+1 -1
pkgs/development/tools/gocode/default.nix
··· 6 6 rev = "4acdcbdea79de6b3dee1c637eca5cbea0fdbe37c"; 7 7 8 8 goPackagePath = "github.com/mdempsky/gocode"; 9 - excludedPackages = ''internal/suggest/testdata''; 9 + excludedPackages = "internal/suggest/testdata"; 10 10 11 11 # we must allow references to the original `go` package, 12 12 # because `gocode` needs to dig into $GOROOT to provide completions for the
+1 -1
pkgs/development/tools/iaca/2.1.nix
··· 22 22 --set-rpath $out/lib:"${libPath}" \ 23 23 $out/bin/iaca 24 24 ''; 25 - postFixup = ''wrapProgram $out/bin/iaca --set LD_LIBRARY_PATH $out/lib''; 25 + postFixup = "wrapProgram $out/bin/iaca --set LD_LIBRARY_PATH $out/lib"; 26 26 meta = { 27 27 description = "Intel Architecture Code Analyzer"; 28 28 homepage = "https://software.intel.com/en-us/articles/intel-architecture-code-analyzer/";
+1 -1
pkgs/development/tools/ineffassign/default.nix
··· 9 9 rev = "1003c8bd00dc2869cb5ca5282e6ce33834fed514"; 10 10 11 11 goPackagePath = "github.com/gordonklaus/ineffassign"; 12 - excludedPackages = ''testdata''; 12 + excludedPackages = "testdata"; 13 13 14 14 src = fetchFromGitHub { 15 15 inherit rev;
+1 -1
pkgs/development/tools/interfacer/default.nix
··· 9 9 rev = "c20040233aedb03da82d460eca6130fcd91c629a"; 10 10 11 11 goPackagePath = "mvdan.cc/interfacer"; 12 - excludedPackages = ''check/testdata''; 12 + excludedPackages = "check/testdata"; 13 13 14 14 src = fetchFromGitHub { 15 15 inherit rev;
+2 -2
pkgs/development/tools/misc/bossa/default.nix
··· 8 8 name = "bossa-bin2c"; 9 9 src = ./bin2c.c; 10 10 dontUnpack = true; 11 - buildPhase = ''cc $src -o bin2c''; 12 - installPhase = ''mkdir -p $out/bin; cp bin2c $out/bin/''; 11 + buildPhase = "cc $src -o bin2c"; 12 + installPhase = "mkdir -p $out/bin; cp bin2c $out/bin/"; 13 13 }; 14 14 15 15 in
+1 -1
pkgs/development/tools/misc/cl-launch/default.nix
··· 30 30 31 31 meta = { 32 32 inherit (s) version; 33 - description = ''Common Lisp launcher script''; 33 + description = "Common Lisp launcher script"; 34 34 license = lib.licenses.llgpl21 ; 35 35 maintainers = [lib.maintainers.raskin]; 36 36 platforms = lib.platforms.unix;
+1 -1
pkgs/development/tools/misc/luarocks/default.nix
··· 64 64 65 65 meta = with lib; { 66 66 inherit version; 67 - description = ''A package manager for Lua''; 67 + description = "A package manager for Lua"; 68 68 license = licenses.mit ; 69 69 maintainers = with maintainers; [raskin teto]; 70 70 platforms = platforms.linux ++ platforms.darwin;
+4 -4
pkgs/development/tools/misc/tet/default.nix
··· 11 11 12 12 buildInputs = [ ]; 13 13 14 - patchPhase = ''chmod +x configure''; 14 + patchPhase = "chmod +x configure"; 15 15 16 - configurePhase = ''./configure -t lite''; 16 + configurePhase = "./configure -t lite"; 17 17 18 - buildPhase = ''cd src; make; cd -''; 18 + buildPhase = "cd src; make; cd -"; 19 19 20 - installPhase = ''cd src; make install; cd -; cp -vr $PWD $out''; 20 + installPhase = "cd src; make install; cd -; cp -vr $PWD $out"; 21 21 22 22 meta = { 23 23 description = "The Test Environment Toolkit is used in test applications like The Open Group's UNIX Certification program and the Free Standards Group's LSB Certification program";
+1 -1
pkgs/development/tools/poetry2nix/poetry2nix/pep508.nix
··· 132 132 mVal = ''[a-zA-Z0-9\'"_\. ]+''; 133 133 mOp = "in|[!=<>]+"; 134 134 e = stripStr exprs.value; 135 - m = builtins.map stripStr (builtins.match ''^(${mVal}) *(${mOp}) *(${mVal})$'' e); 135 + m = builtins.map stripStr (builtins.match "^(${mVal}) *(${mOp}) *(${mVal})$" e); 136 136 m0 = processVar (builtins.elemAt m 0); 137 137 m2 = processVar (builtins.elemAt m 2); 138 138 in
+3 -3
pkgs/development/tools/setupcfg2nix/info.nix
··· 1 1 { 2 - pname = ''setupcfg2nix''; 3 - version = ''2.0.1''; 2 + pname = "setupcfg2nix"; 3 + version = "2.0.1"; 4 4 install_requires = [ 5 - ''setuptools'' 5 + "setuptools" 6 6 ]; 7 7 }
+1 -1
pkgs/development/tools/slimerjs/default.nix
··· 42 42 ''; 43 43 meta = { 44 44 inherit (s) version; 45 - description = ''Gecko-based programmatically-driven browser''; 45 + description = "Gecko-based programmatically-driven browser"; 46 46 license = lib.licenses.mpl20 ; 47 47 maintainers = [lib.maintainers.raskin]; 48 48 platforms = lib.platforms.linux;
+1 -1
pkgs/development/tools/yj/default.nix
··· 16 16 buildFlagsArray = [ "-ldflags=-s -w -X main.Version=${version}" ]; 17 17 18 18 meta = with lib; { 19 - description = ''Convert YAML <=> TOML <=> JSON <=> HCL''; 19 + description = "Convert YAML <=> TOML <=> JSON <=> HCL"; 20 20 license = licenses.asl20; 21 21 maintainers = with maintainers; [ Profpatsch ]; 22 22 homepage = "https://github.com/sclevine/yj";
+1 -1
pkgs/games/blobby/default.nix
··· 24 24 ''; 25 25 26 26 meta = with lib; { 27 - description = ''A blobby volleyball game''; 27 + description = "A blobby volleyball game"; 28 28 license = licenses.bsd3; 29 29 platforms = platforms.linux; 30 30 maintainers = with maintainers; [ raskin ];
+1 -1
pkgs/games/fairymax/default.nix
··· 24 24 ''; 25 25 meta = { 26 26 inherit version; 27 - description = ''A small chess engine supporting fairy pieces''; 27 + description = "A small chess engine supporting fairy pieces"; 28 28 longDescription = '' 29 29 A version of micro-Max that reads the piece description 30 30 from a file fmax.ini, so that arbitrary fairy pieces can be
+1 -1
pkgs/games/fish-fillets-ng/default.nix
··· 33 33 34 34 meta = with lib; { 35 35 inherit version; 36 - description = ''A puzzle game''; 36 + description = "A puzzle game"; 37 37 license = licenses.gpl2Plus; 38 38 maintainers = with maintainers; [ raskin ]; 39 39 platforms = platforms.linux;
+1 -1
pkgs/games/liquidwar/5.nix
··· 16 16 NIX_CFLAGS_COMPILE = [ "-lm" ]; 17 17 18 18 meta = with lib; { 19 - description = ''The classic version of a quick tactics game LiquidWar''; 19 + description = "The classic version of a quick tactics game LiquidWar"; 20 20 maintainers = [ maintainers.raskin ]; 21 21 license = licenses.gpl2Plus; 22 22 platforms = platforms.linux;
+1 -1
pkgs/games/moon-buggy/default.nix
··· 15 15 }; 16 16 17 17 meta = { 18 - description = ''A simple character graphics game where you drive some kind of car across the moon's surface''; 18 + description = "A simple character graphics game where you drive some kind of car across the moon's surface"; 19 19 license = lib.licenses.gpl2; 20 20 maintainers = [lib.maintainers.rybern]; 21 21 platforms = lib.platforms.linux;
+2 -2
pkgs/games/n2048/default.nix
··· 19 19 inherit (s) url sha256; 20 20 }; 21 21 makeFlags = [ 22 - ''DESTDIR=$(out)'' 22 + "DESTDIR=$(out)" 23 23 ]; 24 24 preInstall = '' 25 25 mkdir -p "$out"/{share/man,bin} 26 26 ''; 27 27 meta = { 28 28 inherit (s) version; 29 - description = ''Console implementation of 2048 game''; 29 + description = "Console implementation of 2048 game"; 30 30 license = lib.licenses.bsd2; 31 31 maintainers = [lib.maintainers.raskin]; 32 32 platforms = lib.platforms.linux;
+1 -1
pkgs/games/pingus/default.nix
··· 14 14 }; 15 15 16 16 meta = { 17 - description = ''A puzzle game with mechanics similar to Lemmings''; 17 + description = "A puzzle game with mechanics similar to Lemmings"; 18 18 platforms = lib.platforms.linux; 19 19 maintainers = [lib.maintainers.raskin]; 20 20 license = lib.licenses.gpl3;
+1 -1
pkgs/games/quantumminigolf/default.nix
··· 32 32 ''; 33 33 meta = { 34 34 inherit (s) version; 35 - description = ''Quantum mechanics-based minigolf-like game''; 35 + description = "Quantum mechanics-based minigolf-like game"; 36 36 license = lib.licenses.gpl2 ; 37 37 maintainers = [lib.maintainers.raskin]; 38 38 platforms = lib.platforms.linux;
+1 -1
pkgs/games/xboard/default.nix
··· 26 26 }; 27 27 meta = { 28 28 inherit (s) version; 29 - description = ''GUI for chess engines''; 29 + description = "GUI for chess engines"; 30 30 homepage = "https://www.gnu.org/software/xboard/"; 31 31 maintainers = [lib.maintainers.raskin]; 32 32 platforms = lib.platforms.unix;
+1 -1
pkgs/games/xbomb/default.nix
··· 10 10 buildInputs = [ libX11 libXaw ]; 11 11 12 12 makeFlags = [ 13 - "INSTDIR=${placeholder ''out''}" 13 + "INSTDIR=${placeholder "out"}" 14 14 ]; 15 15 16 16 meta = with lib; {
+1 -1
pkgs/games/xpilot/bloodspilot-client.nix
··· 16 16 NIX_LDFLAGS = "-lX11"; 17 17 18 18 meta = { 19 - description = ''A multiplayer space combat game (client part)''; 19 + description = "A multiplayer space combat game (client part)"; 20 20 homepage = "http://bloodspilot.sf.net/"; 21 21 license = lib.licenses.gpl2Plus ; 22 22 maintainers = [lib.maintainers.raskin];
+2 -2
pkgs/games/xskat/default.nix
··· 21 21 installTargets = [ "install" "install.man" ]; 22 22 23 23 meta = with lib; { 24 - description = ''Famous german card game''; 24 + description = "Famous german card game"; 25 25 platforms = platforms.unix; 26 26 license = licenses.free; 27 - longDescription = ''Play the german card game Skat against the AI or over IRC.''; 27 + longDescription = "Play the german card game Skat against the AI or over IRC."; 28 28 homepage = "http://www.xskat.de/"; 29 29 }; 30 30 }
+5 -5
pkgs/misc/drivers/xow/default.nix
··· 19 19 makeFlags = [ 20 20 "BUILD=RELEASE" 21 21 "VERSION=${version}" 22 - "BINDIR=${placeholder ''out''}/bin" 23 - "UDEVDIR=${placeholder ''out''}/lib/udev/rules.d" 24 - "MODLDIR=${placeholder ''out''}/lib/modules-load.d" 25 - "MODPDIR=${placeholder ''out''}/lib/modprobe.d" 26 - "SYSDDIR=${placeholder ''out''}/lib/systemd/system" 22 + "BINDIR=${placeholder "out"}/bin" 23 + "UDEVDIR=${placeholder "out"}/lib/udev/rules.d" 24 + "MODLDIR=${placeholder "out"}/lib/modules-load.d" 25 + "MODPDIR=${placeholder "out"}/lib/modprobe.d" 26 + "SYSDDIR=${placeholder "out"}/lib/systemd/system" 27 27 ]; 28 28 29 29 postUnpack = ''
+1 -1
pkgs/misc/emulators/termtekst/default.nix
··· 21 21 ''; 22 22 23 23 meta = with lib; { 24 - description = ''Console NOS Teletekst viewer in Python''; 24 + description = "Console NOS Teletekst viewer in Python"; 25 25 longDescription = '' 26 26 Small Python app using curses to display Dutch NOS Teletekst on 27 27 the Linux console. The original Teletekst font includes 2x6
+2 -2
pkgs/misc/vscode-extensions/vscodeExts2nix.nix
··· 18 18 19 19 for line in $(${vscode}/bin/code --list-extensions --show-versions \ 20 20 ${lib.optionalString (extensionsToIgnore != []) '' 21 - | grep -v -i '^\(${lib.concatMapStringsSep "\\|" (e : ''${e.publisher}.${e.name}'') extensionsToIgnore}\)' 21 + | grep -v -i '^\(${lib.concatMapStringsSep "\\|" (e : "${e.publisher}.${e.name}") extensionsToIgnore}\)' 22 22 ''} 23 23 ) ; do 24 24 [[ $line =~ ([^.]*)\.([^@]*)@(.*) ]] ··· 26 26 publisher=''${BASH_REMATCH[1]} 27 27 version=''${BASH_REMATCH[3]} 28 28 29 - extensions="${lib.concatMapStringsSep "." (e : ''${e.publisher}${e.name}@${e.sha256}'') extensions}" 29 + extensions="${lib.concatMapStringsSep "." (e : "${e.publisher}${e.name}@${e.sha256}") extensions}" 30 30 reCurrentExt=$publisher$name"@([^.]*)" 31 31 if [[ $extensions =~ $reCurrentExt ]]; then 32 32 sha256=''${BASH_REMATCH[1]}
+6 -6
pkgs/misc/vscode-extensions/vscodeWithConfiguration.nix
··· 18 18 mutExtsDrvs = extensionsFromVscodeMarketplace mutableExtensions; 19 19 mutableExtsPaths = lib.forEach mutExtsDrvs ( e: 20 20 { 21 - origin = ''${e}/share/vscode/extensions/${e.vscodeExtUniqueId}''; 22 - target = ''${vscodeExtsFolderName}/${e.vscodeExtUniqueId}-${(lib.findSingle (ext: ''${ext.publisher}.${ext.name}'' == e.vscodeExtUniqueId) "" "m" mutableExtensions ).version}''; 21 + origin = "${e}/share/vscode/extensions/${e.vscodeExtUniqueId}"; 22 + target = ''${vscodeExtsFolderName}/${e.vscodeExtUniqueId}-${(lib.findSingle (ext: "${ext.publisher}.${ext.name}" == e.vscodeExtUniqueId) "" "m" mutableExtensions ).version}''; 23 23 } 24 24 ); 25 25 26 26 #removed not defined extensions 27 27 rmExtensions = lib.optionalString (nixExtensions++mutableExtensions != []) '' 28 28 find ${vscodeExtsFolderName} -mindepth 1 -maxdepth 1 ${ 29 - lib.concatMapStringsSep " " (e : ''! -iname ${e.publisher}.${e.name} '') nixExtensions 29 + lib.concatMapStringsSep " " (e : "! -iname ${e.publisher}.${e.name} ") nixExtensions 30 30 + 31 - lib.concatMapStringsSep " " (e : ''! -iname ${e.publisher}.${e.name}-${e.version} '') mutableExtensions 31 + lib.concatMapStringsSep " " (e : "! -iname ${e.publisher}.${e.name}-${e.version} ") mutableExtensions 32 32 } -exec rm -rf {} \; 33 33 ''; 34 34 #copy mutable extension out of the nix store 35 35 cpExtensions = '' 36 - ${lib.concatMapStringsSep "\n" (e : ''ln -sfn ${e}/share/vscode/extensions/* ${vscodeExtsFolderName}/'') nixExtsDrvs} 36 + ${lib.concatMapStringsSep "\n" (e : "ln -sfn ${e}/share/vscode/extensions/* ${vscodeExtsFolderName}/") nixExtsDrvs} 37 37 ${lib.concatMapStringsSep "\n" (ePath : '' 38 38 if [ ! -d ${ePath.target} ]; then 39 39 cp -a ${ePath.origin} ${ePath.target} ··· 49 49 ${cpExtensions} 50 50 fi 51 51 ${vscode}/bin/code --extensions-dir "${vscodeExtsFolderName}" ${ 52 - lib.optionalString (user-data-dir != "") ''--user-data-dir ${user-data-dir }'' 52 + lib.optionalString (user-data-dir != "") "--user-data-dir ${user-data-dir}" 53 53 } "$@" 54 54 ''
+1 -1
pkgs/os-specific/darwin/trash/default.nix
··· 15 15 16 16 patches = [ ./trash.diff ]; 17 17 18 - buildPhase = ''make all docs''; 18 + buildPhase = "make all docs"; 19 19 20 20 installPhase = '' 21 21 mkdir -p $out/bin
+1 -1
pkgs/os-specific/linux/apparmor/default.nix
··· 237 237 name = "apparmor-kernel-patches-${apparmor-version}"; 238 238 src = apparmor-sources; 239 239 240 - phases = ''unpackPhase installPhase''; 240 + phases = "unpackPhase installPhase"; 241 241 242 242 installPhase = '' 243 243 mkdir "$out"
+1 -1
pkgs/os-specific/linux/atop/default.nix
··· 38 38 meta = with lib; { 39 39 platforms = platforms.linux; 40 40 maintainers = with maintainers; [ raskin ]; 41 - description = ''Console system performance monitor''; 41 + description = "Console system performance monitor"; 42 42 43 43 longDescription = '' 44 44 Atop is an ASCII full-screen performance monitor that is capable of reporting the activity of all processes (even if processes have finished during the interval), daily logging of system and process activity for long-term analysis, highlighting overloaded system resources by using colors, etc. At regular intervals, it shows system-level activity related to the CPU, memory, swap, disks and network layers, and for every active process it shows the CPU utilization, memory growth, disk utilization, priority, username, state, and exit code.
+3 -3
pkgs/os-specific/linux/eudev/default.nix
··· 49 49 enableParallelBuilding = true; 50 50 meta = { 51 51 inherit (s) version; 52 - description = ''An udev fork by Gentoo''; 52 + description = "An udev fork by Gentoo"; 53 53 license = lib.licenses.gpl2Plus ; 54 54 maintainers = [lib.maintainers.raskin]; 55 55 platforms = lib.platforms.linux; 56 - homepage = ''https://www.gentoo.org/proj/en/eudev/''; 57 - downloadPage = ''http://dev.gentoo.org/~blueness/eudev/''; 56 + homepage = "https://www.gentoo.org/proj/en/eudev/"; 57 + downloadPage = "http://dev.gentoo.org/~blueness/eudev/"; 58 58 updateWalker = true; 59 59 }; 60 60 }
+1 -1
pkgs/os-specific/linux/firejail/default.nix
··· 80 80 81 81 meta = { 82 82 inherit (s) version; 83 - description = ''Namespace-based sandboxing tool for Linux''; 83 + description = "Namespace-based sandboxing tool for Linux"; 84 84 license = lib.licenses.gpl2Plus ; 85 85 maintainers = [lib.maintainers.raskin]; 86 86 platforms = lib.platforms.linux;
+1 -1
pkgs/os-specific/linux/forktty/default.nix
··· 28 28 makeFlags = [ "prefix=$(out)" "manprefix=$(out)/share/" ]; 29 29 meta = { 30 30 inherit (s) version; 31 - description = ''Tool to detach from controlling TTY and attach to another''; 31 + description = "Tool to detach from controlling TTY and attach to another"; 32 32 license = lib.licenses.gpl2 ; 33 33 maintainers = [lib.maintainers.raskin]; 34 34 platforms = lib.platforms.linux;
+2 -2
pkgs/os-specific/linux/gfxtablet/default.nix
··· 15 15 sha256 = "1i2m98yypfa9phshlmvjlgw7axfisxmldzrvnbzm5spvv5s4kvvb"; 16 16 }; 17 17 18 - preBuild = ''cd driver-uinput''; 18 + preBuild = "cd driver-uinput"; 19 19 20 20 installPhase = '' 21 21 mkdir -p "$out/bin" ··· 25 25 ''; 26 26 27 27 meta = { 28 - description = ''Uinput driver for Android GfxTablet tablet-as-input-device app''; 28 + description = "Uinput driver for Android GfxTablet tablet-as-input-device app"; 29 29 license = lib.licenses.mit ; 30 30 maintainers = [lib.maintainers.raskin]; 31 31 platforms = lib.platforms.linux;
+1 -1
pkgs/os-specific/linux/gradm/default.nix
··· 39 39 mkdir -p "$out/etc/udev/rules.d" 40 40 ''; 41 41 42 - postInstall = ''rmdir $out/dev''; 42 + postInstall = "rmdir $out/dev"; 43 43 44 44 meta = with lib; { 45 45 description = "grsecurity RBAC administration and policy analysis utility";
+1 -1
pkgs/os-specific/linux/libaio/default.nix
··· 18 18 ''; 19 19 20 20 makeFlags = [ 21 - "prefix=${placeholder ''out''}" 21 + "prefix=${placeholder "out"}" 22 22 ]; 23 23 24 24 hardeningDisable = lib.optional (stdenv.isi686) "stackprotector";
+1 -2
pkgs/os-specific/linux/pcmciautils/default.nix
··· 27 27 " src/{startup.c,pcmcia-check-broken-cis.c} # fix-color */ 28 28 '' 29 29 + (if firmware == [] then ''sed -i "s,STARTUP = true,STARTUP = false," Makefile'' else "") 30 - + (if configOpts == null then "" else '' 31 - ln -sf ${configOpts} ./config/config.opts'') 30 + + (if configOpts == null then "" else "ln -sf ${configOpts} ./config/config.opts") 32 31 ; 33 32 34 33 makeFlags = [ "LEX=flex" ];
+1 -1
pkgs/servers/computing/storm/default.nix
··· 49 49 -e 's|java.library.path: .*|java.library.path: "${lib.concatStringsSep ":" extraLibraryPaths}"|' \ 50 50 -e 's|storm.log4j2.conf.dir: .*|storm.log4j2.conf.dir: "conf/log4j2"|' \ 51 51 defaults.yaml 52 - ${if confFile != "" then ''cat ${confFile} >> defaults.yaml'' else ""} 52 + ${if confFile != "" then "cat ${confFile} >> defaults.yaml" else ""} 53 53 mv defaults.yaml $out/conf; 54 54 55 55 # Link to extra jars
+1 -1
pkgs/servers/fingerd/bsd-fingerd/default.nix
··· 16 16 17 17 preBuild = "cd fingerd"; 18 18 19 - preInstall = '' mkdir -p $out/man/man8 $out/sbin ''; 19 + preInstall = "mkdir -p $out/man/man8 $out/sbin "; 20 20 21 21 meta = with lib; { 22 22 platforms = platforms.linux;
+1 -1
pkgs/servers/firebird/default.nix
··· 77 77 # dosen't work. Copying the files manually which can be found 78 78 # in ubuntu -dev -classic, -example packages: 79 79 # maybe some of those files can be removed again 80 - installPhase = ''cp -r gen/firebird $out''; 80 + installPhase = "cp -r gen/firebird $out"; 81 81 82 82 meta = { 83 83 description = "SQL relational database management system";
+2 -2
pkgs/servers/http/apache-modules/mod_ca/default.nix
··· 20 20 ]; 21 21 22 22 installFlags = [ 23 - "INCLUDEDIR=${placeholder ''out''}/include" 24 - "LIBEXECDIR=${placeholder ''out''}/modules" 23 + "INCLUDEDIR=${placeholder "out"}/include" 24 + "LIBEXECDIR=${placeholder "out"}/modules" 25 25 ]; 26 26 27 27 meta = with lib; {
+3 -3
pkgs/servers/hylafaxplus/default.nix
··· 83 83 openldap # optional 84 84 pam # optional 85 85 ]; 86 - postPatch = ''. ${postPatch}''; 86 + postPatch = ". ${postPatch}"; 87 87 dontAddPrefix = true; 88 - postInstall = ''. ${postInstall}''; 89 - postInstallCheck = ''. ${./post-install-check.sh}''; 88 + postInstall = ". ${postInstall}"; 89 + postInstallCheck = ". ${./post-install-check.sh}"; 90 90 meta = { 91 91 description = "enterprise-class system for sending and receiving facsimiles"; 92 92 downloadPage = "https://hylafax.sourceforge.io/download.php";
+9 -9
pkgs/servers/x11/xorg/overrides.nix
··· 364 364 outputs = [ "out" "dev" ]; # to get rid of xorgserver.dev; man is tiny 365 365 preBuild = "sed -e '/motion_history_proc/d; /history_size/d;' -i src/*.c"; 366 366 installFlags = [ 367 - "sdkdir=${placeholder ''out''}/include/xorg" 367 + "sdkdir=${placeholder "out"}/include/xorg" 368 368 ]; 369 369 }); 370 370 371 371 xf86inputmouse = super.xf86inputmouse.overrideAttrs (attrs: { 372 372 installFlags = [ 373 - "sdkdir=${placeholder ''out''}/include/xorg" 373 + "sdkdir=${placeholder "out"}/include/xorg" 374 374 ]; 375 375 }); 376 376 377 377 xf86inputjoystick = super.xf86inputjoystick.overrideAttrs (attrs: { 378 378 installFlags = [ 379 - "sdkdir=${placeholder ''out''}/include/xorg" 379 + "sdkdir=${placeholder "out"}/include/xorg" 380 380 ]; 381 381 }); 382 382 383 383 xf86inputlibinput = super.xf86inputlibinput.overrideAttrs (attrs: { 384 384 outputs = [ "out" "dev" ]; 385 385 installFlags = [ 386 - "sdkdir=${placeholder ''dev''}/include/xorg" 386 + "sdkdir=${placeholder "dev"}/include/xorg" 387 387 ]; 388 388 }); 389 389 390 390 xf86inputsynaptics = super.xf86inputsynaptics.overrideAttrs (attrs: { 391 391 outputs = [ "out" "dev" ]; # *.pc pulls xorgserver.dev 392 392 installFlags = [ 393 - "sdkdir=${placeholder ''out''}/include/xorg" 394 - "configdir=${placeholder ''out''}/share/X11/xorg.conf.d" 393 + "sdkdir=${placeholder "out"}/include/xorg" 394 + "configdir=${placeholder "out"}/share/X11/xorg.conf.d" 395 395 ]; 396 396 }); 397 397 398 398 xf86inputvmmouse = super.xf86inputvmmouse.overrideAttrs (attrs: { 399 399 configureFlags = [ 400 - "--sysconfdir=${placeholder ''out''}/etc" 401 - "--with-xorg-conf-dir=${placeholder ''out''}/share/X11/xorg.conf.d" 402 - "--with-udev-rules-dir=${placeholder ''out''}/lib/udev/rules.d" 400 + "--sysconfdir=${placeholder "out"}/etc" 401 + "--with-xorg-conf-dir=${placeholder "out"}/share/X11/xorg.conf.d" 402 + "--with-udev-rules-dir=${placeholder "out"}/lib/udev/rules.d" 403 403 ]; 404 404 405 405 meta = attrs.meta // {
+1 -1
pkgs/shells/mksh/default.nix
··· 14 14 15 15 dontConfigure = true; 16 16 17 - buildPhase = ''sh ./Build.sh -r''; 17 + buildPhase = "sh ./Build.sh -r"; 18 18 19 19 installPhase = '' 20 20 install -D -m 755 mksh $out/bin/mksh
+1 -1
pkgs/stdenv/freebsd/default.nix
··· 87 87 isClang = true; 88 88 }; 89 89 90 - preHook = ''export NIX_NO_SELF_RPATH=1''; 90 + preHook = "export NIX_NO_SELF_RPATH=1"; 91 91 }; 92 92 }) 93 93
+1 -1
pkgs/tools/X11/xmagnify/default.nix
··· 10 10 sha256 = "1ngnp5f5zl3v35vhbdyjpymy6mwrs0476fm5nd7dzkba7n841jdh"; 11 11 }; 12 12 13 - prePatch = ''substituteInPlace ./Makefile --replace /usr $out''; 13 + prePatch = "substituteInPlace ./Makefile --replace /usr $out"; 14 14 15 15 buildInputs = [ libX11 xorgproto ]; 16 16
+1 -1
pkgs/tools/X11/xprintidle-ng/default.nix
··· 35 35 36 36 meta = { 37 37 inherit version; 38 - description = ''A command-line tool to print idle time from libXss''; 38 + description = "A command-line tool to print idle time from libXss"; 39 39 homepage = "http://taktoa.me/xprintidle-ng/"; 40 40 license = lib.licenses.gpl2; 41 41 maintainers = [lib.maintainers.raskin];
+1 -1
pkgs/tools/X11/xwinmosaic/default.nix
··· 16 16 17 17 meta = { 18 18 inherit version; 19 - description = ''X window switcher drawing a colourful grid''; 19 + description = "X window switcher drawing a colourful grid"; 20 20 license = lib.licenses.bsd2 ; 21 21 maintainers = [lib.maintainers.raskin]; 22 22 platforms = lib.platforms.linux;
+1 -1
pkgs/tools/archivers/unzip/default.nix
··· 66 66 ''; 67 67 68 68 installFlags = [ 69 - "prefix=${placeholder ''out''}" 69 + "prefix=${placeholder "out"}" 70 70 ]; 71 71 72 72 setupHook = ./setup-hook.sh;
+1 -1
pkgs/tools/archivers/zip/default.nix
··· 21 21 makefile = "unix/Makefile"; 22 22 buildFlags = if stdenv.isCygwin then [ "cygwin" ] else [ "generic" ]; 23 23 installFlags = [ 24 - "prefix=${placeholder ''out''}" 24 + "prefix=${placeholder "out"}" 25 25 "INSTALL=cp" 26 26 ]; 27 27
+1 -2
pkgs/tools/audio/pa-applet/default.nix
··· 21 21 # work around a problem related to gtk3 updates 22 22 NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; 23 23 24 - postInstall = '' 25 - ''; 24 + postInstall = ""; 26 25 27 26 meta = with lib; { 28 27 description = "";
+1 -1
pkgs/tools/backup/mydumper/default.nix
··· 21 21 cmakeFlags = [ "-DMYSQL_INCLUDE_DIR=${getDev libmysqlclient}/include/mysql" ]; 22 22 23 23 meta = with lib; { 24 - description = ''High-perfomance MySQL backup tool''; 24 + description = "High-perfomance MySQL backup tool"; 25 25 homepage = "https://github.com/maxbube/mydumper"; 26 26 license = licenses.gpl3; 27 27 platforms = platforms.linux;
+1 -1
pkgs/tools/compression/advancecomp/default.nix
··· 36 36 ''; 37 37 38 38 meta = with lib; { 39 - description = ''A set of tools to optimize deflate-compressed files''; 39 + description = "A set of tools to optimize deflate-compressed files"; 40 40 license = licenses.gpl3 ; 41 41 maintainers = [ maintainers.raskin ]; 42 42 platforms = platforms.linux ++ platforms.darwin;
+1 -1
pkgs/tools/compression/pixz/default.nix
··· 29 29 30 30 meta = { 31 31 inherit version; 32 - description = ''A parallel compressor/decompressor for xz format''; 32 + description = "A parallel compressor/decompressor for xz format"; 33 33 license = lib.licenses.bsd2; 34 34 maintainers = [lib.maintainers.raskin]; 35 35 platforms = lib.platforms.unix;
+1 -1
pkgs/tools/filesystems/catcli/default.nix
··· 18 18 19 19 propagatedBuildInputs = [ docopt anytree ]; 20 20 21 - postPatch = '' patchShebangs . ''; 21 + postPatch = "patchShebangs . "; 22 22 23 23 meta = with lib; { 24 24 description = "The command line catalog tool for your offline data";
+1 -1
pkgs/tools/filesystems/glusterfs/default.nix
··· 90 90 ''; 91 91 92 92 configureFlags = [ 93 - ''--localstatedir=/var'' 93 + "--localstatedir=/var" 94 94 ]; 95 95 96 96 nativeBuildInputs = [ rpcsvc-proto ];
+2 -4
pkgs/tools/filesystems/irods/default.nix
··· 57 57 ''; 58 58 59 59 meta = common.meta // { 60 - longDescription = common.meta.longDescription + '' 61 - This package provides the servers and libraries.''; 60 + longDescription = common.meta.longDescription + "This package provides the servers and libraries."; 62 61 }; 63 62 }); 64 63 ··· 93 92 94 93 meta = common.meta // { 95 94 description = common.meta.description + " CLI clients"; 96 - longDescription = common.meta.longDescription + '' 97 - This package provides the CLI clients, called 'icommands'.''; 95 + longDescription = common.meta.longDescription + "This package provides the CLI clients, called 'icommands'."; 98 96 }; 99 97 }); 100 98 }
+1 -1
pkgs/tools/graphics/argyllcms/default.nix
··· 97 97 buildFlags = [ "all" ]; 98 98 99 99 makeFlags = [ 100 - "PREFIX=${placeholder ''out''}" 100 + "PREFIX=${placeholder "out"}" 101 101 ]; 102 102 103 103 # Install udev rules, but remove lines that set up the udev-acl
+1 -1
pkgs/tools/graphics/cfdg/src-info-for-default.nix
··· 1 1 { 2 2 downloadPage = "https://contextfreeart.org/mediawiki/index.php/Download_page"; 3 3 baseName = "cfdg"; 4 - sourceRegexp = ''.*[.]tgz''; 4 + sourceRegexp = ".*[.]tgz"; 5 5 versionExtractorSedScript = ''s/[^0-9]*([0-9.]*)[.]tgz/\1/''; 6 6 }
+1 -1
pkgs/tools/graphics/convchain/default.nix
··· 32 32 buildInputs = [mono]; 33 33 meta = { 34 34 inherit version; 35 - description = ''Bitmap generation from a single example with convolutions and MCMC''; 35 + description = "Bitmap generation from a single example with convolutions and MCMC"; 36 36 license = lib.licenses.mit; 37 37 maintainers = [lib.maintainers.raskin]; 38 38 platforms = lib.platforms.linux;
+1 -1
pkgs/tools/graphics/gmic-qt/default.nix
··· 51 51 assert lib.assertMsg (builtins.all (d: d != null) variants.${variant}.extraDeps or []) "gmic-qt variant “${variant}” is missing one of its dependencies."; 52 52 53 53 mkDerivation rec { 54 - pname = "gmic-qt${lib.optionalString (variant != "standalone") ''-${variant}''}"; 54 + pname = "gmic-qt${lib.optionalString (variant != "standalone") "-${variant}"}"; 55 55 version = "2.7.1"; 56 56 57 57 gmic-community = fetchFromGitHub {
+1 -1
pkgs/tools/graphics/qrcode/default.nix
··· 20 20 ''; 21 21 22 22 meta = with lib; { 23 - description = ''A small QR-code tool''; 23 + description = "A small QR-code tool"; 24 24 license = licenses.gpl3Plus; 25 25 maintainers = with maintainers; [ raskin ]; 26 26 platforms = with platforms; linux;
+1 -1
pkgs/tools/graphics/quirc/default.nix
··· 31 31 makeFlags = [ "PREFIX=$(out)" ]; 32 32 meta = { 33 33 inherit (s) version; 34 - description = ''A small QR code decoding library''; 34 + description = "A small QR code decoding library"; 35 35 license = lib.licenses.isc; 36 36 maintainers = [lib.maintainers.raskin]; 37 37 platforms = lib.platforms.linux;
+1 -1
pkgs/tools/graphics/syntex/default.nix
··· 26 26 buildInputs = [mono]; 27 27 meta = { 28 28 inherit version; 29 - description = ''Texture synthesis from examples''; 29 + description = "Texture synthesis from examples"; 30 30 license = lib.licenses.mit; 31 31 maintainers = [lib.maintainers.raskin]; 32 32 platforms = lib.platforms.linux;
+1 -1
pkgs/tools/graphics/wavefunctioncollapse/default.nix
··· 26 26 buildInputs = [mono]; 27 27 meta = { 28 28 inherit version; 29 - description = ''A generator of bitmaps that are locally similar to the input bitmap''; 29 + description = "A generator of bitmaps that are locally similar to the input bitmap"; 30 30 license = lib.licenses.mit; 31 31 maintainers = [lib.maintainers.raskin]; 32 32 platforms = lib.platforms.linux;
+1 -1
pkgs/tools/graphics/zxing/default.nix
··· 25 25 ''; 26 26 meta = { 27 27 inherit version; 28 - description = ''1D and 2D code reading library''; 28 + description = "1D and 2D code reading library"; 29 29 license = lib.licenses.asl20; 30 30 maintainers = [lib.maintainers.raskin]; 31 31 platforms = lib.platforms.linux;
+2 -2
pkgs/tools/inputmethods/ibus-engines/ibus-uniemoji/default.nix
··· 42 42 ]; 43 43 44 44 makeFlags = [ 45 - "PREFIX=${placeholder ''out''}" 46 - "SYSCONFDIR=${placeholder ''out''}/etc" 45 + "PREFIX=${placeholder "out"}" 46 + "SYSCONFDIR=${placeholder "out"}/etc" 47 47 "PYTHON=${python.interpreter}" 48 48 ]; 49 49
+2 -2
pkgs/tools/inputmethods/ibus/default.nix
··· 101 101 ]; 102 102 103 103 makeFlags = [ 104 - "test_execsdir=${placeholder ''installedTests''}/libexec/installed-tests/ibus" 105 - "test_sourcesdir=${placeholder ''installedTests''}/share/installed-tests/ibus" 104 + "test_execsdir=${placeholder "installedTests"}/libexec/installed-tests/ibus" 105 + "test_sourcesdir=${placeholder "installedTests"}/share/installed-tests/ibus" 106 106 ]; 107 107 108 108 nativeBuildInputs = [
+1 -1
pkgs/tools/misc/ccze/default.nix
··· 10 10 11 11 buildInputs = [ autoconf ncurses pcre ]; 12 12 13 - preConfigure = '' autoheader && autoconf ''; 13 + preConfigure = "autoheader && autoconf "; 14 14 15 15 meta = with lib; { 16 16 description = "Fast, modular log colorizer";
+1 -1
pkgs/tools/misc/debian-devscripts/default.nix
··· 58 58 ''; 59 59 60 60 meta = with lib; { 61 - description = ''Debian package maintenance scripts''; 61 + description = "Debian package maintenance scripts"; 62 62 license = licenses.free; # Mix of public domain, Artistic+GPL, GPL1+, GPL2+, GPL3+, and GPL2-only... TODO 63 63 maintainers = with maintainers; [raskin]; 64 64 platforms = with platforms; linux;
+1 -1
pkgs/tools/networking/badvpn/default.nix
··· 31 31 32 32 meta = { 33 33 inherit (s) version; 34 - description = ''A set of network-related (mostly VPN-related) tools''; 34 + description = "A set of network-related (mostly VPN-related) tools"; 35 35 license = lib.licenses.bsd3 ; 36 36 maintainers = [lib.maintainers.raskin]; 37 37 platforms = lib.platforms.linux;
+1 -1
pkgs/tools/networking/bgpdump/default.nix
··· 14 14 15 15 meta = { 16 16 homepage = "https://bitbucket.org/ripencc/bgpdump/"; 17 - description = ''Analyze dump files produced by Zebra/Quagga or MRT''; 17 + description = "Analyze dump files produced by Zebra/Quagga or MRT"; 18 18 license = lib.licenses.hpnd; 19 19 maintainers = with lib.maintainers; [ lewo ]; 20 20 platforms = with lib.platforms; linux;
+1 -1
pkgs/tools/networking/bsd-finger/default.nix
··· 16 16 17 17 preBuild = "cd finger"; 18 18 19 - preInstall = '' mkdir -p $out/man/man1 $out/bin ''; 19 + preInstall = "mkdir -p $out/man/man1 $out/bin "; 20 20 21 21 meta = with lib; { 22 22 platforms = platforms.linux;
+1 -1
pkgs/tools/networking/jnettop/default.nix
··· 19 19 }) 20 20 ]; 21 21 22 - preConfigure = '' autoconf ''; 22 + preConfigure = "autoconf "; 23 23 24 24 meta = { 25 25 description = "Network traffic visualizer";
+1 -1
pkgs/tools/networking/mailsend/default.nix
··· 31 31 ]; 32 32 meta = { 33 33 inherit (s) version; 34 - description = ''CLI email sending tool''; 34 + description = "CLI email sending tool"; 35 35 license = lib.licenses.bsd3 ; 36 36 maintainers = [lib.maintainers.raskin]; 37 37 platforms = lib.platforms.linux;
+1 -1
pkgs/tools/networking/persepolis/default.nix
··· 47 47 # feed args to wrapPythonApp 48 48 makeWrapperArgs = [ 49 49 "--prefix PATH : ${lib.makeBinPath [aria libnotify ]}" 50 - ''''${qtWrapperArgs[@]}'' 50 + "\${qtWrapperArgs[@]}" 51 51 ]; 52 52 53 53 propagatedBuildInputs = [
+1 -1
pkgs/tools/package-management/disnix/DisnixWebService/default.nix
··· 7 7 sha256 = "0m451msd127ay09yb8rbflg68szm8s4hh65j99f7s3mz375vc114"; 8 8 }; 9 9 buildInputs = [ apacheAnt jdk ]; 10 - PREFIX = ''''${env.out}''; 10 + PREFIX = "\${env.out}"; 11 11 AXIS2_LIB = "${axis2}/lib"; 12 12 AXIS2_WEBAPP = "${axis2}/webapps/axis2"; 13 13 DBUS_JAVA_LIB = "${dbus_java}/share/java";
+1 -1
pkgs/tools/package-management/nix/default.nix
··· 126 126 ] 127 127 ++ lib.optional ( 128 128 stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform ? nix && stdenv.hostPlatform.nix ? system 129 - ) ''--with-system=${stdenv.hostPlatform.nix.system}'' 129 + ) "--with-system=${stdenv.hostPlatform.nix.system}" 130 130 # RISC-V support in progress https://github.com/seccomp/libseccomp/pull/50 131 131 ++ lib.optional (!withLibseccomp) "--disable-seccomp-sandboxing"; 132 132
+1 -1
pkgs/tools/security/gencfsm/default.nix
··· 24 24 25 25 configureFlags = [ "--disable-appindicator" ]; 26 26 27 - preFixup = ''gappsWrapperArgs+=(--prefix PATH : ${encfs}/bin)''; 27 + preFixup = "gappsWrapperArgs+=(--prefix PATH : ${encfs}/bin)"; 28 28 29 29 enableParallelBuilding = true; 30 30
+1 -1
pkgs/tools/security/pbis/default.nix
··· 35 35 fi 36 36 NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -isystem ${lib.getDev libxml2}/include/libxml2 -Wno-error=array-bounds -Wno-error=pointer-sign -Wno-error=deprecated-declarations -Wno-error=unused-variable" 37 37 ''; 38 - configureScript = ''../configure''; 38 + configureScript = "../configure"; 39 39 configureFlags = [ 40 40 "CFLAGS=-O" 41 41 "--docdir=${placeholder "prefix"}/share/doc"
+1 -1
pkgs/tools/security/tcpcrypt/default.nix
··· 16 16 sha256 = "0a015rlyvagz714pgwr85f8gjq1fkc0il7d7l39qcgxrsp15b96w"; 17 17 }; 18 18 19 - postUnpack = ''mkdir -vp $sourceRoot/m4''; 19 + postUnpack = "mkdir -vp $sourceRoot/m4"; 20 20 21 21 outputs = [ "bin" "dev" "out" ]; 22 22 nativeBuildInputs = [ autoreconfHook ];
+1 -1
pkgs/tools/system/at/default.nix
··· 51 51 ''; 52 52 53 53 meta = { 54 - description = ''The classical Unix `at' job scheduling command''; 54 + description = "The classical Unix `at' job scheduling command"; 55 55 license = lib.licenses.gpl2Plus; 56 56 homepage = "https://packages.qa.debian.org/at"; 57 57 platforms = lib.platforms.linux;
+1 -1
pkgs/tools/system/ipmitool/default.nix
··· 41 41 dontDisableStatic = static; 42 42 43 43 meta = with lib; { 44 - description = ''Command-line interface to IPMI-enabled devices''; 44 + description = "Command-line interface to IPMI-enabled devices"; 45 45 license = licenses.bsd3; 46 46 homepage = "https://sourceforge.net/projects/ipmitool/"; 47 47 platforms = platforms.unix;
+2 -2
pkgs/tools/system/socklog/default.nix
··· 30 30 echo "$NIX_CC/bin/cc -s" >src/conf-ld 31 31 ''; 32 32 33 - buildPhase = ''package/compile''; 33 + buildPhase = "package/compile"; 34 34 35 35 installPhase = '' 36 36 mkdir -p $out/bin ··· 45 45 mv doc/*.html $doc/share/doc/socklog/html/ 46 46 ''; 47 47 48 - checkPhase = ''package/check''; 48 + checkPhase = "package/check"; 49 49 50 50 doCheck = true; 51 51
+1 -1
pkgs/tools/system/throttled/default.nix
··· 31 31 runHook postInstall 32 32 ''; 33 33 34 - postFixup = ''wrapPythonPrograms''; 34 + postFixup = "wrapPythonPrograms"; 35 35 36 36 meta = with lib; { 37 37 description = "Fix for Intel CPU throttling issues";
+1 -1
pkgs/tools/video/rtmpdump/default.nix
··· 28 28 }) 29 29 ]; 30 30 31 - makeFlags = [ ''prefix=$(out)'' ] 31 + makeFlags = [ "prefix=$(out)" ] 32 32 ++ optional gnutlsSupport "CRYPTO=GNUTLS" 33 33 ++ optional opensslSupport "CRYPTO=OPENSSL" 34 34 ++ optional stdenv.isDarwin "SYS=darwin"
+1 -1
pkgs/top-level/all-packages.nix
··· 23876 23876 23877 23877 octoprint = callPackage ../applications/misc/octoprint { }; 23878 23878 23879 - octoprint-plugins = throw ''octoprint-plugins are now part of the octoprint.python.pkgs package set.''; 23879 + octoprint-plugins = throw "octoprint-plugins are now part of the octoprint.python.pkgs package set."; 23880 23880 23881 23881 ocrad = callPackage ../applications/graphics/ocrad { }; 23882 23882
+2 -2
pkgs/top-level/perl-packages.nix
··· 17986 17986 sha256 = "0wfdixpm3p94mnng474l0nh9mjiy8q8hbrbh2af4vwn2hmazr91f"; 17987 17987 }; 17988 17988 buildInputs = [ TestDeep TestDifferences TestLongString TestWarn ]; 17989 - preBuild = ''ls''; 17989 + preBuild = "ls"; 17990 17990 meta = { 17991 17991 homepage = "https://github.com/Sereal/Sereal"; 17992 17992 description = "Fast, compact, powerful binary deserialization"; ··· 22930 22930 }; 22931 22931 buildInputs = [ pkgs.xorg.libXext pkgs.xorg.libXScrnSaver pkgs.xorg.libX11 ]; 22932 22932 propagatedBuildInputs = [ InlineC ]; 22933 - patchPhase = ''sed -ie 's,-L/usr/X11R6/lib/,-L${pkgs.xorg.libX11.out}/lib/ -L${pkgs.xorg.libXext.out}/lib/ -L${pkgs.xorg.libXScrnSaver}/lib/,' IdleTime.pm''; 22933 + patchPhase = "sed -ie 's,-L/usr/X11R6/lib/,-L${pkgs.xorg.libX11.out}/lib/ -L${pkgs.xorg.libXext.out}/lib/ -L${pkgs.xorg.libXScrnSaver}/lib/,' IdleTime.pm"; 22934 22934 meta = { 22935 22935 description = "Get the idle time of X11"; 22936 22936 };