Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
394e69c1 8066e45f

+1303 -666
+7
lib/licenses.nix
··· 650 free = true; 651 }; 652 653 issl = { 654 fullName = "Intel Simplified Software License"; 655 url = "https://software.intel.com/en-us/license/intel-simplified-software-license";
··· 650 free = true; 651 }; 652 653 + fairsource09 = { 654 + fullName = "Fair Source License, version 0.9"; 655 + url = "https://fair.io/v0.9.txt"; 656 + free = false; 657 + redistributable = true; 658 + }; 659 + 660 issl = { 661 fullName = "Intel Simplified Software License"; 662 url = "https://software.intel.com/en-us/license/intel-simplified-software-license";
+7
maintainers/maintainer-list.nix
··· 16008 githubId = 1755789; 16009 name = "Robert Irelan"; 16010 }; 16011 tennox = { 16012 email = "tennox+nix@txlab.io"; 16013 github = "tennox";
··· 16008 githubId = 1755789; 16009 name = "Robert Irelan"; 16010 }; 16011 + tengkuizdihar = { 16012 + name = "Tengku Izdihar"; 16013 + email = "tengkuizdihar@gmail.com"; 16014 + matrix = "@tengkuizdihar:matrix.org"; 16015 + github = "tengkuizdihar"; 16016 + githubId = 22078730; 16017 + }; 16018 tennox = { 16019 email = "tennox+nix@txlab.io"; 16020 github = "tennox";
+2
nixos/doc/manual/release-notes/rl-2311.section.md
··· 82 83 - DocBook option documentation is no longer supported, all module documentation now uses markdown. 84 85 - `services.nginx` gained a `defaultListen` option at server-level with support for PROXY protocol listeners, also `proxyProtocol` is now exposed in `services.nginx.virtualHosts.<name>.listen` option. It is now possible to run PROXY listeners and non-PROXY listeners at a server-level, see [#213510](https://github.com/NixOS/nixpkgs/pull/213510/) for more details. 86 87 - `services.prometheus.exporters` has a new exporter to monitor electrical power consumption based on PowercapRAPL sensor called [Scaphandre](https://github.com/hubblo-org/scaphandre), see [#239803](https://github.com/NixOS/nixpkgs/pull/239803) for more details.
··· 82 83 - DocBook option documentation is no longer supported, all module documentation now uses markdown. 84 85 + - `services.fail2ban.jails` can now be configured with attribute sets defining settings and filters instead of lines. The stringed options `daemonConfig` and `extraSettings` have respectively been replaced by `daemonSettings` and `jails.DEFAULT.settings` which use attribute sets. 86 + 87 - `services.nginx` gained a `defaultListen` option at server-level with support for PROXY protocol listeners, also `proxyProtocol` is now exposed in `services.nginx.virtualHosts.<name>.listen` option. It is now possible to run PROXY listeners and non-PROXY listeners at a server-level, see [#213510](https://github.com/NixOS/nixpkgs/pull/213510/) for more details. 88 89 - `services.prometheus.exporters` has a new exporter to monitor electrical power consumption based on PowercapRAPL sensor called [Scaphandre](https://github.com/hubblo-org/scaphandre), see [#239803](https://github.com/NixOS/nixpkgs/pull/239803) for more details.
+133 -92
nixos/modules/services/security/fail2ban.nix
··· 3 with lib; 4 5 let 6 - 7 cfg = config.services.fail2ban; 8 9 - fail2banConf = pkgs.writeText "fail2ban.local" cfg.daemonConfig; 10 11 - jailConf = pkgs.writeText "jail.local" '' 12 - [INCLUDES] 13 14 - before = paths-nixos.conf 15 16 - ${concatStringsSep "\n" (attrValues (flip mapAttrs cfg.jails (name: def: 17 - optionalString (def != "") 18 - '' 19 - [${name}] 20 - ${def} 21 - '')))} 22 - ''; 23 24 pathsConf = pkgs.writeText "paths-nixos.conf" '' 25 # NixOS ··· 32 33 [DEFAULT] 34 ''; 35 - 36 in 37 38 { 39 40 ###### interface 41 42 options = { 43 - 44 services.fail2ban = { 45 enable = mkOption { 46 default = false; ··· 69 }; 70 71 extraPackages = mkOption { 72 - default = []; 73 type = types.listOf types.package; 74 example = lib.literalExpression "[ pkgs.ipset ]"; 75 description = lib.mdDoc '' ··· 180 example = true; 181 description = lib.mdDoc '' 182 "bantime.overalljails" (if true) specifies the search of IP in the database will be executed 183 - cross over all jails, if false (default), only current jail of the ban IP will be searched 184 ''; 185 }; 186 ··· 194 ''; 195 }; 196 197 - daemonConfig = mkOption { 198 - default = '' 199 - [Definition] 200 - logtarget = SYSLOG 201 - socket = /run/fail2ban/fail2ban.sock 202 - pidfile = /run/fail2ban/fail2ban.pid 203 - dbfile = /var/lib/fail2ban/fail2ban.sqlite3 204 - ''; 205 - type = types.lines; 206 - description = lib.mdDoc '' 207 - The contents of Fail2ban's main configuration file. It's 208 - generally not necessary to change it. 209 - ''; 210 - }; 211 212 - extraSettings = mkOption { 213 - type = with types; attrsOf (oneOf [ bool ints.positive str ]); 214 - default = {}; 215 - description = lib.mdDoc '' 216 - Extra default configuration for all jails (i.e. `[DEFAULT]`). See 217 - <https://github.com/fail2ban/fail2ban/blob/master/config/jail.conf> for an overview. 218 - ''; 219 - example = literalExpression '' 220 { 221 - findtime = "15m"; 222 } 223 ''; 224 }; 225 226 jails = mkOption { 227 default = { }; 228 example = literalExpression '' 229 - { apache-nohome-iptables = ''' 230 - # Block an IP address if it accesses a non-existent 231 - # home directory more than 5 times in 10 minutes, 232 - # since that indicates that it's scanning. 233 - filter = apache-nohome 234 - action = iptables-multiport[name=HTTP, port="http,https"] 235 - logpath = /var/log/httpd/error_log* 236 - backend = auto 237 - findtime = 600 238 - bantime = 600 239 - maxretry = 5 240 - '''; 241 - dovecot = ''' 242 - # block IPs which failed to log-in 243 - # aggressive mode add blocking for aborted connections 244 - enabled = true 245 - filter = dovecot[mode=aggressive] 246 - maxretry = 3 247 - '''; 248 - } 249 ''; 250 - type = types.attrsOf types.lines; 251 description = lib.mdDoc '' 252 The configuration of each Fail2ban “jail”. A jail 253 consists of an action (such as blocking a port using ··· 278 config = mkIf cfg.enable { 279 assertions = [ 280 { 281 - assertion = (cfg.bantime-increment.formula == null || cfg.bantime-increment.multipliers == null); 282 message = '' 283 Options `services.fail2ban.bantime-increment.formula` and `services.fail2ban.bantime-increment.multipliers` cannot be both specified. 284 ''; ··· 300 "fail2ban/paths-nixos.conf".source = pathsConf; 301 "fail2ban/action.d".source = "${cfg.package}/etc/fail2ban/action.d/*.conf"; 302 "fail2ban/filter.d".source = "${cfg.package}/etc/fail2ban/filter.d/*.conf"; 303 - }; 304 305 systemd.packages = [ cfg.package ]; 306 systemd.services.fail2ban = { ··· 335 }; 336 }; 337 338 # Add some reasonable default jails. The special "DEFAULT" jail 339 # sets default values for all other jails. 340 - services.fail2ban.jails.DEFAULT = '' 341 - # Bantime increment options 342 - bantime.increment = ${boolToString cfg.bantime-increment.enable} 343 - ${optionalString (cfg.bantime-increment.rndtime != null) "bantime.rndtime = ${cfg.bantime-increment.rndtime}"} 344 - ${optionalString (cfg.bantime-increment.maxtime != null) "bantime.maxtime = ${cfg.bantime-increment.maxtime}"} 345 - ${optionalString (cfg.bantime-increment.factor != null) "bantime.factor = ${cfg.bantime-increment.factor}"} 346 - ${optionalString (cfg.bantime-increment.formula != null) "bantime.formula = ${cfg.bantime-increment.formula}"} 347 - ${optionalString (cfg.bantime-increment.multipliers != null) "bantime.multipliers = ${cfg.bantime-increment.multipliers}"} 348 - ${optionalString (cfg.bantime-increment.overalljails != null) "bantime.overalljails = ${boolToString cfg.bantime-increment.overalljails}"} 349 - # Miscellaneous options 350 - ignoreip = 127.0.0.1/8 ${optionalString config.networking.enableIPv6 "::1"} ${concatStringsSep " " cfg.ignoreIP} 351 - ${optionalString (cfg.bantime != null) '' 352 - bantime = ${cfg.bantime} 353 - ''} 354 - maxretry = ${toString cfg.maxretry} 355 - backend = systemd 356 - # Actions 357 - banaction = ${cfg.banaction} 358 - banaction_allports = ${cfg.banaction-allports} 359 - ${optionalString (cfg.extraSettings != {}) '' 360 - # Extra settings 361 - ${generators.toKeyValue {} cfg.extraSettings} 362 - ''} 363 - ''; 364 - # Block SSH if there are too many failing connection attempts. 365 # Benefits from verbose sshd logging to observe failed login attempts, 366 # so we set that here unless the user overrode it. 367 - services.openssh.settings.LogLevel = lib.mkDefault "VERBOSE"; 368 - services.fail2ban.jails.sshd = mkDefault '' 369 - enabled = true 370 - port = ${concatMapStringsSep "," (p: toString p) config.services.openssh.ports} 371 - ''; 372 }; 373 }
··· 3 with lib; 4 5 let 6 cfg = config.services.fail2ban; 7 8 + settingsFormat = pkgs.formats.keyValue { }; 9 10 + configFormat = pkgs.formats.ini { 11 + mkKeyValue = generators.mkKeyValueDefault { } " = "; 12 + }; 13 14 + mkJailConfig = name: attrs: 15 + optionalAttrs (name != "DEFAULT") { inherit (attrs) enabled; } // 16 + optionalAttrs (attrs.filter != null) { filter = if (builtins.isString filter) then filter else name; } // 17 + attrs.settings; 18 + 19 + mkFilter = name: attrs: nameValuePair "fail2ban/filter.d/${name}.conf" { 20 + source = configFormat.generate "filter.d/${name}.conf" attrs.filter; 21 + }; 22 23 + fail2banConf = configFormat.generate "fail2ban.local" cfg.daemonSettings; 24 + 25 + strJails = filterAttrs (_: builtins.isString) cfg.jails; 26 + attrsJails = filterAttrs (_: builtins.isAttrs) cfg.jails; 27 + 28 + jailConf = 29 + let 30 + configFile = configFormat.generate "jail.local" ( 31 + { INCLUDES.before = "paths-nixos.conf"; } // (mapAttrs mkJailConfig attrsJails) 32 + ); 33 + extraConfig = concatStringsSep "\n" (attrValues (mapAttrs 34 + (name: def: 35 + optionalString (def != "") 36 + '' 37 + [${name}] 38 + ${def} 39 + '') 40 + strJails)); 41 + 42 + in 43 + pkgs.concatText "jail.local" [ configFile (pkgs.writeText "extra-jail.local" extraConfig) ]; 44 45 pathsConf = pkgs.writeText "paths-nixos.conf" '' 46 # NixOS ··· 53 54 [DEFAULT] 55 ''; 56 in 57 58 { 59 60 + imports = [ 61 + (mkRemovedOptionModule [ "services" "fail2ban" "daemonConfig" ] "The daemon is now configured through the attribute set `services.fail2ban.daemonSettings`.") 62 + (mkRemovedOptionModule [ "services" "fail2ban" "extraSettings" ] "The extra default configuration can now be set using `services.fail2ban.jails.DEFAULT.settings`.") 63 + ]; 64 + 65 ###### interface 66 67 options = { 68 services.fail2ban = { 69 enable = mkOption { 70 default = false; ··· 93 }; 94 95 extraPackages = mkOption { 96 + default = [ ]; 97 type = types.listOf types.package; 98 example = lib.literalExpression "[ pkgs.ipset ]"; 99 description = lib.mdDoc '' ··· 204 example = true; 205 description = lib.mdDoc '' 206 "bantime.overalljails" (if true) specifies the search of IP in the database will be executed 207 + cross over all jails, if false (default), only current jail of the ban IP will be searched. 208 ''; 209 }; 210 ··· 218 ''; 219 }; 220 221 + daemonSettings = mkOption { 222 + inherit (configFormat) type; 223 224 + defaultText = literalExpression '' 225 { 226 + Definition = { 227 + logtarget = "SYSLOG"; 228 + socket = "/run/fail2ban/fail2ban.sock"; 229 + pidfile = "/run/fail2ban/fail2ban.pid"; 230 + dbfile = "/var/lib/fail2ban/fail2ban.sqlite3"; 231 + }; 232 } 233 + ''; 234 + description = lib.mdDoc '' 235 + The contents of Fail2ban's main configuration file. 236 + It's generally not necessary to change it. 237 ''; 238 }; 239 240 jails = mkOption { 241 default = { }; 242 example = literalExpression '' 243 + { 244 + apache-nohome-iptables = { 245 + settings = { 246 + # Block an IP address if it accesses a non-existent 247 + # home directory more than 5 times in 10 minutes, 248 + # since that indicates that it's scanning. 249 + filter = "apache-nohome"; 250 + action = '''iptables-multiport[name=HTTP, port="http,https"]'''; 251 + logpath = "/var/log/httpd/error_log*"; 252 + backend = "auto"; 253 + findtime = 600; 254 + bantime = 600; 255 + maxretry = 5; 256 + }; 257 + }; 258 + dovecot = { 259 + settings = { 260 + # block IPs which failed to log-in 261 + # aggressive mode add blocking for aborted connections 262 + filter = "dovecot[mode=aggressive]"; 263 + maxretry = 3; 264 + }; 265 + }; 266 + }; 267 ''; 268 + type = with types; attrsOf (either lines (submodule ({ name, ... }: { 269 + options = { 270 + enabled = mkEnableOption "this jail." // { 271 + default = true; 272 + readOnly = name == "DEFAULT"; 273 + }; 274 + 275 + filter = mkOption { 276 + type = nullOr (either str configFormat.type); 277 + 278 + default = null; 279 + description = lib.mdDoc "Content of the filter used for this jail."; 280 + }; 281 + 282 + settings = mkOption { 283 + inherit (settingsFormat) type; 284 + 285 + default = { }; 286 + description = lib.mdDoc "Additional settings for this jail."; 287 + }; 288 + }; 289 + }))); 290 description = lib.mdDoc '' 291 The configuration of each Fail2ban “jail”. A jail 292 consists of an action (such as blocking a port using ··· 317 config = mkIf cfg.enable { 318 assertions = [ 319 { 320 + assertion = cfg.bantime-increment.formula == null || cfg.bantime-increment.multipliers == null; 321 message = '' 322 Options `services.fail2ban.bantime-increment.formula` and `services.fail2ban.bantime-increment.multipliers` cannot be both specified. 323 ''; ··· 339 "fail2ban/paths-nixos.conf".source = pathsConf; 340 "fail2ban/action.d".source = "${cfg.package}/etc/fail2ban/action.d/*.conf"; 341 "fail2ban/filter.d".source = "${cfg.package}/etc/fail2ban/filter.d/*.conf"; 342 + } // (mapAttrs' mkFilter (filterAttrs (_: v: v.filter != null && !builtins.isString v.filter) attrsJails)); 343 344 systemd.packages = [ cfg.package ]; 345 systemd.services.fail2ban = { ··· 374 }; 375 }; 376 377 + # Defaults for the daemon settings 378 + services.fail2ban.daemonSettings.Definition = { 379 + logtarget = mkDefault "SYSLOG"; 380 + socket = mkDefault "/run/fail2ban/fail2ban.sock"; 381 + pidfile = mkDefault "/run/fail2ban/fail2ban.pid"; 382 + dbfile = mkDefault "/var/lib/fail2ban/fail2ban.sqlite3"; 383 + }; 384 + 385 # Add some reasonable default jails. The special "DEFAULT" jail 386 # sets default values for all other jails. 387 + services.fail2ban.jails = mkMerge [ 388 + { 389 + DEFAULT.settings = (optionalAttrs cfg.bantime-increment.enable 390 + ({ "bantime.increment" = cfg.bantime-increment.enable; } // (mapAttrs' 391 + (name: nameValuePair "bantime.${name}") 392 + (filterAttrs (n: v: v != null && n != "enable") cfg.bantime-increment)) 393 + ) 394 + ) // { 395 + # Miscellaneous options 396 + inherit (cfg) banaction maxretry; 397 + ignoreip = ''127.0.0.1/8 ${optionalString config.networking.enableIPv6 "::1"} ${concatStringsSep " " cfg.ignoreIP}''; 398 + backend = "systemd"; 399 + # Actions 400 + banaction_allports = cfg.banaction-allports; 401 + }; 402 + } 403 + 404 + # Block SSH if there are too many failing connection attempts. 405 + (mkIf config.services.openssh.enable { 406 + sshd.settings.port = mkDefault (concatMapStringsSep "," builtins.toString config.services.openssh.ports); 407 + }) 408 + ]; 409 + 410 # Benefits from verbose sshd logging to observe failed login attempts, 411 # so we set that here unless the user overrode it. 412 + services.openssh.settings.LogLevel = mkDefault "VERBOSE"; 413 }; 414 }
+1
nixos/tests/all-tests.nix
··· 256 etebase-server = handleTest ./etebase-server.nix {}; 257 etesync-dav = handleTest ./etesync-dav.nix {}; 258 evcc = handleTest ./evcc.nix {}; 259 fakeroute = handleTest ./fakeroute.nix {}; 260 fancontrol = handleTest ./fancontrol.nix {}; 261 fcitx5 = handleTest ./fcitx5 {};
··· 256 etebase-server = handleTest ./etebase-server.nix {}; 257 etesync-dav = handleTest ./etesync-dav.nix {}; 258 evcc = handleTest ./evcc.nix {}; 259 + fail2ban = handleTest ./fail2ban.nix { }; 260 fakeroute = handleTest ./fakeroute.nix {}; 261 fancontrol = handleTest ./fancontrol.nix {}; 262 fcitx5 = handleTest ./fcitx5 {};
+18
nixos/tests/fail2ban.nix
···
··· 1 + import ./make-test-python.nix ({ pkgs, ... }: { 2 + name = "fail2ban"; 3 + 4 + nodes.machine = _: { 5 + services.fail2ban = { 6 + enable = true; 7 + bantime-increment.enable = true; 8 + }; 9 + 10 + services.openssh.enable = true; 11 + }; 12 + 13 + testScript = '' 14 + machine.wait_for_unit("multi-user.target") 15 + 16 + machine.wait_for_unit("fail2ban") 17 + ''; 18 + })
+46 -32
pkgs/applications/misc/prusa-slicer/default.nix
··· 1 { stdenv 2 , lib 3 , binutils 4 , fetchFromGitHub 5 , cmake ··· 21 , ilmbase 22 , libpng 23 , mpfr 24 , nlopt 25 , opencascade-occt 26 , openvdb 27 , pcre 28 , qhull 29 - , tbb 30 - , wxGTK31 31 , xorg 32 , fetchpatch 33 , withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd, systemd 34 }: 35 let 36 - wxGTK-prusa = wxGTK31.overrideAttrs (old: rec { 37 pname = "wxwidgets-prusa3d-patched"; 38 - version = "3.1.4"; 39 src = fetchFromGitHub { 40 owner = "prusa3d"; 41 repo = "wxWidgets"; 42 - rev = "489f6118256853cf5b299d595868641938566cdb"; 43 - hash = "sha256-xGL5I2+bPjmZGSTYe1L7VAmvLHbwd934o/cxg9baEvQ="; 44 fetchSubmodules = true; 45 }; 46 }); 47 in 48 stdenv.mkDerivation rec { 49 pname = "prusa-slicer"; 50 - version = "2.5.2"; 51 52 nativeBuildInputs = [ 53 cmake ··· 72 ilmbase 73 libpng 74 mpfr 75 nlopt 76 opencascade-occt 77 - openvdb 78 pcre 79 - tbb 80 wxGTK-prusa 81 xorg.libX11 82 ] ++ lib.optionals withSystemd [ 83 systemd 84 ] ++ nativeCheckInputs; 85 - 86 - patches = [ 87 - # Fix detection of TBB, see https://github.com/prusa3d/PrusaSlicer/issues/6355 88 - (fetchpatch { 89 - url = "https://github.com/prusa3d/PrusaSlicer/commit/76f4d6fa98bda633694b30a6e16d58665a634680.patch"; 90 - sha256 = "1r806ycp704ckwzgrw1940hh1l6fpz0k1ww3p37jdk6mygv53nv6"; 91 - }) 92 - # Fix compile error with boost 1.79. See https://github.com/prusa3d/PrusaSlicer/issues/8238 93 - # Can be removed with the next version update 94 - (fetchpatch { 95 - url = "https://github.com/prusa3d/PrusaSlicer/commit/408e56f0390f20aaf793e0aa0c70c4d9544401d4.patch"; 96 - sha256 = "sha256-vzEPjLE3Yy5szawPn2Yp3i7MceWewpdnLUPVu9+H3W8="; 97 - }) 98 - (fetchpatch { 99 - url = "https://github.com/prusa3d/PrusaSlicer/commit/926ae0471800abd1e5335e251a5934570eb8f6ff.patch"; 100 - sha256 = "sha256-tAEgubeGGKFWY7r7p/6pmI2HXUGKi2TM1X5ILVZVT20="; 101 - }) 102 - ]; 103 104 doCheck = true; 105 nativeCheckInputs = [ gtest ]; ··· 125 # now seems to be integrated into the main lib. 126 sed -i 's|nlopt_cxx|nlopt|g' cmake/modules/FindNLopt.cmake 127 128 - # Disable test_voronoi.cpp as the assembler hangs during build, 129 - # likely due to commit e682dd84cff5d2420fcc0a40508557477f6cc9d3 130 - # See issue #185808 for details. 131 - sed -i 's|test_voronoi.cpp||g' tests/libslic3r/CMakeLists.txt 132 133 # prusa-slicer expects the OCCTWrapper shared library in the same folder as 134 # the executable when loading STEP files. We force the loader to find it in ··· 138 substituteInPlace src/libslic3r/Format/STEP.cpp \ 139 --replace 'libpath /= "OCCTWrapper.so";' 'libpath = "OCCTWrapper.so";' 140 fi 141 142 # Fix resources folder location on macOS 143 substituteInPlace src/PrusaSlicer.cpp \ ··· 147 sed -i '/libslic3r/d' tests/CMakeLists.txt 148 ''; 149 150 src = fetchFromGitHub { 151 owner = "prusa3d"; 152 repo = "PrusaSlicer"; 153 - sha256 = "sha256-oQRBVAbA2wOYZkQiYIgbd3UcKAkXjnNXo6gB5QbPDAs="; 154 rev = "version_${version}"; 155 }; 156
··· 1 { stdenv 2 , lib 3 + , openexr 4 + , jemalloc 5 + , c-blosc 6 , binutils 7 , fetchFromGitHub 8 , cmake ··· 24 , ilmbase 25 , libpng 26 , mpfr 27 + , nanosvg 28 , nlopt 29 , opencascade-occt 30 , openvdb 31 , pcre 32 , qhull 33 + , tbb_2021_8 34 + , wxGTK32 35 , xorg 36 , fetchpatch 37 , withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd, systemd 38 }: 39 let 40 + wxGTK-prusa = wxGTK32.overrideAttrs (old: rec { 41 pname = "wxwidgets-prusa3d-patched"; 42 + version = "3.2.0"; 43 + configureFlags = old.configureFlags ++ [ "--disable-glcanvasegl" ]; 44 + patches = [ ./wxWidgets-Makefile.in-fix.patch ]; 45 src = fetchFromGitHub { 46 owner = "prusa3d"; 47 repo = "wxWidgets"; 48 + rev = "78aa2dc0ea7ce99dc19adc1140f74c3e2e3f3a26"; 49 + hash = "sha256-rYvmNmvv48JSKVT4ph9AS+JdstnLSRmcpWz1IdgBzQo="; 50 fetchSubmodules = true; 51 }; 52 }); 53 + nanosvg-fltk = nanosvg.overrideAttrs (old: rec { 54 + pname = "nanosvg-fltk"; 55 + version = "unstable-2022-12-22"; 56 + 57 + src = fetchFromGitHub { 58 + owner = "fltk"; 59 + repo = "nanosvg"; 60 + rev = "abcd277ea45e9098bed752cf9c6875b533c0892f"; 61 + hash = "sha256-WNdAYu66ggpSYJ8Kt57yEA4mSTv+Rvzj9Rm1q765HpY="; 62 + }; 63 + }); 64 + openvdb_tbb_2021_8 = openvdb.overrideAttrs (old: rec { 65 + buildInputs = [ openexr boost tbb_2021_8 jemalloc c-blosc ilmbase ]; 66 + }); 67 in 68 stdenv.mkDerivation rec { 69 pname = "prusa-slicer"; 70 + version = "2.6.0"; 71 72 nativeBuildInputs = [ 73 cmake ··· 92 ilmbase 93 libpng 94 mpfr 95 + nanosvg-fltk 96 nlopt 97 opencascade-occt 98 + openvdb_tbb_2021_8 99 pcre 100 + qhull 101 + tbb_2021_8 102 wxGTK-prusa 103 xorg.libX11 104 ] ++ lib.optionals withSystemd [ 105 systemd 106 ] ++ nativeCheckInputs; 107 108 doCheck = true; 109 nativeCheckInputs = [ gtest ]; ··· 129 # now seems to be integrated into the main lib. 130 sed -i 's|nlopt_cxx|nlopt|g' cmake/modules/FindNLopt.cmake 131 132 + # Disable slic3r_jobs_tests.cpp as the test fails sometimes 133 + sed -i 's|slic3r_jobs_tests.cpp||g' tests/slic3rutils/CMakeLists.txt 134 135 # prusa-slicer expects the OCCTWrapper shared library in the same folder as 136 # the executable when loading STEP files. We force the loader to find it in ··· 140 substituteInPlace src/libslic3r/Format/STEP.cpp \ 141 --replace 'libpath /= "OCCTWrapper.so";' 'libpath = "OCCTWrapper.so";' 142 fi 143 + # https://github.com/prusa3d/PrusaSlicer/issues/9581 144 + if [ -f "cmake/modules/FindEXPAT.cmake" ]; then 145 + rm cmake/modules/FindEXPAT.cmake 146 + fi 147 148 # Fix resources folder location on macOS 149 substituteInPlace src/PrusaSlicer.cpp \ ··· 153 sed -i '/libslic3r/d' tests/CMakeLists.txt 154 ''; 155 156 + patches = [ 157 + # wxWidgets: CheckResizerFlags assert fix 158 + (fetchpatch { 159 + url = "https://github.com/prusa3d/PrusaSlicer/commit/24a5ebd65c9d25a0fd69a3716d079fd1b00eb15c.patch"; 160 + hash = "sha256-MNGtaI7THu6HEl9dMwcO1hkrCtIkscoNh4ulA2cKtZA="; 161 + }) 162 + ]; 163 + 164 src = fetchFromGitHub { 165 owner = "prusa3d"; 166 repo = "PrusaSlicer"; 167 + hash = "sha256-6AZdwNcgddHePyB0bNS7xGmpz38uzhAwUxgo48OQLuU="; 168 rev = "version_${version}"; 169 }; 170
+112
pkgs/applications/misc/prusa-slicer/wxWidgets-Makefile.in-fix.patch
···
··· 1 + diff --git a/Makefile.in b/Makefile.in 2 + index 8f33aa2ff4..39928382da 100644 3 + --- a/Makefile.in 4 + +++ b/Makefile.in 5 + @@ -4358,7 +4358,7 @@ COND_PLATFORM_WIN32_1___BASE_PLATFORM_SRC_OBJECTS = \ 6 + monodll_msw_utils.o \ 7 + monodll_utilsexc.o \ 8 + monodll_fswatcher.o \ 9 + - monodll_msw_secretstore.o 10 + + monodll_msw_secretstore.o \ 11 + monodll_msw_uilocale.o 12 + @COND_PLATFORM_WIN32_1@__BASE_PLATFORM_SRC_OBJECTS = $(COND_PLATFORM_WIN32_1___BASE_PLATFORM_SRC_OBJECTS) 13 + @COND_PLATFORM_WIN32_1@__BASE_AND_GUI_PLATFORM_SRC_OBJECTS \ 14 + @@ -5284,7 +5284,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS = \ 15 + monodll_uuid.o \ 16 + monodll_msw_evtloop.o \ 17 + monodll_access.o \ 18 + - monodll_dark_mode.o 19 + + monodll_dark_mode.o \ 20 + monodll_msw_bmpbndl.o 21 + @COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS) 22 + @COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS = \ 23 + @@ -6196,7 +6196,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_1 = \ 24 + monodll_uuid.o \ 25 + monodll_msw_evtloop.o \ 26 + monodll_access.o \ 27 + - monodll_dark_mode.o 28 + + monodll_dark_mode.o \ 29 + monodll_msw_bmpbndl.o 30 + @COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_1 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_1) 31 + @COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_1 = \ 32 + @@ -6371,7 +6371,7 @@ COND_PLATFORM_WIN32_1___BASE_PLATFORM_SRC_OBJECTS_1 = \ 33 + monolib_msw_utils.o \ 34 + monolib_utilsexc.o \ 35 + monolib_fswatcher.o \ 36 + - monolib_msw_secretstore.o 37 + + monolib_msw_secretstore.o \ 38 + monolib_msw_uilocale.o 39 + @COND_PLATFORM_WIN32_1@__BASE_PLATFORM_SRC_OBJECTS_1 = $(COND_PLATFORM_WIN32_1___BASE_PLATFORM_SRC_OBJECTS_1) 40 + @COND_PLATFORM_WIN32_1@__BASE_AND_GUI_PLATFORM_SRC_OBJECTS_1 \ 41 + @@ -7297,7 +7297,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_2 = \ 42 + monolib_uuid.o \ 43 + monolib_msw_evtloop.o \ 44 + monolib_access.o \ 45 + - monolib_dark_mode.o 46 + + monolib_dark_mode.o \ 47 + monolib_msw_bmpbndl.o 48 + @COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_2 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_2) 49 + @COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_2 = \ 50 + @@ -8209,7 +8209,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_3 = \ 51 + monolib_uuid.o \ 52 + monolib_msw_evtloop.o \ 53 + monolib_access.o \ 54 + - monolib_dark_mode.o 55 + + monolib_dark_mode.o \ 56 + monolib_msw_bmpbndl.o 57 + @COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_3 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_3) 58 + @COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_3 = \ 59 + @@ -8436,7 +8436,7 @@ COND_PLATFORM_WIN32_1___BASE_PLATFORM_SRC_OBJECTS_2 = \ 60 + basedll_msw_utils.o \ 61 + basedll_utilsexc.o \ 62 + basedll_fswatcher.o \ 63 + - basedll_msw_secretstore.o 64 + + basedll_msw_secretstore.o \ 65 + basedll_msw_uilocale.o 66 + @COND_PLATFORM_WIN32_1@__BASE_PLATFORM_SRC_OBJECTS_2 = $(COND_PLATFORM_WIN32_1___BASE_PLATFORM_SRC_OBJECTS_2) 67 + @COND_PLATFORM_WIN32_1@__BASE_AND_GUI_PLATFORM_SRC_OBJECTS_2 \ 68 + @@ -8523,7 +8523,7 @@ COND_PLATFORM_WIN32_1___BASE_PLATFORM_SRC_OBJECTS_3 = \ 69 + baselib_msw_utils.o \ 70 + baselib_utilsexc.o \ 71 + baselib_fswatcher.o \ 72 + - baselib_msw_secretstore.o 73 + + baselib_msw_secretstore.o \ 74 + baselib_msw_uilocale.o 75 + @COND_PLATFORM_WIN32_1@__BASE_PLATFORM_SRC_OBJECTS_3 = $(COND_PLATFORM_WIN32_1___BASE_PLATFORM_SRC_OBJECTS_3) 76 + @COND_PLATFORM_WIN32_1@__BASE_AND_GUI_PLATFORM_SRC_OBJECTS_3 \ 77 + @@ -9464,7 +9464,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_4 = \ 78 + coredll_uuid.o \ 79 + coredll_msw_evtloop.o \ 80 + coredll_access.o \ 81 + - coredll_dark_mode.o 82 + + coredll_dark_mode.o \ 83 + coredll_msw_bmpbndl.o 84 + @COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_4 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_4) 85 + @COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_4 = \ 86 + @@ -10376,7 +10376,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_5 = \ 87 + coredll_uuid.o \ 88 + coredll_msw_evtloop.o \ 89 + coredll_access.o \ 90 + - coredll_dark_mode.o 91 + + coredll_dark_mode.o \ 92 + coredll_msw_bmpbndl.o 93 + @COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_5 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_5) 94 + @COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_5 = \ 95 + @@ -11204,7 +11204,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_6 = \ 96 + corelib_uuid.o \ 97 + corelib_msw_evtloop.o \ 98 + corelib_access.o \ 99 + - corelib_dark_mode.o 100 + + corelib_dark_mode.o \ 101 + corelib_msw_bmpbndl.o 102 + @COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_6 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_6) 103 + @COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_6 = \ 104 + @@ -12116,7 +12116,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_7 = \ 105 + corelib_uuid.o \ 106 + corelib_msw_evtloop.o \ 107 + corelib_access.o \ 108 + - corelib_dark_mode.o 109 + + corelib_dark_mode.o \ 110 + corelib_msw_bmpbndl.o 111 + @COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_7 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_7) 112 + @COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_7 = \
+3 -3
pkgs/applications/networking/feedreaders/newsboat/default.nix
··· 3 4 rustPlatform.buildRustPackage rec { 5 pname = "newsboat"; 6 - version = "2.31"; 7 8 src = fetchFromGitHub { 9 owner = "newsboat"; 10 repo = "newsboat"; 11 rev = "r${version}"; 12 - hash = "sha256-e06QsfcAo/iYlvtdYZ8hX0EIMCDcwRrsJGjUxCrthUo="; 13 }; 14 15 - cargoHash = "sha256-MJkiC+UoiO4DiSvHLAklBdla+RmMYaxA/8oXNblYMF4="; 16 17 # TODO: Check if that's still needed 18 postPatch = lib.optionalString stdenv.isDarwin ''
··· 3 4 rustPlatform.buildRustPackage rec { 5 pname = "newsboat"; 6 + version = "2.32"; 7 8 src = fetchFromGitHub { 9 owner = "newsboat"; 10 repo = "newsboat"; 11 rev = "r${version}"; 12 + hash = "sha256-ACPnCm2cu9BEpMd02t+G4mg6DZ8jCydfK4p+Ad87Hek="; 13 }; 14 15 + cargoHash = "sha256-HHc8HSNWoBkDR7lQgvXUML5ly8sShDn16DWNf/Jig2g="; 16 17 # TODO: Check if that's still needed 18 postPatch = lib.optionalString stdenv.isDarwin ''
+3 -3
pkgs/applications/version-management/gfold/default.nix
··· 12 13 let 14 pname = "gfold"; 15 - version = "4.3.3"; 16 in 17 rustPlatform.buildRustPackage { 18 inherit pname version; ··· 21 owner = "nickgerace"; 22 repo = pname; 23 rev = version; 24 - sha256 = "sha256-J7D/fwXhWgS6C9iJqdBaA0Ym7ioCbqmyI9BrmZfoEjY="; 25 }; 26 27 - cargoHash = "sha256-o7bUgm2SEDis6h+feUYE/Ew6pwbYCw/peRvb4c64TlM="; 28 29 buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; 30
··· 12 13 let 14 pname = "gfold"; 15 + version = "4.4.0"; 16 in 17 rustPlatform.buildRustPackage { 18 inherit pname version; ··· 21 owner = "nickgerace"; 22 repo = pname; 23 rev = version; 24 + sha256 = "sha256-2rBKf7+brd2NbukJYmeRpn7skxrLbMGYC9+VLqmdFfw="; 25 }; 26 27 + cargoHash = "sha256-7yPKZJKJF/ISfYfqpWLMApcNHqv3aFXL1a/cGtmbMVg="; 28 29 buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; 30
+11 -1
pkgs/applications/virtualization/crosvm/default.nix
··· 1 - { lib, rustPlatform, fetchgit, pkg-config, protobuf, python3, wayland-scanner 2 , libcap, libdrm, libepoxy, minijail, virglrenderer, wayland, wayland-protocols 3 }: 4 ··· 12 sha256 = "PdP+Jx2oIAy+gxHjJDU5YlAlSYFtoX7ey3r5ELD9QPM="; 13 fetchSubmodules = true; 14 }; 15 16 separateDebugInfo = true; 17
··· 1 + { lib, rustPlatform, fetchgit, fetchpatch 2 + , pkg-config, protobuf, python3, wayland-scanner 3 , libcap, libdrm, libepoxy, minijail, virglrenderer, wayland, wayland-protocols 4 }: 5 ··· 13 sha256 = "PdP+Jx2oIAy+gxHjJDU5YlAlSYFtoX7ey3r5ELD9QPM="; 14 fetchSubmodules = true; 15 }; 16 + 17 + patches = [ 18 + # Backport fix for non-Glibc. 19 + (fetchpatch { 20 + url = "https://chromium.googlesource.com/chromiumos/platform/crosvm/+/8afa6096aa0417ccc5de0213a241dd7ebd25ac0a%5E%21/?format=TEXT"; 21 + decode = "base64 -d"; 22 + hash = "sha256-oRwGprs/P2ZG8BM9CMzyEyM8fjuyFINQw4rjTq9rKXA="; 23 + }) 24 + ]; 25 26 separateDebugInfo = true; 27
+46
pkgs/applications/virtualization/tart/default.nix
···
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchurl 4 + , makeWrapper 5 + # Softnet support ("--net-softnet") is disabled by default as it requires 6 + # passwordless-sudo when installed through nix. Alternatively users may install 7 + # softnet through other means with "setuid"-bit enabled. 8 + # See https://github.com/cirruslabs/softnet#installing 9 + , enableSoftnet ? false, softnet 10 + }: 11 + stdenvNoCC.mkDerivation (finalAttrs: { 12 + pname = "tart"; 13 + version = "1.6.0"; 14 + 15 + src = fetchurl { 16 + url = "https://github.com/cirruslabs/tart/releases/download/${finalAttrs.version}/tart.tar.gz"; 17 + sha256 = "1n052nwsccc3sr0jqnvhyl0six8wi46vysxjchwrdm8brnsdpf84"; 18 + }; 19 + sourceRoot = "."; 20 + 21 + nativeBuildInputs = [ makeWrapper ]; 22 + 23 + installPhase = '' 24 + runHook preInstall 25 + 26 + # ./tart.app/Contents/MacOS/tart binary is required to be used in order to 27 + # trick macOS to pick tart.app/Contents/embedded.provision profile for elevated 28 + # privileges that Tart needs 29 + mkdir -p $out/bin $out/Applications 30 + cp -r tart.app $out/Applications/tart.app 31 + makeWrapper $out/Applications/tart.app/Contents/MacOS/tart $out/bin/tart \ 32 + --prefix PATH : ${lib.makeBinPath (lib.optional enableSoftnet softnet)} 33 + install -Dm444 LICENSE $out/share/tart/LICENSE 34 + 35 + runHook postInstall 36 + ''; 37 + 38 + meta = with lib; { 39 + description = "macOS VMs on Apple Silicon to use in CI and other automations"; 40 + homepage = "https://tart.run"; 41 + license = licenses.fairsource09; 42 + maintainers = with maintainers; [ emilytrau Enzime ]; 43 + platforms = [ "aarch64-darwin" ]; 44 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 45 + }; 46 + })
+2 -2
pkgs/data/misc/dbip-country-lite/default.nix
··· 6 7 stdenvNoCC.mkDerivation rec { 8 pname = "dbip-country-lite"; 9 - version = "2023-06"; 10 11 src = fetchurl { 12 url = "https://download.db-ip.com/free/dbip-country-lite-${version}.mmdb.gz"; 13 - hash = "sha256-H+f7OhI03qhgpldF05Nc5ohPIPNhyVRCwiVqeWkvIbc="; 14 }; 15 16 dontUnpack = true;
··· 6 7 stdenvNoCC.mkDerivation rec { 8 pname = "dbip-country-lite"; 9 + version = "2023-07"; 10 11 src = fetchurl { 12 url = "https://download.db-ip.com/free/dbip-country-lite-${version}.mmdb.gz"; 13 + hash = "sha256-WVsyhopYbBlCWDq9UoPe1rcGU3pBYsXkqNWbaQXzRFA="; 14 }; 15 16 dontUnpack = true;
+3 -3
pkgs/data/misc/v2ray-domain-list-community/default.nix
··· 3 let 4 generator = pkgsBuildBuild.buildGoModule rec { 5 pname = "v2ray-domain-list-community"; 6 - version = "20230621141418"; 7 src = fetchFromGitHub { 8 owner = "v2fly"; 9 repo = "domain-list-community"; 10 rev = version; 11 - hash = "sha256-2RUnE96CYZD/0BixdO/2APnjhOAw12lW+XpktfN3B+U="; 12 }; 13 - vendorHash = "sha256-lPOn296ngMCYdXoGNDG9okkLC5ryjKIL+UP98lyaKcg="; 14 meta = with lib; { 15 description = "community managed domain list"; 16 homepage = "https://github.com/v2fly/domain-list-community";
··· 3 let 4 generator = pkgsBuildBuild.buildGoModule rec { 5 pname = "v2ray-domain-list-community"; 6 + version = "20230627034247"; 7 src = fetchFromGitHub { 8 owner = "v2fly"; 9 repo = "domain-list-community"; 10 rev = version; 11 + hash = "sha256-9GrIvrLIU72oy12K/+1WaqOjvMJngKRNmkpwTq/9r9Q="; 12 }; 13 + vendorHash = "sha256-dYaGR5ZBORANKAYuPAi9i+KQn2OAGDGTZxdyVjkcVi8="; 14 meta = with lib; { 15 description = "community managed domain list"; 16 homepage = "https://github.com/v2fly/domain-list-community";
+23
pkgs/development/libraries/nanosvg/default.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub, cmake }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "nanosvg"; 5 + version = "unstable-2022-12-04"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "memononen"; 9 + repo = "nanosvg"; 10 + rev = "9da543e8329fdd81b64eb48742d8ccb09377aed1"; 11 + hash = "sha256-VOiN6583DtzGYPRkl19VG2QvSzl4T9HaynBuNcvZf94="; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake ]; 15 + 16 + meta = with lib; { 17 + description = "Simple stupid SVG parser"; 18 + homepage = "https://github.com/memononen/nanosvg"; 19 + license = licenses.zlib; 20 + platforms = platforms.all; 21 + }; 22 + } 23 +
+2 -2
pkgs/development/python-modules/aiobiketrax/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "aiobiketrax"; 17 - version = "1.0.0"; 18 format = "pyproject"; 19 20 disabled = pythonOlder "3.9"; ··· 23 owner = "basilfx"; 24 repo = pname; 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-lMgD315movmr+u+8BMaqhb1L46Wf0Ak56VAT2jpg1kM="; 27 }; 28 29 postPatch = ''
··· 14 15 buildPythonPackage rec { 16 pname = "aiobiketrax"; 17 + version = "1.1.0"; 18 format = "pyproject"; 19 20 disabled = pythonOlder "3.9"; ··· 23 owner = "basilfx"; 24 repo = pname; 25 rev = "refs/tags/v${version}"; 26 + hash = "sha256-qt2/Wf9qolNF83tf2G5xGFJiLTbOWLPbtCnDfIrKvoI="; 27 }; 28 29 postPatch = ''
+2 -2
pkgs/development/python-modules/bimmer-connected/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "bimmer-connected"; 17 - version = "0.13.7"; 18 format = "setuptools"; 19 20 disabled = pythonOlder "3.6"; ··· 23 owner = "bimmerconnected"; 24 repo = "bimmer_connected"; 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-JnrM2LuvqGHxec2C8eYjO++ejZ2jXIi8XmxpIw/tSxs="; 27 }; 28 29 nativeBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "bimmer-connected"; 17 + version = "0.13.8"; 18 format = "setuptools"; 19 20 disabled = pythonOlder "3.6"; ··· 23 owner = "bimmerconnected"; 24 repo = "bimmer_connected"; 25 rev = "refs/tags/${version}"; 26 + hash = "sha256-IC668e9XRi4rxwiwwdu4mkrQQy/hkM3OGodCDso/Uo4="; 27 }; 28 29 nativeBuildInputs = [
+7 -2
pkgs/development/python-modules/camel-converter/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "camel-converter"; 12 - version = "3.0.1"; 13 format = "pyproject"; 14 15 disabled = pythonOlder "3.8"; ··· 18 owner = "sanders41"; 19 repo = pname; 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-t0wZ03xMNuBEUeXC+DizNSVJmnlt2SH9f0qw6F4UXg8="; 22 }; 23 24 postPatch = '' ··· 42 43 pythonImportsCheck = [ 44 "camel_converter" 45 ]; 46 47 meta = with lib; {
··· 9 10 buildPythonPackage rec { 11 pname = "camel-converter"; 12 + version = "3.0.2"; 13 format = "pyproject"; 14 15 disabled = pythonOlder "3.8"; ··· 18 owner = "sanders41"; 19 repo = pname; 20 rev = "refs/tags/v${version}"; 21 + hash = "sha256-XKtWR9dmSMfqkJYUHDQtWBLG3CHrbrI5lNtPUTShmBE="; 22 }; 23 24 postPatch = '' ··· 42 43 pythonImportsCheck = [ 44 "camel_converter" 45 + ]; 46 + 47 + disabledTests = [ 48 + # AttributeError: 'Test' object has no attribute 'model_dump' 49 + "test_camel_config" 50 ]; 51 52 meta = with lib; {
+2 -2
pkgs/development/python-modules/fastapi-mail/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "fastapi-mail"; 22 - version = "1.3.0"; 23 format = "pyproject"; 24 25 disabled = pythonOlder "3.8"; ··· 28 owner = "sabuhish"; 29 repo = pname; 30 rev = "refs/tags/${version}"; 31 - hash = "sha256-ttVzjmMZe1iWn2J7N5pcol4GFnKv3CB3DOQkZU2HnHg="; 32 }; 33 34 postPatch = ''
··· 19 20 buildPythonPackage rec { 21 pname = "fastapi-mail"; 22 + version = "1.3.1"; 23 format = "pyproject"; 24 25 disabled = pythonOlder "3.8"; ··· 28 owner = "sabuhish"; 29 repo = pname; 30 rev = "refs/tags/${version}"; 31 + hash = "sha256-m8d4y75+mSh9A+YVaV/yZhN3ckOe2mV1jdtfeNFtU/w="; 32 }; 33 34 postPatch = ''
+2 -2
pkgs/development/python-modules/griffe/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "griffe"; 16 - version = "0.29.1"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "mkdocstrings"; 23 repo = pname; 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-df6uFIaTdTy5VMKxBZew5zK0/iO7KbttbjGBJp1Vhjw="; 26 }; 27 28 postPatch = ''
··· 13 14 buildPythonPackage rec { 15 pname = "griffe"; 16 + version = "0.30.0"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "mkdocstrings"; 23 repo = pname; 24 rev = "refs/tags/${version}"; 25 + hash = "sha256-OiDNK/NqC1nDiN2uoYaVj07BirzNB6DBKvMKNrfWDIA="; 26 }; 27 28 postPatch = ''
+64
pkgs/development/python-modules/referencing/default.nix
···
··· 1 + { lib 2 + , attrs 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , hatch-vcs 6 + , hatchling 7 + , jsonschema 8 + , pytest-subtests 9 + , pytestCheckHook 10 + , pythonOlder 11 + , rpds-py 12 + , setuptools-scm 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "referencing"; 17 + version = "0.29.0"; 18 + format = "pyproject"; 19 + 20 + disabled = pythonOlder "3.7"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "python-jsonschema"; 24 + repo = "referencing"; 25 + rev = "refs/tags/v${version}"; 26 + fetchSubmodules = true; 27 + hash = "sha256-+wPNPYu2/0gBmHFJ8aAeZ3dFDC7uFV6Ww3RAbri26Mc="; 28 + }; 29 + 30 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 31 + 32 + postPatch = '' 33 + sed -i "/Topic/d" pyproject.toml 34 + ''; 35 + 36 + nativeBuildInputs = [ 37 + hatch-vcs 38 + hatchling 39 + setuptools-scm 40 + ]; 41 + 42 + propagatedBuildInputs = [ 43 + attrs 44 + rpds-py 45 + ]; 46 + 47 + nativeCheckInputs = [ 48 + jsonschema 49 + pytest-subtests 50 + pytestCheckHook 51 + ]; 52 + 53 + pythonImportsCheck = [ 54 + "referencing" 55 + ]; 56 + 57 + meta = with lib; { 58 + description = "Cross-specification JSON referencing"; 59 + homepage = "https://github.com/python-jsonschema/referencing"; 60 + changelog = "https://github.com/python-jsonschema/referencing/blob/${version}/CHANGELOG.rst"; 61 + license = licenses.mit; 62 + maintainers = with maintainers; [ fab ]; 63 + }; 64 + }
+51
pkgs/development/python-modules/rpds-py/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , cargo 4 + , fetchPypi 5 + , pytestCheckHook 6 + , pythonOlder 7 + , rustc 8 + , rustPlatform 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "rpds-py"; 13 + version = "0.7.1"; 14 + format = "pyproject"; 15 + 16 + disabled = pythonOlder "3.8"; 17 + 18 + src = fetchPypi { 19 + pname = "rpds_py"; 20 + inherit version; 21 + hash = "sha256-2UC1ZE8U5JscbnkCueyKDHWEEJ+/OA+hgRWDGmQZJ8g="; 22 + }; 23 + 24 + cargoDeps = rustPlatform.fetchCargoTarball { 25 + inherit src; 26 + name = "${pname}-${version}"; 27 + hash = "sha256-BAoE0oRQGf5ze/8uAH6gsFP77lPvOvYy8W9iDrqUn3Q="; 28 + }; 29 + 30 + nativeBuildInputs = [ 31 + rustPlatform.cargoSetupHook 32 + rustPlatform.maturinBuildHook 33 + cargo 34 + rustc 35 + ]; 36 + 37 + nativeCheckInputs = [ 38 + pytestCheckHook 39 + ]; 40 + 41 + pythonImportsCheck = [ 42 + "rpds" 43 + ]; 44 + 45 + meta = with lib; { 46 + description = "Python bindings to Rust's persistent data structures (rpds"; 47 + homepage = "https://pypi.org/project/rpds-py/"; 48 + license = licenses.mit; 49 + maintainers = with maintainers; [ fab ]; 50 + }; 51 + }
+2 -2
pkgs/development/python-modules/sentry-sdk/default.nix
··· 40 41 buildPythonPackage rec { 42 pname = "sentry-sdk"; 43 - version = "1.25.1"; 44 format = "setuptools"; 45 46 disabled = pythonOlder "3.7"; ··· 49 owner = "getsentry"; 50 repo = "sentry-python"; 51 rev = "refs/tags/${version}"; 52 - hash = "sha256-I7lsyMJ6akQvpzXEcUrWfomTX+oFYCX7YiE4cf6KAuE="; 53 }; 54 55 propagatedBuildInputs = [
··· 40 41 buildPythonPackage rec { 42 pname = "sentry-sdk"; 43 + version = "1.26.0"; 44 format = "setuptools"; 45 46 disabled = pythonOlder "3.7"; ··· 49 owner = "getsentry"; 50 repo = "sentry-python"; 51 rev = "refs/tags/${version}"; 52 + hash = "sha256-zGlfkp7xOIpQKl0xL8EqtbMZfgCsi+txcsC/HW4ViEg="; 53 }; 54 55 propagatedBuildInputs = [
+2 -2
pkgs/development/tools/allure/default.nix
··· 2 3 let 4 pname = "allure"; 5 - version = "2.22.4"; 6 in 7 stdenv.mkDerivation rec { 8 inherit pname version; ··· 12 13 src = fetchurl { 14 url = "https://github.com/allure-framework/allure2/releases/download/${version}/allure-${version}.tgz"; 15 - sha256 = "sha256-oqxobClWwPNeZZhFdoX2tzD2/unG/XmvSp6hU+zzyos="; 16 }; 17 dontConfigure = true; 18 dontBuild = true;
··· 2 3 let 4 pname = "allure"; 5 + version = "2.23.0"; 6 in 7 stdenv.mkDerivation rec { 8 inherit pname version; ··· 12 13 src = fetchurl { 14 url = "https://github.com/allure-framework/allure2/releases/download/${version}/allure-${version}.tgz"; 15 + sha256 = "sha256-RBe9S6eHnKhtar/rLoLs6gl2TJtCNfoGrYLDbE6CpRI="; 16 }; 17 dontConfigure = true; 18 dontBuild = true;
+3 -3
pkgs/development/tools/build-managers/bazel/bazel-remote/default.nix
··· 5 6 buildGoModule rec { 7 pname = "bazel-remote"; 8 - version = "2.4.0"; 9 10 src = fetchFromGitHub { 11 owner = "buchgr"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-aC1I+33jEmgjtidA5CQXpwePsavwlx97abpsc68RkBI="; 15 }; 16 17 - vendorHash = "sha256-4vNRtFqtzoDHjDQwPe1/sJNzcCU+b7XHgQ5YqEzNhjI="; 18 19 doCheck = false; 20
··· 5 6 buildGoModule rec { 7 pname = "bazel-remote"; 8 + version = "2.4.1"; 9 10 src = fetchFromGitHub { 11 owner = "buchgr"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-7zAeGJyMfMdrVDCuTWU3zikXjM/ydjnGj6Ctjckd32c="; 15 }; 16 17 + vendorHash = "sha256-SxGBfWcV10L6xC5XPIfv/HJWQy5g3AoV8z4/ae23DEc="; 18 19 doCheck = false; 20
+3 -3
pkgs/development/web/flyctl/default.nix
··· 2 3 buildGoModule rec { 4 pname = "flyctl"; 5 - version = "0.1.40"; 6 7 src = fetchFromGitHub { 8 owner = "superfly"; 9 repo = "flyctl"; 10 rev = "v${version}"; 11 - hash = "sha256-TqLxx69mnc6fN0TdhFsMjTbTBP9Asr0IFVCJlgnCB+U="; 12 }; 13 14 - vendorHash = "sha256-Ml+ODoJqRkOiqPqLltpxrMvkTFV+iSoCrdr4PuvkMCY="; 15 16 subPackages = [ "." ]; 17
··· 2 3 buildGoModule rec { 4 pname = "flyctl"; 5 + version = "0.1.43"; 6 7 src = fetchFromGitHub { 8 owner = "superfly"; 9 repo = "flyctl"; 10 rev = "v${version}"; 11 + hash = "sha256-mvB5TCPkRWDAkDd4PV50EKjtlaZSFqTl6IDMTnPDrng="; 12 }; 13 14 + vendorHash = "sha256-2us72JBzLXaxJ6X6T/Hc2y4YVoAJ6YvJVJdO3KzsbkE="; 15 16 subPackages = [ "." ]; 17
+51
pkgs/games/pegasus-frontend/default.nix
···
··· 1 + { lib 2 + , fetchFromGitHub 3 + , stdenv 4 + , cmake 5 + , qtbase 6 + , qtgraphicaleffects 7 + , qtmultimedia 8 + , qtsvg 9 + , qttools 10 + , qtx11extras 11 + , SDL2 12 + , sqlite 13 + , wrapQtAppsHook 14 + }: 15 + 16 + stdenv.mkDerivation rec { 17 + pname = "pegasus-frontend"; 18 + version = "unstable-2023-05-22"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "mmatyas"; 22 + repo = "pegasus-frontend"; 23 + rev = "6421d7a75d29a82ea06008e4a08ec14e074430d9"; 24 + fetchSubmodules = true; 25 + sha256 = "sha256-mwJm+3zMP4alcis7OFQUcH3eXlRTZhoZYtxKrvCQGc8="; 26 + }; 27 + 28 + nativeBuildInputs = [ 29 + cmake 30 + qttools 31 + wrapQtAppsHook 32 + ]; 33 + 34 + buildInputs = [ 35 + qtbase 36 + qtmultimedia 37 + qtsvg 38 + qtgraphicaleffects 39 + qtx11extras 40 + sqlite 41 + SDL2 42 + ]; 43 + 44 + meta = with lib; { 45 + description = "A cross platform, customizable graphical frontend for launching emulators and managing your game collection."; 46 + homepage = "https://pegasus-frontend.org/"; 47 + license = licenses.gpl3Plus; 48 + maintainers = with maintainers; [ tengkuizdihar ]; 49 + platforms = platforms.linux; 50 + }; 51 + }
+5 -5
pkgs/os-specific/linux/kernel/zen-kernels.nix
··· 4 # comments with variant added for update script 5 # ./update-zen.py zen 6 zenVariant = { 7 - version = "6.3.4"; #zen 8 suffix = "zen1"; #zen 9 - sha256 = "1dj5pk8fqf4plk5nri6cajwvdcs9b6gpfk1y620vi3g7w15p1gvx"; #zen 10 isLqx = false; 11 }; 12 # ./update-zen.py lqx 13 lqxVariant = { 14 - version = "6.3.4"; #lqx 15 - suffix = "lqx1"; #lqx 16 - sha256 = "06xkcrd4wjpj23dnrfbyxyx1699vxzswb3r6p2xjwmpy44j5wjgf"; #lqx 17 isLqx = true; 18 }; 19 zenKernelsFor = { version, suffix, sha256, isLqx }: buildLinux (args // {
··· 4 # comments with variant added for update script 5 # ./update-zen.py zen 6 zenVariant = { 7 + version = "6.4.1"; #zen 8 suffix = "zen1"; #zen 9 + sha256 = "05a3dplzz6vy5gjz9yd1hz7n4xf3mlr2q112kf3yabg8k8izqnys"; #zen 10 isLqx = false; 11 }; 12 # ./update-zen.py lqx 13 lqxVariant = { 14 + version = "6.3.11"; #lqx 15 + suffix = "lqx2"; #lqx 16 + sha256 = "0hpzafw2zwy25ss4cwj6mm8pr1nnv680m8bfcal29f7gaxbm96k8"; #lqx 17 isLqx = true; 18 }; 19 zenKernelsFor = { version, suffix, sha256, isLqx }: buildLinux (args // {
+8 -8
pkgs/servers/sql/monetdb/default.nix
··· 1 { lib, stdenv, fetchurl, cmake, python3, bison, openssl, readline, bzip2 }: 2 3 - stdenv.mkDerivation rec { 4 pname = "monetdb"; 5 - version = "11.45.17"; 6 7 src = fetchurl { 8 - url = "https://dev.monetdb.org/downloads/sources/archive/MonetDB-${version}.tar.bz2"; 9 - sha256 = "sha256-sVRNnaklw2mHkTz8Kw6x8uPfdN+I1n1tOjHBslyMpGc="; 10 }; 11 12 postPatch = '' 13 substituteInPlace cmake/monetdb-packages.cmake --replace \ ··· 27 $out/bin/Mconvert.py 28 ''; 29 30 - nativeBuildInputs = [ cmake python3 ]; 31 - buildInputs = [ bison openssl readline bzip2 ]; 32 - 33 meta = with lib; { 34 description = "An open source database system"; 35 homepage = "https://www.monetdb.org/"; ··· 37 platforms = platforms.unix; 38 maintainers = [ maintainers.StillerHarpo ]; 39 }; 40 - }
··· 1 { lib, stdenv, fetchurl, cmake, python3, bison, openssl, readline, bzip2 }: 2 3 + stdenv.mkDerivation (finalAttrs: { 4 pname = "monetdb"; 5 + version = "11.47.3"; 6 7 src = fetchurl { 8 + url = "https://dev.monetdb.org/downloads/sources/archive/MonetDB-${finalAttrs.version}.tar.bz2"; 9 + hash = "sha256-0vhcPh4ZXCAKpgiSZstu6vBQv7VwOYc6qoz8dPkugNE="; 10 }; 11 + 12 + nativeBuildInputs = [ bison cmake python3 ]; 13 + buildInputs = [ openssl readline bzip2 ]; 14 15 postPatch = '' 16 substituteInPlace cmake/monetdb-packages.cmake --replace \ ··· 30 $out/bin/Mconvert.py 31 ''; 32 33 meta = with lib; { 34 description = "An open source database system"; 35 homepage = "https://www.monetdb.org/"; ··· 37 platforms = platforms.unix; 38 maintainers = [ maintainers.StillerHarpo ]; 39 }; 40 + })
+306 -288
pkgs/servers/x11/xorg/default.nix
··· 8 # THIS IS A GENERATED FILE. DO NOT EDIT! 9 appres = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXt }: stdenv.mkDerivation { 10 pname = "appres"; 11 - version = "1.0.5"; 12 builder = ./builder.sh; 13 src = fetchurl { 14 - url = "mirror://xorg/individual/app/appres-1.0.5.tar.bz2"; 15 - sha256 = "0a2r4sxky3k7b3kdb5pbv709q9b5zi3gxjz336wl66f828vqkbgz"; 16 }; 17 hardeningDisable = [ "bindnow" "relro" ]; 18 strictDeps = true; ··· 27 version = "1.1.1"; 28 builder = ./builder.sh; 29 src = fetchurl { 30 - url = "https://xorg.freedesktop.org/archive/individual/util/bdftopcf-1.1.1.tar.xz"; 31 sha256 = "026rzs92h9jsc7r0kvvyvwhm22q0805gp38rs14x6ghg7kam7j8i"; 32 }; 33 hardeningDisable = [ "bindnow" "relro" ]; ··· 40 # THIS IS A GENERATED FILE. DO NOT EDIT! 41 bitmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, xbitmaps, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 42 pname = "bitmap"; 43 - version = "1.0.9"; 44 builder = ./builder.sh; 45 src = fetchurl { 46 - url = "mirror://xorg/individual/app/bitmap-1.0.9.tar.gz"; 47 - sha256 = "0kzbv5wh02798l77y9y8d8sjkmzm9cvsn3rjh8a86v5waj50apsb"; 48 }; 49 hardeningDisable = [ "bindnow" "relro" ]; 50 strictDeps = true; ··· 56 # THIS IS A GENERATED FILE. DO NOT EDIT! 57 editres = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 58 pname = "editres"; 59 - version = "1.0.7"; 60 builder = ./builder.sh; 61 src = fetchurl { 62 - url = "mirror://xorg/individual/app/editres-1.0.7.tar.bz2"; 63 - sha256 = "04awfwmy3f9f0bchidc4ssbgrbicn5gzasg3jydpfnp5513d76h8"; 64 }; 65 hardeningDisable = [ "bindnow" "relro" ]; 66 strictDeps = true; ··· 72 # THIS IS A GENERATED FILE. DO NOT EDIT! 73 encodings = callPackage ({ stdenv, pkg-config, fetchurl, mkfontscale }: stdenv.mkDerivation { 74 pname = "encodings"; 75 - version = "1.0.5"; 76 builder = ./builder.sh; 77 src = fetchurl { 78 - url = "mirror://xorg/individual/font/encodings-1.0.5.tar.bz2"; 79 - sha256 = "0caafx0yqqnqyvbalxhh3mb0r9v36xmcy5zjhygb2i508dhy35mx"; 80 }; 81 hardeningDisable = [ "bindnow" "relro" ]; 82 strictDeps = true; ··· 88 # THIS IS A GENERATED FILE. DO NOT EDIT! 89 fontadobe100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 90 pname = "font-adobe-100dpi"; 91 - version = "1.0.3"; 92 builder = ./builder.sh; 93 src = fetchurl { 94 - url = "mirror://xorg/individual/font/font-adobe-100dpi-1.0.3.tar.bz2"; 95 - sha256 = "0m60f5bd0caambrk8ksknb5dks7wzsg7g7xaf0j21jxmx8rq9h5j"; 96 }; 97 hardeningDisable = [ "bindnow" "relro" ]; 98 strictDeps = true; ··· 106 # THIS IS A GENERATED FILE. DO NOT EDIT! 107 fontadobe75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 108 pname = "font-adobe-75dpi"; 109 - version = "1.0.3"; 110 builder = ./builder.sh; 111 src = fetchurl { 112 - url = "mirror://xorg/individual/font/font-adobe-75dpi-1.0.3.tar.bz2"; 113 - sha256 = "02advcv9lyxpvrjv8bjh1b797lzg6jvhipclz49z8r8y98g4l0n6"; 114 }; 115 hardeningDisable = [ "bindnow" "relro" ]; 116 strictDeps = true; ··· 124 # THIS IS A GENERATED FILE. DO NOT EDIT! 125 fontadobeutopia100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 126 pname = "font-adobe-utopia-100dpi"; 127 - version = "1.0.4"; 128 builder = ./builder.sh; 129 src = fetchurl { 130 - url = "mirror://xorg/individual/font/font-adobe-utopia-100dpi-1.0.4.tar.bz2"; 131 - sha256 = "19dd9znam1ah72jmdh7i6ny2ss2r6m21z9v0l43xvikw48zmwvyi"; 132 }; 133 hardeningDisable = [ "bindnow" "relro" ]; 134 strictDeps = true; ··· 142 # THIS IS A GENERATED FILE. DO NOT EDIT! 143 fontadobeutopia75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 144 pname = "font-adobe-utopia-75dpi"; 145 - version = "1.0.4"; 146 builder = ./builder.sh; 147 src = fetchurl { 148 - url = "mirror://xorg/individual/font/font-adobe-utopia-75dpi-1.0.4.tar.bz2"; 149 - sha256 = "152wigpph5wvl4k9m3l4mchxxisgsnzlx033mn5iqrpkc6f72cl7"; 150 }; 151 hardeningDisable = [ "bindnow" "relro" ]; 152 strictDeps = true; ··· 160 # THIS IS A GENERATED FILE. DO NOT EDIT! 161 fontadobeutopiatype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 162 pname = "font-adobe-utopia-type1"; 163 - version = "1.0.4"; 164 builder = ./builder.sh; 165 src = fetchurl { 166 - url = "mirror://xorg/individual/font/font-adobe-utopia-type1-1.0.4.tar.bz2"; 167 - sha256 = "0xw0pdnzj5jljsbbhakc6q9ha2qnca1jr81zk7w70yl9bw83b54p"; 168 }; 169 hardeningDisable = [ "bindnow" "relro" ]; 170 strictDeps = true; ··· 194 # THIS IS A GENERATED FILE. DO NOT EDIT! 195 fontarabicmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 196 pname = "font-arabic-misc"; 197 - version = "1.0.3"; 198 builder = ./builder.sh; 199 src = fetchurl { 200 - url = "mirror://xorg/individual/font/font-arabic-misc-1.0.3.tar.bz2"; 201 - sha256 = "1x246dfnxnmflzf0qzy62k8jdpkb6jkgspcjgbk8jcq9lw99npah"; 202 }; 203 hardeningDisable = [ "bindnow" "relro" ]; 204 strictDeps = true; ··· 212 # THIS IS A GENERATED FILE. DO NOT EDIT! 213 fontbh100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 214 pname = "font-bh-100dpi"; 215 - version = "1.0.3"; 216 builder = ./builder.sh; 217 src = fetchurl { 218 - url = "mirror://xorg/individual/font/font-bh-100dpi-1.0.3.tar.bz2"; 219 - sha256 = "10cl4gm38dw68jzln99ijix730y7cbx8np096gmpjjwff1i73h13"; 220 }; 221 hardeningDisable = [ "bindnow" "relro" ]; 222 strictDeps = true; ··· 230 # THIS IS A GENERATED FILE. DO NOT EDIT! 231 fontbh75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 232 pname = "font-bh-75dpi"; 233 - version = "1.0.3"; 234 builder = ./builder.sh; 235 src = fetchurl { 236 - url = "mirror://xorg/individual/font/font-bh-75dpi-1.0.3.tar.bz2"; 237 - sha256 = "073jmhf0sr2j1l8da97pzsqj805f7mf9r2gy92j4diljmi8sm1il"; 238 }; 239 hardeningDisable = [ "bindnow" "relro" ]; 240 strictDeps = true; ··· 248 # THIS IS A GENERATED FILE. DO NOT EDIT! 249 fontbhlucidatypewriter100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 250 pname = "font-bh-lucidatypewriter-100dpi"; 251 - version = "1.0.3"; 252 builder = ./builder.sh; 253 src = fetchurl { 254 - url = "mirror://xorg/individual/font/font-bh-lucidatypewriter-100dpi-1.0.3.tar.bz2"; 255 - sha256 = "1fqzckxdzjv4802iad2fdrkpaxl4w0hhs9lxlkyraq2kq9ik7a32"; 256 }; 257 hardeningDisable = [ "bindnow" "relro" ]; 258 strictDeps = true; ··· 266 # THIS IS A GENERATED FILE. DO NOT EDIT! 267 fontbhlucidatypewriter75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 268 pname = "font-bh-lucidatypewriter-75dpi"; 269 - version = "1.0.3"; 270 builder = ./builder.sh; 271 src = fetchurl { 272 - url = "mirror://xorg/individual/font/font-bh-lucidatypewriter-75dpi-1.0.3.tar.bz2"; 273 - sha256 = "0cfbxdp5m12cm7jsh3my0lym9328cgm7fa9faz2hqj05wbxnmhaa"; 274 }; 275 hardeningDisable = [ "bindnow" "relro" ]; 276 strictDeps = true; ··· 284 # THIS IS A GENERATED FILE. DO NOT EDIT! 285 fontbhttf = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 286 pname = "font-bh-ttf"; 287 - version = "1.0.3"; 288 builder = ./builder.sh; 289 src = fetchurl { 290 - url = "mirror://xorg/individual/font/font-bh-ttf-1.0.3.tar.bz2"; 291 - sha256 = "0pyjmc0ha288d4i4j0si4dh3ncf3jiwwjljvddrb0k8v4xiyljqv"; 292 }; 293 hardeningDisable = [ "bindnow" "relro" ]; 294 strictDeps = true; ··· 302 # THIS IS A GENERATED FILE. DO NOT EDIT! 303 fontbhtype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 304 pname = "font-bh-type1"; 305 - version = "1.0.3"; 306 builder = ./builder.sh; 307 src = fetchurl { 308 - url = "mirror://xorg/individual/font/font-bh-type1-1.0.3.tar.bz2"; 309 - sha256 = "1hb3iav089albp4sdgnlh50k47cdjif9p4axm0kkjvs8jyi5a53n"; 310 }; 311 hardeningDisable = [ "bindnow" "relro" ]; 312 strictDeps = true; ··· 320 # THIS IS A GENERATED FILE. DO NOT EDIT! 321 fontbitstream100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 322 pname = "font-bitstream-100dpi"; 323 - version = "1.0.3"; 324 builder = ./builder.sh; 325 src = fetchurl { 326 - url = "mirror://xorg/individual/font/font-bitstream-100dpi-1.0.3.tar.bz2"; 327 - sha256 = "1kmn9jbck3vghz6rj3bhc3h0w6gh0qiaqm90cjkqsz1x9r2dgq7b"; 328 }; 329 hardeningDisable = [ "bindnow" "relro" ]; 330 strictDeps = true; ··· 338 # THIS IS A GENERATED FILE. DO NOT EDIT! 339 fontbitstream75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 340 pname = "font-bitstream-75dpi"; 341 - version = "1.0.3"; 342 builder = ./builder.sh; 343 src = fetchurl { 344 - url = "mirror://xorg/individual/font/font-bitstream-75dpi-1.0.3.tar.bz2"; 345 - sha256 = "13plbifkvfvdfym6gjbgy9wx2xbdxi9hfrl1k22xayy02135wgxs"; 346 }; 347 hardeningDisable = [ "bindnow" "relro" ]; 348 strictDeps = true; ··· 354 }) {}; 355 356 # THIS IS A GENERATED FILE. DO NOT EDIT! 357 fontbitstreamtype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 358 pname = "font-bitstream-type1"; 359 - version = "1.0.3"; 360 builder = ./builder.sh; 361 src = fetchurl { 362 - url = "mirror://xorg/individual/font/font-bitstream-type1-1.0.3.tar.bz2"; 363 - sha256 = "1256z0jhcf5gbh1d03593qdwnag708rxqa032izmfb5dmmlhbsn6"; 364 }; 365 hardeningDisable = [ "bindnow" "relro" ]; 366 strictDeps = true; ··· 374 # THIS IS A GENERATED FILE. DO NOT EDIT! 375 fontcronyxcyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 376 pname = "font-cronyx-cyrillic"; 377 - version = "1.0.3"; 378 builder = ./builder.sh; 379 src = fetchurl { 380 - url = "mirror://xorg/individual/font/font-cronyx-cyrillic-1.0.3.tar.bz2"; 381 - sha256 = "0ai1v4n61k8j9x2a1knvfbl2xjxk3xxmqaq3p9vpqrspc69k31kf"; 382 }; 383 hardeningDisable = [ "bindnow" "relro" ]; 384 strictDeps = true; ··· 392 # THIS IS A GENERATED FILE. DO NOT EDIT! 393 fontcursormisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 394 pname = "font-cursor-misc"; 395 - version = "1.0.3"; 396 builder = ./builder.sh; 397 src = fetchurl { 398 - url = "mirror://xorg/individual/font/font-cursor-misc-1.0.3.tar.bz2"; 399 - sha256 = "0dd6vfiagjc4zmvlskrbjz85jfqhf060cpys8j0y1qpcbsrkwdhp"; 400 }; 401 hardeningDisable = [ "bindnow" "relro" ]; 402 strictDeps = true; ··· 410 # THIS IS A GENERATED FILE. DO NOT EDIT! 411 fontdaewoomisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 412 pname = "font-daewoo-misc"; 413 - version = "1.0.3"; 414 builder = ./builder.sh; 415 src = fetchurl { 416 - url = "mirror://xorg/individual/font/font-daewoo-misc-1.0.3.tar.bz2"; 417 - sha256 = "1s2bbhizzgbbbn5wqs3vw53n619cclxksljvm759h9p1prqdwrdw"; 418 }; 419 hardeningDisable = [ "bindnow" "relro" ]; 420 strictDeps = true; ··· 428 # THIS IS A GENERATED FILE. DO NOT EDIT! 429 fontdecmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 430 pname = "font-dec-misc"; 431 - version = "1.0.3"; 432 builder = ./builder.sh; 433 src = fetchurl { 434 - url = "mirror://xorg/individual/font/font-dec-misc-1.0.3.tar.bz2"; 435 - sha256 = "0yzza0l4zwyy7accr1s8ab7fjqkpwggqydbm2vc19scdby5xz7g1"; 436 }; 437 hardeningDisable = [ "bindnow" "relro" ]; 438 strictDeps = true; ··· 446 # THIS IS A GENERATED FILE. DO NOT EDIT! 447 fontibmtype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 448 pname = "font-ibm-type1"; 449 - version = "1.0.3"; 450 builder = ./builder.sh; 451 src = fetchurl { 452 - url = "mirror://xorg/individual/font/font-ibm-type1-1.0.3.tar.bz2"; 453 - sha256 = "1pyjll4adch3z5cg663s6vhi02k8m6488f0mrasg81ssvg9jinzx"; 454 }; 455 hardeningDisable = [ "bindnow" "relro" ]; 456 strictDeps = true; ··· 464 # THIS IS A GENERATED FILE. DO NOT EDIT! 465 fontisasmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 466 pname = "font-isas-misc"; 467 - version = "1.0.3"; 468 builder = ./builder.sh; 469 src = fetchurl { 470 - url = "mirror://xorg/individual/font/font-isas-misc-1.0.3.tar.bz2"; 471 - sha256 = "0rx8q02rkx673a7skkpnvfkg28i8gmqzgf25s9yi0lar915sn92q"; 472 }; 473 hardeningDisable = [ "bindnow" "relro" ]; 474 strictDeps = true; ··· 482 # THIS IS A GENERATED FILE. DO NOT EDIT! 483 fontjismisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 484 pname = "font-jis-misc"; 485 - version = "1.0.3"; 486 builder = ./builder.sh; 487 src = fetchurl { 488 - url = "mirror://xorg/individual/font/font-jis-misc-1.0.3.tar.bz2"; 489 - sha256 = "0rdc3xdz12pnv951538q6wilx8mrdndpkphpbblszsv7nc8cw61b"; 490 }; 491 hardeningDisable = [ "bindnow" "relro" ]; 492 strictDeps = true; ··· 500 # THIS IS A GENERATED FILE. DO NOT EDIT! 501 fontmicromisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 502 pname = "font-micro-misc"; 503 - version = "1.0.3"; 504 builder = ./builder.sh; 505 src = fetchurl { 506 - url = "mirror://xorg/individual/font/font-micro-misc-1.0.3.tar.bz2"; 507 - sha256 = "1dldxlh54zq1yzfnrh83j5vm0k4ijprrs5yl18gm3n9j1z0q2cws"; 508 }; 509 hardeningDisable = [ "bindnow" "relro" ]; 510 strictDeps = true; ··· 518 # THIS IS A GENERATED FILE. DO NOT EDIT! 519 fontmisccyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 520 pname = "font-misc-cyrillic"; 521 - version = "1.0.3"; 522 builder = ./builder.sh; 523 src = fetchurl { 524 - url = "mirror://xorg/individual/font/font-misc-cyrillic-1.0.3.tar.bz2"; 525 - sha256 = "0q2ybxs8wvylvw95j6x9i800rismsmx4b587alwbfqiw6biy63z4"; 526 }; 527 hardeningDisable = [ "bindnow" "relro" ]; 528 strictDeps = true; ··· 536 # THIS IS A GENERATED FILE. DO NOT EDIT! 537 fontmiscethiopic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 538 pname = "font-misc-ethiopic"; 539 - version = "1.0.3"; 540 builder = ./builder.sh; 541 src = fetchurl { 542 - url = "mirror://xorg/individual/font/font-misc-ethiopic-1.0.3.tar.bz2"; 543 - sha256 = "19cq7iq0pfad0nc2v28n681fdq3fcw1l1hzaq0wpkgpx7bc1zjsk"; 544 }; 545 hardeningDisable = [ "bindnow" "relro" ]; 546 strictDeps = true; ··· 554 # THIS IS A GENERATED FILE. DO NOT EDIT! 555 fontmiscmeltho = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 556 pname = "font-misc-meltho"; 557 - version = "1.0.3"; 558 builder = ./builder.sh; 559 src = fetchurl { 560 - url = "mirror://xorg/individual/font/font-misc-meltho-1.0.3.tar.bz2"; 561 - sha256 = "148793fqwzrc3bmh2vlw5fdiwjc2n7vs25cic35gfp452czk489p"; 562 }; 563 hardeningDisable = [ "bindnow" "relro" ]; 564 strictDeps = true; ··· 572 # THIS IS A GENERATED FILE. DO NOT EDIT! 573 fontmiscmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 574 pname = "font-misc-misc"; 575 - version = "1.1.2"; 576 builder = ./builder.sh; 577 src = fetchurl { 578 - url = "mirror://xorg/individual/font/font-misc-misc-1.1.2.tar.bz2"; 579 - sha256 = "150pq6n8n984fah34n3k133kggn9v0c5k07igv29sxp1wi07krxq"; 580 }; 581 hardeningDisable = [ "bindnow" "relro" ]; 582 strictDeps = true; ··· 590 # THIS IS A GENERATED FILE. DO NOT EDIT! 591 fontmuttmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 592 pname = "font-mutt-misc"; 593 - version = "1.0.3"; 594 builder = ./builder.sh; 595 src = fetchurl { 596 - url = "mirror://xorg/individual/font/font-mutt-misc-1.0.3.tar.bz2"; 597 - sha256 = "13qghgr1zzpv64m0p42195k1kc77pksiv059fdvijz1n6kdplpxx"; 598 }; 599 hardeningDisable = [ "bindnow" "relro" ]; 600 strictDeps = true; ··· 608 # THIS IS A GENERATED FILE. DO NOT EDIT! 609 fontschumachermisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 610 pname = "font-schumacher-misc"; 611 - version = "1.1.2"; 612 builder = ./builder.sh; 613 src = fetchurl { 614 - url = "mirror://xorg/individual/font/font-schumacher-misc-1.1.2.tar.bz2"; 615 - sha256 = "0nkym3n48b4v36y4s927bbkjnsmicajarnf6vlp7wxp0as304i74"; 616 }; 617 hardeningDisable = [ "bindnow" "relro" ]; 618 strictDeps = true; ··· 626 # THIS IS A GENERATED FILE. DO NOT EDIT! 627 fontscreencyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 628 pname = "font-screen-cyrillic"; 629 - version = "1.0.4"; 630 builder = ./builder.sh; 631 src = fetchurl { 632 - url = "mirror://xorg/individual/font/font-screen-cyrillic-1.0.4.tar.bz2"; 633 - sha256 = "0yayf1qlv7irf58nngddz2f1q04qkpr5jwp4aja2j5gyvzl32hl2"; 634 }; 635 hardeningDisable = [ "bindnow" "relro" ]; 636 strictDeps = true; ··· 644 # THIS IS A GENERATED FILE. DO NOT EDIT! 645 fontsonymisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 646 pname = "font-sony-misc"; 647 - version = "1.0.3"; 648 builder = ./builder.sh; 649 src = fetchurl { 650 - url = "mirror://xorg/individual/font/font-sony-misc-1.0.3.tar.bz2"; 651 - sha256 = "1xfgcx4gsgik5mkgkca31fj3w72jw9iw76qyrajrsz1lp8ka6hr0"; 652 }; 653 hardeningDisable = [ "bindnow" "relro" ]; 654 strictDeps = true; ··· 662 # THIS IS A GENERATED FILE. DO NOT EDIT! 663 fontsunmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 664 pname = "font-sun-misc"; 665 - version = "1.0.3"; 666 builder = ./builder.sh; 667 src = fetchurl { 668 - url = "mirror://xorg/individual/font/font-sun-misc-1.0.3.tar.bz2"; 669 - sha256 = "1q6jcqrffg9q5f5raivzwx9ffvf7r11g6g0b125na1bhpz5ly7s8"; 670 }; 671 hardeningDisable = [ "bindnow" "relro" ]; 672 strictDeps = true; ··· 696 # THIS IS A GENERATED FILE. DO NOT EDIT! 697 fontutil = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 698 pname = "font-util"; 699 - version = "1.3.3"; 700 builder = ./builder.sh; 701 src = fetchurl { 702 - url = "mirror://xorg/individual/font/font-util-1.3.3.tar.xz"; 703 - sha256 = "1lpb5qd2drilql4wl644m682hvmv67hdbbisnrm0ah4wfy8ci4g7"; 704 }; 705 hardeningDisable = [ "bindnow" "relro" ]; 706 strictDeps = true; ··· 712 # THIS IS A GENERATED FILE. DO NOT EDIT! 713 fontwinitzkicyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 714 pname = "font-winitzki-cyrillic"; 715 - version = "1.0.3"; 716 builder = ./builder.sh; 717 src = fetchurl { 718 - url = "mirror://xorg/individual/font/font-winitzki-cyrillic-1.0.3.tar.bz2"; 719 - sha256 = "181n1bgq8vxfxqicmy1jpm1hnr6gwn1kdhl6hr4frjigs1ikpldb"; 720 }; 721 hardeningDisable = [ "bindnow" "relro" ]; 722 strictDeps = true; ··· 730 # THIS IS A GENERATED FILE. DO NOT EDIT! 731 fontxfree86type1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 732 pname = "font-xfree86-type1"; 733 - version = "1.0.4"; 734 builder = ./builder.sh; 735 src = fetchurl { 736 - url = "mirror://xorg/individual/font/font-xfree86-type1-1.0.4.tar.bz2"; 737 - sha256 = "0jp3zc0qfdaqfkgzrb44vi9vi0a8ygb35wp082yz7rvvxhmg9sya"; 738 }; 739 hardeningDisable = [ "bindnow" "relro" ]; 740 strictDeps = true; ··· 764 # THIS IS A GENERATED FILE. DO NOT EDIT! 765 iceauth = callPackage ({ stdenv, pkg-config, fetchurl, libICE, xorgproto }: stdenv.mkDerivation { 766 pname = "iceauth"; 767 - version = "1.0.8"; 768 builder = ./builder.sh; 769 src = fetchurl { 770 - url = "mirror://xorg/individual/app/iceauth-1.0.8.tar.bz2"; 771 - sha256 = "1ik0mdidmyvy48hn8p2hwvf3535rf3m96hhf0mvcqrbj44x23vp6"; 772 }; 773 hardeningDisable = [ "bindnow" "relro" ]; 774 strictDeps = true; ··· 780 # THIS IS A GENERATED FILE. DO NOT EDIT! 781 ico = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 782 pname = "ico"; 783 - version = "1.0.5"; 784 builder = ./builder.sh; 785 src = fetchurl { 786 - url = "mirror://xorg/individual/app/ico-1.0.5.tar.bz2"; 787 - sha256 = "0gvpwfk9kvlfn631dgizc45qc2qqjn9pavdp2q7qb3drkvr64fyp"; 788 }; 789 hardeningDisable = [ "bindnow" "relro" ]; 790 strictDeps = true; ··· 1424 version = "0.4"; 1425 builder = ./builder.sh; 1426 src = fetchurl { 1427 - url = "https://xcb.freedesktop.org/dist/libpthread-stubs-0.4.tar.bz2"; 1428 sha256 = "0cz7s9w8lqgzinicd4g36rjg08zhsbyngh0w68c3np8nlc8mkl74"; 1429 }; 1430 hardeningDisable = [ "bindnow" "relro" ]; ··· 1501 # THIS IS A GENERATED FILE. DO NOT EDIT! 1502 listres = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXmu, xorgproto, libXt }: stdenv.mkDerivation { 1503 pname = "listres"; 1504 - version = "1.0.4"; 1505 builder = ./builder.sh; 1506 src = fetchurl { 1507 - url = "mirror://xorg/individual/app/listres-1.0.4.tar.bz2"; 1508 - sha256 = "041bxkvv6f92sm3hhm977c4gdqdv5r1jyxjqcqfi8vkrg3s2j4ka"; 1509 }; 1510 hardeningDisable = [ "bindnow" "relro" ]; 1511 strictDeps = true; ··· 1581 # THIS IS A GENERATED FILE. DO NOT EDIT! 1582 oclock = callPackage ({ stdenv, pkg-config, fetchurl, libxkbfile, libX11, libXext, libXmu, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 1583 pname = "oclock"; 1584 - version = "1.0.4"; 1585 builder = ./builder.sh; 1586 src = fetchurl { 1587 - url = "mirror://xorg/individual/app/oclock-1.0.4.tar.bz2"; 1588 - sha256 = "1zmfzfmdp42nvapf0qz1bc3i3waq5sjrpkgfw64qs4nmq30wy86c"; 1589 }; 1590 hardeningDisable = [ "bindnow" "relro" ]; 1591 strictDeps = true; ··· 1597 # THIS IS A GENERATED FILE. DO NOT EDIT! 1598 sessreg = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto }: stdenv.mkDerivation { 1599 pname = "sessreg"; 1600 - version = "1.1.2"; 1601 builder = ./builder.sh; 1602 src = fetchurl { 1603 - url = "mirror://xorg/individual/app/sessreg-1.1.2.tar.bz2"; 1604 - sha256 = "0crczl25zynkrslmm8sjaxszhrh4i33m7h5fg4wfdb3k8aarxjyz"; 1605 }; 1606 hardeningDisable = [ "bindnow" "relro" ]; 1607 strictDeps = true; ··· 1611 }) {}; 1612 1613 # THIS IS A GENERATED FILE. DO NOT EDIT! 1614 - setxkbmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile }: stdenv.mkDerivation { 1615 pname = "setxkbmap"; 1616 - version = "1.3.2"; 1617 builder = ./builder.sh; 1618 src = fetchurl { 1619 - url = "mirror://xorg/individual/app/setxkbmap-1.3.2.tar.bz2"; 1620 - sha256 = "1xdrxs65v7d0rw1yaz0vsz55w4hxym99216p085ya9978j379wlg"; 1621 }; 1622 hardeningDisable = [ "bindnow" "relro" ]; 1623 strictDeps = true; 1624 nativeBuildInputs = [ pkg-config ]; 1625 - buildInputs = [ libX11 libxkbfile ]; 1626 meta.platforms = lib.platforms.unix; 1627 }) {}; 1628 1629 # THIS IS A GENERATED FILE. DO NOT EDIT! 1630 smproxy = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libSM, libXmu, libXt }: stdenv.mkDerivation { 1631 pname = "smproxy"; 1632 - version = "1.0.6"; 1633 builder = ./builder.sh; 1634 src = fetchurl { 1635 - url = "mirror://xorg/individual/app/smproxy-1.0.6.tar.bz2"; 1636 - sha256 = "0rkjyzmsdqmlrkx8gy2j4q6iksk58hcc92xzdprkf8kml9ar3wbc"; 1637 }; 1638 hardeningDisable = [ "bindnow" "relro" ]; 1639 strictDeps = true; ··· 1645 # THIS IS A GENERATED FILE. DO NOT EDIT! 1646 transset = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 1647 pname = "transset"; 1648 - version = "1.0.2"; 1649 builder = ./builder.sh; 1650 src = fetchurl { 1651 - url = "mirror://xorg/individual/app/transset-1.0.2.tar.bz2"; 1652 - sha256 = "088v8p0yfn4r3azabp6662hqikfs2gjb9xmjjd45gnngwwp19b2b"; 1653 }; 1654 hardeningDisable = [ "bindnow" "relro" ]; 1655 strictDeps = true; ··· 1659 }) {}; 1660 1661 # THIS IS A GENERATED FILE. DO NOT EDIT! 1662 - twm = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libSM, libX11, libXext, libXmu, xorgproto, libXt }: stdenv.mkDerivation { 1663 pname = "twm"; 1664 - version = "1.0.10"; 1665 builder = ./builder.sh; 1666 src = fetchurl { 1667 - url = "mirror://xorg/individual/app/twm-1.0.10.tar.bz2"; 1668 - sha256 = "1ms5cj1w3g26zg6bxdv1j9hl0pxr4300qnv003cz1q3cl7ffljb4"; 1669 }; 1670 hardeningDisable = [ "bindnow" "relro" ]; 1671 strictDeps = true; 1672 nativeBuildInputs = [ pkg-config ]; 1673 - buildInputs = [ libICE libSM libX11 libXext libXmu xorgproto libXt ]; 1674 meta.platforms = lib.platforms.unix; 1675 }) {}; 1676 ··· 1693 # THIS IS A GENERATED FILE. DO NOT EDIT! 1694 viewres = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXmu, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 1695 pname = "viewres"; 1696 - version = "1.0.5"; 1697 builder = ./builder.sh; 1698 src = fetchurl { 1699 - url = "mirror://xorg/individual/app/viewres-1.0.5.tar.bz2"; 1700 - sha256 = "1mz319kfmvcrdpi22dmdr91mif1j0j3ck1f8mmnz5g1r9kl1in2y"; 1701 }; 1702 hardeningDisable = [ "bindnow" "relro" ]; 1703 strictDeps = true; ··· 1773 # THIS IS A GENERATED FILE. DO NOT EDIT! 1774 xcalc = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 1775 pname = "xcalc"; 1776 - version = "1.1.0"; 1777 builder = ./builder.sh; 1778 src = fetchurl { 1779 - url = "mirror://xorg/individual/app/xcalc-1.1.0.tar.bz2"; 1780 - sha256 = "1sxmlcb0sb3h4z05kl5l0kxnhrc0h8c74p9m3zdc7bv58jaldmym"; 1781 }; 1782 hardeningDisable = [ "bindnow" "relro" ]; 1783 strictDeps = true; ··· 1808 version = "0.4.1"; 1809 builder = ./builder.sh; 1810 src = fetchurl { 1811 - url = "https://xcb.freedesktop.org/dist/xcb-util-0.4.1.tar.xz"; 1812 sha256 = "04p54r0zjc44fpw1hdy4rhygv37sx2vr2lllxjihykz5v2xkpgjs"; 1813 }; 1814 hardeningDisable = [ "bindnow" "relro" ]; ··· 1824 version = "0.1.3"; 1825 builder = ./builder.sh; 1826 src = fetchurl { 1827 - url = "https://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.3.tar.bz2"; 1828 sha256 = "0krr4rcw6r42cncinzvzzdqnmxk3nrgpnadyg2h8k9x10q3hm885"; 1829 }; 1830 hardeningDisable = [ "bindnow" "relro" ]; ··· 1840 version = "1.0.1"; 1841 builder = ./builder.sh; 1842 src = fetchurl { 1843 - url = "https://xcb.freedesktop.org/dist/xcb-util-errors-1.0.1.tar.xz"; 1844 sha256 = "0mzkh3xj1n690dw8hrdhyjykd71ib0ls9n5cgf9asna2k1xwha2n"; 1845 }; 1846 hardeningDisable = [ "bindnow" "relro" ]; ··· 1856 version = "0.4.1"; 1857 builder = ./builder.sh; 1858 src = fetchurl { 1859 - url = "https://xcb.freedesktop.org/dist/xcb-util-image-0.4.1.tar.xz"; 1860 sha256 = "0g8dwknrlz96k176qxh8ar84x9kpppci9b978zyp24nvvbjqxbfc"; 1861 }; 1862 hardeningDisable = [ "bindnow" "relro" ]; ··· 1872 version = "0.4.1"; 1873 builder = ./builder.sh; 1874 src = fetchurl { 1875 - url = "https://xcb.freedesktop.org/dist/xcb-util-keysyms-0.4.1.tar.xz"; 1876 sha256 = "0f66snk179hmp8ppgv1zp9y7pl1vzn52znpikm1fsaj1ji90l9kw"; 1877 }; 1878 hardeningDisable = [ "bindnow" "relro" ]; ··· 1888 version = "0.3.10"; 1889 builder = ./builder.sh; 1890 src = fetchurl { 1891 - url = "https://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.10.tar.xz"; 1892 sha256 = "1fh4dnlwlqyccrhmmwlv082a7mxc7ss7vmzmp7xxp39dwbqd859y"; 1893 }; 1894 hardeningDisable = [ "bindnow" "relro" ]; ··· 1904 version = "0.4.2"; 1905 builder = ./builder.sh; 1906 src = fetchurl { 1907 - url = "https://xcb.freedesktop.org/dist/xcb-util-wm-0.4.2.tar.xz"; 1908 sha256 = "02wai17mxfbvlnj4l4bjbvah97rccdivzvd7mrznhr32s0hlxhv2"; 1909 }; 1910 hardeningDisable = [ "bindnow" "relro" ]; ··· 1917 # THIS IS A GENERATED FILE. DO NOT EDIT! 1918 xclock = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXft, libxkbfile, libXmu, xorgproto, libXrender, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 1919 pname = "xclock"; 1920 - version = "1.0.9"; 1921 builder = ./builder.sh; 1922 src = fetchurl { 1923 - url = "mirror://xorg/individual/app/xclock-1.0.9.tar.bz2"; 1924 - sha256 = "1fr3q4rszgx7x2zxy2ip592a3fgx20hfwac49p2l5b7jqsr1ying"; 1925 }; 1926 hardeningDisable = [ "bindnow" "relro" ]; 1927 strictDeps = true; ··· 1933 # THIS IS A GENERATED FILE. DO NOT EDIT! 1934 xcmsdb = callPackage ({ stdenv, pkg-config, fetchurl, libX11 }: stdenv.mkDerivation { 1935 pname = "xcmsdb"; 1936 - version = "1.0.5"; 1937 builder = ./builder.sh; 1938 src = fetchurl { 1939 - url = "mirror://xorg/individual/app/xcmsdb-1.0.5.tar.bz2"; 1940 - sha256 = "1ik7gzlp2igz183x70883000ygp99r20x3aah6xhaslbpdhm6n75"; 1941 }; 1942 hardeningDisable = [ "bindnow" "relro" ]; 1943 strictDeps = true; ··· 1947 }) {}; 1948 1949 # THIS IS A GENERATED FILE. DO NOT EDIT! 1950 - xcompmgr = callPackage ({ stdenv, pkg-config, fetchurl, libXcomposite, libXdamage, libXext, libXfixes, libXrender }: stdenv.mkDerivation { 1951 pname = "xcompmgr"; 1952 - version = "1.1.8"; 1953 builder = ./builder.sh; 1954 src = fetchurl { 1955 - url = "mirror://xorg/individual/app/xcompmgr-1.1.8.tar.bz2"; 1956 - sha256 = "0hvjkanrdlvk3ln5a1jx3c9ggziism2jr1na7jl3zyk0y3sdm28b"; 1957 }; 1958 hardeningDisable = [ "bindnow" "relro" ]; 1959 strictDeps = true; 1960 nativeBuildInputs = [ pkg-config ]; 1961 - buildInputs = [ libXcomposite libXdamage libXext libXfixes libXrender ]; 1962 meta.platforms = lib.platforms.unix; 1963 }) {}; 1964 1965 # THIS IS A GENERATED FILE. DO NOT EDIT! 1966 xconsole = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 1967 pname = "xconsole"; 1968 - version = "1.0.7"; 1969 builder = ./builder.sh; 1970 src = fetchurl { 1971 - url = "mirror://xorg/individual/app/xconsole-1.0.7.tar.bz2"; 1972 - sha256 = "1q2ib1626i5da0nda09sp3vzppjrcn82fff83cw7hwr0vy14h56i"; 1973 }; 1974 hardeningDisable = [ "bindnow" "relro" ]; 1975 strictDeps = true; ··· 1979 }) {}; 1980 1981 # THIS IS A GENERATED FILE. DO NOT EDIT! 1982 - xcursorgen = callPackage ({ stdenv, pkg-config, fetchurl, libpng, libX11, libXcursor }: stdenv.mkDerivation { 1983 pname = "xcursorgen"; 1984 - version = "1.0.7"; 1985 builder = ./builder.sh; 1986 src = fetchurl { 1987 - url = "mirror://xorg/individual/app/xcursorgen-1.0.7.tar.bz2"; 1988 - sha256 = "0ggbv084cavp52hjgcz3vdj0g018axs0m23c03lpc5sgn92gidim"; 1989 }; 1990 hardeningDisable = [ "bindnow" "relro" ]; 1991 strictDeps = true; 1992 nativeBuildInputs = [ pkg-config ]; 1993 - buildInputs = [ libpng libX11 libXcursor ]; 1994 meta.platforms = lib.platforms.unix; 1995 }) {}; 1996 ··· 2013 # THIS IS A GENERATED FILE. DO NOT EDIT! 2014 xdm = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXau, libXaw, libXdmcp, libXext, libXft, libXinerama, libXmu, libXpm, xorgproto, libXrender, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 2015 pname = "xdm"; 2016 - version = "1.1.12"; 2017 builder = ./builder.sh; 2018 src = fetchurl { 2019 - url = "mirror://xorg/individual/app/xdm-1.1.12.tar.bz2"; 2020 - sha256 = "1x17hdymf6rd8jmh4n1sd4g5a8ayr5w94nwjw84qs2fs5pvq7lhd"; 2021 }; 2022 hardeningDisable = [ "bindnow" "relro" ]; 2023 strictDeps = true; ··· 2029 # THIS IS A GENERATED FILE. DO NOT EDIT! 2030 xdpyinfo = callPackage ({ stdenv, pkg-config, fetchurl, libdmx, libX11, libxcb, libXcomposite, libXext, libXi, libXinerama, xorgproto, libXrender, libXtst, libXxf86dga, libXxf86misc, libXxf86vm }: stdenv.mkDerivation { 2031 pname = "xdpyinfo"; 2032 - version = "1.3.2"; 2033 builder = ./builder.sh; 2034 src = fetchurl { 2035 - url = "mirror://xorg/individual/app/xdpyinfo-1.3.2.tar.bz2"; 2036 - sha256 = "0ldgrj4w2fa8jng4b3f3biaj0wyn8zvya88pnk70d7k12pcqw8rh"; 2037 }; 2038 hardeningDisable = [ "bindnow" "relro" ]; 2039 strictDeps = true; ··· 2045 # THIS IS A GENERATED FILE. DO NOT EDIT! 2046 xdriinfo = callPackage ({ stdenv, pkg-config, fetchurl, libGL, xorgproto, libX11 }: stdenv.mkDerivation { 2047 pname = "xdriinfo"; 2048 - version = "1.0.6"; 2049 builder = ./builder.sh; 2050 src = fetchurl { 2051 - url = "mirror://xorg/individual/app/xdriinfo-1.0.6.tar.bz2"; 2052 - sha256 = "0lcx8h3zd11m4w8wf7dyp89826d437iz78cyrix436bqx31x5k6r"; 2053 }; 2054 hardeningDisable = [ "bindnow" "relro" ]; 2055 strictDeps = true; ··· 2061 # THIS IS A GENERATED FILE. DO NOT EDIT! 2062 xev = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXrandr }: stdenv.mkDerivation { 2063 pname = "xev"; 2064 - version = "1.2.4"; 2065 builder = ./builder.sh; 2066 src = fetchurl { 2067 - url = "mirror://xorg/individual/app/xev-1.2.4.tar.bz2"; 2068 - sha256 = "1ql592pdhddhkipkrsxn929y9l2nn02a5fh2z3dx47kmzs5y006p"; 2069 }; 2070 hardeningDisable = [ "bindnow" "relro" ]; 2071 strictDeps = true; ··· 2909 # THIS IS A GENERATED FILE. DO NOT EDIT! 2910 xfd = callPackage ({ stdenv, pkg-config, fetchurl, libxkbfile, fontconfig, libXaw, libXft, libXmu, xorgproto, libXrender, libXt, gettext, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 2911 pname = "xfd"; 2912 - version = "1.1.3"; 2913 builder = ./builder.sh; 2914 src = fetchurl { 2915 - url = "mirror://xorg/individual/app/xfd-1.1.3.tar.bz2"; 2916 - sha256 = "0n6r1v8sm0z0ycqch035xpm46nv5v4mav3kxh36883l3ln5r6bqr"; 2917 }; 2918 hardeningDisable = [ "bindnow" "relro" ]; 2919 strictDeps = true; ··· 2923 }) {}; 2924 2925 # THIS IS A GENERATED FILE. DO NOT EDIT! 2926 - xfontsel = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 2927 pname = "xfontsel"; 2928 - version = "1.0.6"; 2929 builder = ./builder.sh; 2930 src = fetchurl { 2931 - url = "mirror://xorg/individual/app/xfontsel-1.0.6.tar.bz2"; 2932 - sha256 = "0700lf6hx7dg88wq1yll7zjvf9gbwh06xff20yffkxb289y0pai5"; 2933 }; 2934 hardeningDisable = [ "bindnow" "relro" ]; 2935 strictDeps = true; 2936 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 2937 - buildInputs = [ libX11 libXaw libXmu libXt ]; 2938 meta.platforms = lib.platforms.unix; 2939 }) {}; 2940 2941 # THIS IS A GENERATED FILE. DO NOT EDIT! 2942 xfs = callPackage ({ stdenv, pkg-config, fetchurl, libXfont2, xorgproto, xtrans }: stdenv.mkDerivation { 2943 pname = "xfs"; 2944 - version = "1.2.0"; 2945 builder = ./builder.sh; 2946 src = fetchurl { 2947 - url = "mirror://xorg/individual/app/xfs-1.2.0.tar.bz2"; 2948 - sha256 = "0q4q4rbzx159sfn2n52y039fki6nc6a39qdfxa78yjc3aw8i48nv"; 2949 }; 2950 hardeningDisable = [ "bindnow" "relro" ]; 2951 strictDeps = true; ··· 2957 # THIS IS A GENERATED FILE. DO NOT EDIT! 2958 xfsinfo = callPackage ({ stdenv, pkg-config, fetchurl, libFS, xorgproto }: stdenv.mkDerivation { 2959 pname = "xfsinfo"; 2960 - version = "1.0.6"; 2961 builder = ./builder.sh; 2962 src = fetchurl { 2963 - url = "mirror://xorg/individual/app/xfsinfo-1.0.6.tar.bz2"; 2964 - sha256 = "1mmir5i7gm71xc0ba8vnizi4744vsd31hknhi4cmgvg6kadqngla"; 2965 }; 2966 hardeningDisable = [ "bindnow" "relro" ]; 2967 strictDeps = true; ··· 2973 # THIS IS A GENERATED FILE. DO NOT EDIT! 2974 xgamma = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXxf86vm }: stdenv.mkDerivation { 2975 pname = "xgamma"; 2976 - version = "1.0.6"; 2977 builder = ./builder.sh; 2978 src = fetchurl { 2979 - url = "mirror://xorg/individual/app/xgamma-1.0.6.tar.bz2"; 2980 - sha256 = "1lr2nb1fhg5fk2fchqxdxyl739602ggwhmgl2wiv5c8qbidw7w8f"; 2981 }; 2982 hardeningDisable = [ "bindnow" "relro" ]; 2983 strictDeps = true; ··· 2989 # THIS IS A GENERATED FILE. DO NOT EDIT! 2990 xgc = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 2991 pname = "xgc"; 2992 - version = "1.0.5"; 2993 builder = ./builder.sh; 2994 src = fetchurl { 2995 - url = "mirror://xorg/individual/app/xgc-1.0.5.tar.bz2"; 2996 - sha256 = "0pigvjd3i9fchmj1inqy151aafz3dr0vq1h2zizdb2imvadqv0hl"; 2997 }; 2998 hardeningDisable = [ "bindnow" "relro" ]; 2999 strictDeps = true; ··· 3021 # THIS IS A GENERATED FILE. DO NOT EDIT! 3022 xinit = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 3023 pname = "xinit"; 3024 - version = "1.4.1"; 3025 builder = ./builder.sh; 3026 src = fetchurl { 3027 - url = "mirror://xorg/individual/app/xinit-1.4.1.tar.bz2"; 3028 - sha256 = "1fdbakx59vyh474skjydj1bbglpby3y03nl7mxn0z9v8gdhqz6yy"; 3029 }; 3030 hardeningDisable = [ "bindnow" "relro" ]; 3031 strictDeps = true; ··· 3037 # THIS IS A GENERATED FILE. DO NOT EDIT! 3038 xinput = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXi, libXinerama, libXrandr }: stdenv.mkDerivation { 3039 pname = "xinput"; 3040 - version = "1.6.3"; 3041 builder = ./builder.sh; 3042 src = fetchurl { 3043 - url = "mirror://xorg/individual/app/xinput-1.6.3.tar.bz2"; 3044 - sha256 = "1vb6xdd1xmk5f7pwc5zcbxfray5sf1vbnscqwf2yl8lv7gfq38im"; 3045 }; 3046 hardeningDisable = [ "bindnow" "relro" ]; 3047 strictDeps = true; ··· 3069 # THIS IS A GENERATED FILE. DO NOT EDIT! 3070 xkbevd = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile }: stdenv.mkDerivation { 3071 pname = "xkbevd"; 3072 - version = "1.1.4"; 3073 builder = ./builder.sh; 3074 src = fetchurl { 3075 - url = "mirror://xorg/individual/app/xkbevd-1.1.4.tar.bz2"; 3076 - sha256 = "0sprjx8i86ljk0l7ldzbz2xlk8916z5zh78cafjv8k1a63js4c14"; 3077 }; 3078 hardeningDisable = [ "bindnow" "relro" ]; 3079 strictDeps = true; ··· 3085 # THIS IS A GENERATED FILE. DO NOT EDIT! 3086 xkbprint = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile, xorgproto }: stdenv.mkDerivation { 3087 pname = "xkbprint"; 3088 - version = "1.0.4"; 3089 builder = ./builder.sh; 3090 src = fetchurl { 3091 - url = "mirror://xorg/individual/app/xkbprint-1.0.4.tar.bz2"; 3092 - sha256 = "04iyv5z8aqhabv7wcpvbvq0ji0jrz1666vw6gvxkvl7szswalgqb"; 3093 }; 3094 hardeningDisable = [ "bindnow" "relro" ]; 3095 strictDeps = true; ··· 3101 # THIS IS A GENERATED FILE. DO NOT EDIT! 3102 xkbutils = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXaw, libXt }: stdenv.mkDerivation { 3103 pname = "xkbutils"; 3104 - version = "1.0.4"; 3105 builder = ./builder.sh; 3106 src = fetchurl { 3107 - url = "mirror://xorg/individual/app/xkbutils-1.0.4.tar.bz2"; 3108 - sha256 = "0c412isxl65wplhl7nsk12vxlri29lk48g3p52hbrs3m0awqm8fj"; 3109 }; 3110 hardeningDisable = [ "bindnow" "relro" ]; 3111 strictDeps = true; ··· 3133 # THIS IS A GENERATED FILE. DO NOT EDIT! 3134 xkill = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation { 3135 pname = "xkill"; 3136 - version = "1.0.5"; 3137 builder = ./builder.sh; 3138 src = fetchurl { 3139 - url = "mirror://xorg/individual/app/xkill-1.0.5.tar.bz2"; 3140 - sha256 = "0szzd9nzn0ybkhnfyizb876irwnjsnb78rcaxx6prb71jmmbpw65"; 3141 }; 3142 hardeningDisable = [ "bindnow" "relro" ]; 3143 strictDeps = true; ··· 3149 # THIS IS A GENERATED FILE. DO NOT EDIT! 3150 xload = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, gettext, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3151 pname = "xload"; 3152 - version = "1.1.3"; 3153 builder = ./builder.sh; 3154 src = fetchurl { 3155 - url = "mirror://xorg/individual/app/xload-1.1.3.tar.bz2"; 3156 - sha256 = "01sr6yd6yhyyfgn88l867w6h9dn5ikcynaz5rwji6xqxhw1lhkpk"; 3157 }; 3158 hardeningDisable = [ "bindnow" "relro" ]; 3159 strictDeps = true; ··· 3165 # THIS IS A GENERATED FILE. DO NOT EDIT! 3166 xlsatoms = callPackage ({ stdenv, pkg-config, fetchurl, libxcb }: stdenv.mkDerivation { 3167 pname = "xlsatoms"; 3168 - version = "1.1.3"; 3169 builder = ./builder.sh; 3170 src = fetchurl { 3171 - url = "mirror://xorg/individual/app/xlsatoms-1.1.3.tar.bz2"; 3172 - sha256 = "10m3a046jvaw5ywx4y65kl84lsxqan70gww1g1r7cf96ijaqz1jp"; 3173 }; 3174 hardeningDisable = [ "bindnow" "relro" ]; 3175 strictDeps = true; ··· 3181 # THIS IS A GENERATED FILE. DO NOT EDIT! 3182 xlsclients = callPackage ({ stdenv, pkg-config, fetchurl, libxcb }: stdenv.mkDerivation { 3183 pname = "xlsclients"; 3184 - version = "1.1.4"; 3185 builder = ./builder.sh; 3186 src = fetchurl { 3187 - url = "mirror://xorg/individual/app/xlsclients-1.1.4.tar.bz2"; 3188 - sha256 = "1h8931sn34mcip6vpi4v7hdmr1r58gkbw4s2p97w98kykks2lgvp"; 3189 }; 3190 hardeningDisable = [ "bindnow" "relro" ]; 3191 strictDeps = true; ··· 3197 # THIS IS A GENERATED FILE. DO NOT EDIT! 3198 xlsfonts = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 3199 pname = "xlsfonts"; 3200 - version = "1.0.6"; 3201 builder = ./builder.sh; 3202 src = fetchurl { 3203 - url = "mirror://xorg/individual/app/xlsfonts-1.0.6.tar.bz2"; 3204 - sha256 = "0s6kxgv78chkwsqmhw929f4pf91gq63f4yvixxnan1h00cx0pf49"; 3205 }; 3206 hardeningDisable = [ "bindnow" "relro" ]; 3207 strictDeps = true; ··· 3213 # THIS IS A GENERATED FILE. DO NOT EDIT! 3214 xmag = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3215 pname = "xmag"; 3216 - version = "1.0.6"; 3217 builder = ./builder.sh; 3218 src = fetchurl { 3219 - url = "mirror://xorg/individual/app/xmag-1.0.6.tar.bz2"; 3220 - sha256 = "0qg12ifbbk9n8fh4jmyb625cknn8ssj86chd6zwdiqjin8ivr8l7"; 3221 }; 3222 hardeningDisable = [ "bindnow" "relro" ]; 3223 strictDeps = true; ··· 3229 # THIS IS A GENERATED FILE. DO NOT EDIT! 3230 xmessage = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3231 pname = "xmessage"; 3232 - version = "1.0.5"; 3233 builder = ./builder.sh; 3234 src = fetchurl { 3235 - url = "mirror://xorg/individual/app/xmessage-1.0.5.tar.bz2"; 3236 - sha256 = "0a90kfm0qz8cn2pbpqfyqrc5s9bfvvy14nj848ynvw56wy0zng9p"; 3237 }; 3238 hardeningDisable = [ "bindnow" "relro" ]; 3239 strictDeps = true; ··· 3245 # THIS IS A GENERATED FILE. DO NOT EDIT! 3246 xmodmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 3247 pname = "xmodmap"; 3248 - version = "1.0.10"; 3249 builder = ./builder.sh; 3250 src = fetchurl { 3251 - url = "mirror://xorg/individual/app/xmodmap-1.0.10.tar.bz2"; 3252 - sha256 = "0z28331i2pm16x671fa9qwsfqdmr6a43bzwmp0dm17a3sx0hjgs7"; 3253 }; 3254 hardeningDisable = [ "bindnow" "relro" ]; 3255 strictDeps = true; ··· 3357 # THIS IS A GENERATED FILE. DO NOT EDIT! 3358 xpr = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation { 3359 pname = "xpr"; 3360 - version = "1.0.5"; 3361 builder = ./builder.sh; 3362 src = fetchurl { 3363 - url = "mirror://xorg/individual/app/xpr-1.0.5.tar.bz2"; 3364 - sha256 = "07qy9lwjvxighcmg6qvjkgagad3wwvidrfx0jz85lgynz3qy0dmr"; 3365 }; 3366 hardeningDisable = [ "bindnow" "relro" ]; 3367 strictDeps = true; ··· 3389 # THIS IS A GENERATED FILE. DO NOT EDIT! 3390 xrandr = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXrandr, libXrender }: stdenv.mkDerivation { 3391 pname = "xrandr"; 3392 - version = "1.5.1"; 3393 builder = ./builder.sh; 3394 src = fetchurl { 3395 - url = "mirror://xorg/individual/app/xrandr-1.5.1.tar.xz"; 3396 - sha256 = "0ql75s1n3dm2m3g1ilb9l6hqh15r0v709bgghpwazy3jknpnvivv"; 3397 }; 3398 hardeningDisable = [ "bindnow" "relro" ]; 3399 strictDeps = true; ··· 3405 # THIS IS A GENERATED FILE. DO NOT EDIT! 3406 xrdb = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation { 3407 pname = "xrdb"; 3408 - version = "1.2.1"; 3409 builder = ./builder.sh; 3410 src = fetchurl { 3411 - url = "mirror://xorg/individual/app/xrdb-1.2.1.tar.bz2"; 3412 - sha256 = "1d78prd8sfszq2rwwlb32ksph4fymf988lp75aj8iysg44f06pag"; 3413 }; 3414 hardeningDisable = [ "bindnow" "relro" ]; 3415 strictDeps = true; ··· 3421 # THIS IS A GENERATED FILE. DO NOT EDIT! 3422 xrefresh = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 3423 pname = "xrefresh"; 3424 - version = "1.0.6"; 3425 builder = ./builder.sh; 3426 src = fetchurl { 3427 - url = "mirror://xorg/individual/app/xrefresh-1.0.6.tar.bz2"; 3428 - sha256 = "0lv3rlshh7s0z3aqx5ahnnf8cl082m934bk7gv881mz8nydznz98"; 3429 }; 3430 hardeningDisable = [ "bindnow" "relro" ]; 3431 strictDeps = true; ··· 3453 # THIS IS A GENERATED FILE. DO NOT EDIT! 3454 xsetroot = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xbitmaps, libXcursor, libXmu, xorgproto }: stdenv.mkDerivation { 3455 pname = "xsetroot"; 3456 - version = "1.1.2"; 3457 builder = ./builder.sh; 3458 src = fetchurl { 3459 - url = "mirror://xorg/individual/app/xsetroot-1.1.2.tar.bz2"; 3460 - sha256 = "0z21mqvmdl6rl63q77479wgkfygnll57liza1i3va7sr4fx45i0h"; 3461 }; 3462 hardeningDisable = [ "bindnow" "relro" ]; 3463 strictDeps = true; ··· 3467 }) {}; 3468 3469 # THIS IS A GENERATED FILE. DO NOT EDIT! 3470 - xsm = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libSM, libX11, libXaw, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3471 pname = "xsm"; 3472 - version = "1.0.4"; 3473 builder = ./builder.sh; 3474 src = fetchurl { 3475 - url = "mirror://xorg/individual/app/xsm-1.0.4.tar.bz2"; 3476 - sha256 = "09a4ss1fnrh1sgm21r4n5pivawf34paci3rn6mscyljf7a4vcd4r"; 3477 }; 3478 hardeningDisable = [ "bindnow" "relro" ]; 3479 strictDeps = true; 3480 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 3481 - buildInputs = [ libICE libSM libX11 libXaw libXt ]; 3482 meta.platforms = lib.platforms.unix; 3483 }) {}; 3484 3485 # THIS IS A GENERATED FILE. DO NOT EDIT! 3486 xstdcmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation { 3487 pname = "xstdcmap"; 3488 - version = "1.0.4"; 3489 builder = ./builder.sh; 3490 src = fetchurl { 3491 - url = "mirror://xorg/individual/app/xstdcmap-1.0.4.tar.bz2"; 3492 - sha256 = "12vgzsxv4rw25frkgjyli6w6hy10lgpvsx9wzw2v5l5a3qzqp286"; 3493 }; 3494 hardeningDisable = [ "bindnow" "relro" ]; 3495 strictDeps = true; ··· 3533 # THIS IS A GENERATED FILE. DO NOT EDIT! 3534 xvinfo = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXv }: stdenv.mkDerivation { 3535 pname = "xvinfo"; 3536 - version = "1.1.4"; 3537 builder = ./builder.sh; 3538 src = fetchurl { 3539 - url = "mirror://xorg/individual/app/xvinfo-1.1.4.tar.bz2"; 3540 - sha256 = "0gz7fvxavqlrqynpfbrm2nc9yx8h0ksnbnv34fj7n1q6cq6j4lq3"; 3541 }; 3542 hardeningDisable = [ "bindnow" "relro" ]; 3543 strictDeps = true; ··· 3549 # THIS IS A GENERATED FILE. DO NOT EDIT! 3550 xwd = callPackage ({ stdenv, pkg-config, fetchurl, libxkbfile, libX11, xorgproto }: stdenv.mkDerivation { 3551 pname = "xwd"; 3552 - version = "1.0.8"; 3553 builder = ./builder.sh; 3554 src = fetchurl { 3555 - url = "mirror://xorg/individual/app/xwd-1.0.8.tar.bz2"; 3556 - sha256 = "06q36fh55r62ms0igfxsanrn6gv8lh794q1bw9xzw51p2qs2papv"; 3557 }; 3558 hardeningDisable = [ "bindnow" "relro" ]; 3559 strictDeps = true; ··· 3565 # THIS IS A GENERATED FILE. DO NOT EDIT! 3566 xwininfo = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxcb, xorgproto }: stdenv.mkDerivation { 3567 pname = "xwininfo"; 3568 - version = "1.1.4"; 3569 builder = ./builder.sh; 3570 src = fetchurl { 3571 - url = "mirror://xorg/individual/app/xwininfo-1.1.4.tar.bz2"; 3572 - sha256 = "00avrpw4h5mr1klp41lv2j4dmq465v6l5kb5bhm4k5ml8sm9i543"; 3573 }; 3574 hardeningDisable = [ "bindnow" "relro" ]; 3575 strictDeps = true; ··· 3581 # THIS IS A GENERATED FILE. DO NOT EDIT! 3582 xwud = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 3583 pname = "xwud"; 3584 - version = "1.0.5"; 3585 builder = ./builder.sh; 3586 src = fetchurl { 3587 - url = "mirror://xorg/individual/app/xwud-1.0.5.tar.bz2"; 3588 - sha256 = "1a8hdgy40smvblnh3s9f0vkqckl68nmivx7d48zk34m8z18p16cr"; 3589 }; 3590 hardeningDisable = [ "bindnow" "relro" ]; 3591 strictDeps = true;
··· 8 # THIS IS A GENERATED FILE. DO NOT EDIT! 9 appres = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXt }: stdenv.mkDerivation { 10 pname = "appres"; 11 + version = "1.0.6"; 12 builder = ./builder.sh; 13 src = fetchurl { 14 + url = "mirror://xorg/individual/app/appres-1.0.6.tar.xz"; 15 + sha256 = "02sr4f1bm3y1w24gsvjfzvbpac1kgkq27v1s68q87bd1l3i5f8lb"; 16 }; 17 hardeningDisable = [ "bindnow" "relro" ]; 18 strictDeps = true; ··· 27 version = "1.1.1"; 28 builder = ./builder.sh; 29 src = fetchurl { 30 + url = "mirror://xorg/individual/util/bdftopcf-1.1.1.tar.xz"; 31 sha256 = "026rzs92h9jsc7r0kvvyvwhm22q0805gp38rs14x6ghg7kam7j8i"; 32 }; 33 hardeningDisable = [ "bindnow" "relro" ]; ··· 40 # THIS IS A GENERATED FILE. DO NOT EDIT! 41 bitmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, xbitmaps, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 42 pname = "bitmap"; 43 + version = "1.1.0"; 44 builder = ./builder.sh; 45 src = fetchurl { 46 + url = "mirror://xorg/individual/app/bitmap-1.1.0.tar.xz"; 47 + sha256 = "141nhfmrg14axvix2mc34vfs07gmki3k14qq1vqy7v7f5yf8g1lf"; 48 }; 49 hardeningDisable = [ "bindnow" "relro" ]; 50 strictDeps = true; ··· 56 # THIS IS A GENERATED FILE. DO NOT EDIT! 57 editres = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 58 pname = "editres"; 59 + version = "1.0.8"; 60 builder = ./builder.sh; 61 src = fetchurl { 62 + url = "mirror://xorg/individual/app/editres-1.0.8.tar.xz"; 63 + sha256 = "1ydn32x9qh2zkn90w6nfv33gcq75z67w93bakkykadl8n7zmvkw3"; 64 }; 65 hardeningDisable = [ "bindnow" "relro" ]; 66 strictDeps = true; ··· 72 # THIS IS A GENERATED FILE. DO NOT EDIT! 73 encodings = callPackage ({ stdenv, pkg-config, fetchurl, mkfontscale }: stdenv.mkDerivation { 74 pname = "encodings"; 75 + version = "1.0.7"; 76 builder = ./builder.sh; 77 src = fetchurl { 78 + url = "mirror://xorg/individual/font/encodings-1.0.7.tar.xz"; 79 + sha256 = "193hxaygxy2msmf8cyps8jdi0kxga84hj47qv7diqlhn7gsajf9s"; 80 }; 81 hardeningDisable = [ "bindnow" "relro" ]; 82 strictDeps = true; ··· 88 # THIS IS A GENERATED FILE. DO NOT EDIT! 89 fontadobe100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 90 pname = "font-adobe-100dpi"; 91 + version = "1.0.4"; 92 builder = ./builder.sh; 93 src = fetchurl { 94 + url = "mirror://xorg/individual/font/font-adobe-100dpi-1.0.4.tar.xz"; 95 + sha256 = "1kwwbaiqnfm3pcysy9gw0g9xhpgmhjcd6clp7zajhqq5br2gyymn"; 96 }; 97 hardeningDisable = [ "bindnow" "relro" ]; 98 strictDeps = true; ··· 106 # THIS IS A GENERATED FILE. DO NOT EDIT! 107 fontadobe75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 108 pname = "font-adobe-75dpi"; 109 + version = "1.0.4"; 110 builder = ./builder.sh; 111 src = fetchurl { 112 + url = "mirror://xorg/individual/font/font-adobe-75dpi-1.0.4.tar.xz"; 113 + sha256 = "04drk4wi176524lxjwfrnkr3dwz1hysabqfajpj6klfypqnsd08j"; 114 }; 115 hardeningDisable = [ "bindnow" "relro" ]; 116 strictDeps = true; ··· 124 # THIS IS A GENERATED FILE. DO NOT EDIT! 125 fontadobeutopia100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 126 pname = "font-adobe-utopia-100dpi"; 127 + version = "1.0.5"; 128 builder = ./builder.sh; 129 src = fetchurl { 130 + url = "mirror://xorg/individual/font/font-adobe-utopia-100dpi-1.0.5.tar.xz"; 131 + sha256 = "0jq27gs5xpwkghggply5pr215lmamrnpr6x5iia76schg8lyr17v"; 132 }; 133 hardeningDisable = [ "bindnow" "relro" ]; 134 strictDeps = true; ··· 142 # THIS IS A GENERATED FILE. DO NOT EDIT! 143 fontadobeutopia75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 144 pname = "font-adobe-utopia-75dpi"; 145 + version = "1.0.5"; 146 builder = ./builder.sh; 147 src = fetchurl { 148 + url = "mirror://xorg/individual/font/font-adobe-utopia-75dpi-1.0.5.tar.xz"; 149 + sha256 = "0q3pg4imdbwwiq2g8a1rypjrgmb33n0r5j9qqnh4ywnh69cj89m7"; 150 }; 151 hardeningDisable = [ "bindnow" "relro" ]; 152 strictDeps = true; ··· 160 # THIS IS A GENERATED FILE. DO NOT EDIT! 161 fontadobeutopiatype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 162 pname = "font-adobe-utopia-type1"; 163 + version = "1.0.5"; 164 builder = ./builder.sh; 165 src = fetchurl { 166 + url = "mirror://xorg/individual/font/font-adobe-utopia-type1-1.0.5.tar.xz"; 167 + sha256 = "15snyyy3rk75fikz1hs80nybxai1aynybl0gw32hffv98yy81cjc"; 168 }; 169 hardeningDisable = [ "bindnow" "relro" ]; 170 strictDeps = true; ··· 194 # THIS IS A GENERATED FILE. DO NOT EDIT! 195 fontarabicmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 196 pname = "font-arabic-misc"; 197 + version = "1.0.4"; 198 builder = ./builder.sh; 199 src = fetchurl { 200 + url = "mirror://xorg/individual/font/font-arabic-misc-1.0.4.tar.xz"; 201 + sha256 = "0rrlcqbyx9y7hnhbkjir8rs6jkfqyalj1zvhr8niv2n7a8dydzs6"; 202 }; 203 hardeningDisable = [ "bindnow" "relro" ]; 204 strictDeps = true; ··· 212 # THIS IS A GENERATED FILE. DO NOT EDIT! 213 fontbh100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 214 pname = "font-bh-100dpi"; 215 + version = "1.0.4"; 216 builder = ./builder.sh; 217 src = fetchurl { 218 + url = "mirror://xorg/individual/font/font-bh-100dpi-1.0.4.tar.xz"; 219 + sha256 = "07mb9781c9yxzp3ifw317v4fbnmg9qyqv0244zfspylihkz5x3zx"; 220 }; 221 hardeningDisable = [ "bindnow" "relro" ]; 222 strictDeps = true; ··· 230 # THIS IS A GENERATED FILE. DO NOT EDIT! 231 fontbh75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 232 pname = "font-bh-75dpi"; 233 + version = "1.0.4"; 234 builder = ./builder.sh; 235 src = fetchurl { 236 + url = "mirror://xorg/individual/font/font-bh-75dpi-1.0.4.tar.xz"; 237 + sha256 = "1nkwkqdl946xc4xknhi1pnxdww6rxrv013c7nk5x6ganfg0dh9k0"; 238 }; 239 hardeningDisable = [ "bindnow" "relro" ]; 240 strictDeps = true; ··· 248 # THIS IS A GENERATED FILE. DO NOT EDIT! 249 fontbhlucidatypewriter100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 250 pname = "font-bh-lucidatypewriter-100dpi"; 251 + version = "1.0.4"; 252 builder = ./builder.sh; 253 src = fetchurl { 254 + url = "mirror://xorg/individual/font/font-bh-lucidatypewriter-100dpi-1.0.4.tar.xz"; 255 + sha256 = "1wp87pijbydkpcmawsyas7vwhad2xg1mkkwigga2jjh9lknhkv3n"; 256 }; 257 hardeningDisable = [ "bindnow" "relro" ]; 258 strictDeps = true; ··· 266 # THIS IS A GENERATED FILE. DO NOT EDIT! 267 fontbhlucidatypewriter75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 268 pname = "font-bh-lucidatypewriter-75dpi"; 269 + version = "1.0.4"; 270 builder = ./builder.sh; 271 src = fetchurl { 272 + url = "mirror://xorg/individual/font/font-bh-lucidatypewriter-75dpi-1.0.4.tar.xz"; 273 + sha256 = "1xg86mb9qigf5v0wx0q2shn8qaabsapamj627xllzw31mhwjqkl6"; 274 }; 275 hardeningDisable = [ "bindnow" "relro" ]; 276 strictDeps = true; ··· 284 # THIS IS A GENERATED FILE. DO NOT EDIT! 285 fontbhttf = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 286 pname = "font-bh-ttf"; 287 + version = "1.0.4"; 288 builder = ./builder.sh; 289 src = fetchurl { 290 + url = "mirror://xorg/individual/font/font-bh-ttf-1.0.4.tar.xz"; 291 + sha256 = "0misxkpjc2bir20m01z355sfk3lbpjnshphjzl32p364006zk9c5"; 292 }; 293 hardeningDisable = [ "bindnow" "relro" ]; 294 strictDeps = true; ··· 302 # THIS IS A GENERATED FILE. DO NOT EDIT! 303 fontbhtype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 304 pname = "font-bh-type1"; 305 + version = "1.0.4"; 306 builder = ./builder.sh; 307 src = fetchurl { 308 + url = "mirror://xorg/individual/font/font-bh-type1-1.0.4.tar.xz"; 309 + sha256 = "19kjdm0cx766yj9vwkyv7gyg1q4bjag5g500s7nnppmb0vnc7phr"; 310 }; 311 hardeningDisable = [ "bindnow" "relro" ]; 312 strictDeps = true; ··· 320 # THIS IS A GENERATED FILE. DO NOT EDIT! 321 fontbitstream100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 322 pname = "font-bitstream-100dpi"; 323 + version = "1.0.4"; 324 builder = ./builder.sh; 325 src = fetchurl { 326 + url = "mirror://xorg/individual/font/font-bitstream-100dpi-1.0.4.tar.xz"; 327 + sha256 = "19y1j1v65890x8yn6a47jqljfax3ihfrd25xbzgypxz4xy1cc71d"; 328 }; 329 hardeningDisable = [ "bindnow" "relro" ]; 330 strictDeps = true; ··· 338 # THIS IS A GENERATED FILE. DO NOT EDIT! 339 fontbitstream75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 340 pname = "font-bitstream-75dpi"; 341 + version = "1.0.4"; 342 builder = ./builder.sh; 343 src = fetchurl { 344 + url = "mirror://xorg/individual/font/font-bitstream-75dpi-1.0.4.tar.xz"; 345 + sha256 = "09pq7dvyyxj6kvps1dm3qr15pjwh9iq9118fryqc5a94fkc39sxa"; 346 }; 347 hardeningDisable = [ "bindnow" "relro" ]; 348 strictDeps = true; ··· 354 }) {}; 355 356 # THIS IS A GENERATED FILE. DO NOT EDIT! 357 + fontbitstreamspeedo = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 358 + pname = "font-bitstream-speedo"; 359 + version = "1.0.2"; 360 + builder = ./builder.sh; 361 + src = fetchurl { 362 + url = "mirror://xorg/individual/font/font-bitstream-speedo-1.0.2.tar.gz"; 363 + sha256 = "0wmy58cd3k7w2j4v20icnfs8z3b61qj3vqdx958z18w00h9mzsmf"; 364 + }; 365 + hardeningDisable = [ "bindnow" "relro" ]; 366 + strictDeps = true; 367 + nativeBuildInputs = [ pkg-config mkfontscale ]; 368 + buildInputs = [ fontutil ]; 369 + configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 370 + postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 371 + meta.platforms = lib.platforms.unix; 372 + }) {}; 373 + 374 + # THIS IS A GENERATED FILE. DO NOT EDIT! 375 fontbitstreamtype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 376 pname = "font-bitstream-type1"; 377 + version = "1.0.4"; 378 builder = ./builder.sh; 379 src = fetchurl { 380 + url = "mirror://xorg/individual/font/font-bitstream-type1-1.0.4.tar.xz"; 381 + sha256 = "0a669193ivi2lxk3v692kq1pqavaswlpi9hbi8ib8bfp9j5j6byy"; 382 }; 383 hardeningDisable = [ "bindnow" "relro" ]; 384 strictDeps = true; ··· 392 # THIS IS A GENERATED FILE. DO NOT EDIT! 393 fontcronyxcyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 394 pname = "font-cronyx-cyrillic"; 395 + version = "1.0.4"; 396 builder = ./builder.sh; 397 src = fetchurl { 398 + url = "mirror://xorg/individual/font/font-cronyx-cyrillic-1.0.4.tar.xz"; 399 + sha256 = "12dpsvif85z1m6jvq9g91lmzj0rll5rh3871mbvdpzyb1p7821yw"; 400 }; 401 hardeningDisable = [ "bindnow" "relro" ]; 402 strictDeps = true; ··· 410 # THIS IS A GENERATED FILE. DO NOT EDIT! 411 fontcursormisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 412 pname = "font-cursor-misc"; 413 + version = "1.0.4"; 414 builder = ./builder.sh; 415 src = fetchurl { 416 + url = "mirror://xorg/individual/font/font-cursor-misc-1.0.4.tar.xz"; 417 + sha256 = "10prshcmmm5ccczyq7yaadz92k23ls9rjl10hjh8rjqka1cwkn95"; 418 }; 419 hardeningDisable = [ "bindnow" "relro" ]; 420 strictDeps = true; ··· 428 # THIS IS A GENERATED FILE. DO NOT EDIT! 429 fontdaewoomisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 430 pname = "font-daewoo-misc"; 431 + version = "1.0.4"; 432 builder = ./builder.sh; 433 src = fetchurl { 434 + url = "mirror://xorg/individual/font/font-daewoo-misc-1.0.4.tar.xz"; 435 + sha256 = "0cagg963v94paq1l9l7g5kyv7df8q31b4zcbhv5rh07kr0yqng7n"; 436 }; 437 hardeningDisable = [ "bindnow" "relro" ]; 438 strictDeps = true; ··· 446 # THIS IS A GENERATED FILE. DO NOT EDIT! 447 fontdecmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 448 pname = "font-dec-misc"; 449 + version = "1.0.4"; 450 builder = ./builder.sh; 451 src = fetchurl { 452 + url = "mirror://xorg/individual/font/font-dec-misc-1.0.4.tar.xz"; 453 + sha256 = "1xqs2qg21h5xg519810hw4bvykjdpf0xgk0xwp0bxy4g3lh6inc2"; 454 }; 455 hardeningDisable = [ "bindnow" "relro" ]; 456 strictDeps = true; ··· 464 # THIS IS A GENERATED FILE. DO NOT EDIT! 465 fontibmtype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 466 pname = "font-ibm-type1"; 467 + version = "1.0.4"; 468 builder = ./builder.sh; 469 src = fetchurl { 470 + url = "mirror://xorg/individual/font/font-ibm-type1-1.0.4.tar.xz"; 471 + sha256 = "0zyfc0mxkzlrbpdn16rj25abf2hcqb592zkks550rm26paamwff4"; 472 }; 473 hardeningDisable = [ "bindnow" "relro" ]; 474 strictDeps = true; ··· 482 # THIS IS A GENERATED FILE. DO NOT EDIT! 483 fontisasmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 484 pname = "font-isas-misc"; 485 + version = "1.0.4"; 486 builder = ./builder.sh; 487 src = fetchurl { 488 + url = "mirror://xorg/individual/font/font-isas-misc-1.0.4.tar.xz"; 489 + sha256 = "1z1qqi64hbp297f6ryiswa4ikfn7mcwnb8nadyglni6swsxrbra7"; 490 }; 491 hardeningDisable = [ "bindnow" "relro" ]; 492 strictDeps = true; ··· 500 # THIS IS A GENERATED FILE. DO NOT EDIT! 501 fontjismisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 502 pname = "font-jis-misc"; 503 + version = "1.0.4"; 504 builder = ./builder.sh; 505 src = fetchurl { 506 + url = "mirror://xorg/individual/font/font-jis-misc-1.0.4.tar.xz"; 507 + sha256 = "1l7spyq93rhydsdnsh46alcfbn2irz664vd209lamxviqkvfzlbq"; 508 }; 509 hardeningDisable = [ "bindnow" "relro" ]; 510 strictDeps = true; ··· 518 # THIS IS A GENERATED FILE. DO NOT EDIT! 519 fontmicromisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 520 pname = "font-micro-misc"; 521 + version = "1.0.4"; 522 builder = ./builder.sh; 523 src = fetchurl { 524 + url = "mirror://xorg/individual/font/font-micro-misc-1.0.4.tar.xz"; 525 + sha256 = "0hzryqyml0bzzw91vqdmzdlb7dm18jmyz0mxy6plks3sppbbkq1f"; 526 }; 527 hardeningDisable = [ "bindnow" "relro" ]; 528 strictDeps = true; ··· 536 # THIS IS A GENERATED FILE. DO NOT EDIT! 537 fontmisccyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 538 pname = "font-misc-cyrillic"; 539 + version = "1.0.4"; 540 builder = ./builder.sh; 541 src = fetchurl { 542 + url = "mirror://xorg/individual/font/font-misc-cyrillic-1.0.4.tar.xz"; 543 + sha256 = "14z9x174fidjn65clkd2y1l6pxspmvphizap9a8h2h06adzil0kn"; 544 }; 545 hardeningDisable = [ "bindnow" "relro" ]; 546 strictDeps = true; ··· 554 # THIS IS A GENERATED FILE. DO NOT EDIT! 555 fontmiscethiopic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 556 pname = "font-misc-ethiopic"; 557 + version = "1.0.5"; 558 builder = ./builder.sh; 559 src = fetchurl { 560 + url = "mirror://xorg/individual/font/font-misc-ethiopic-1.0.5.tar.xz"; 561 + sha256 = "04mnd620s9wkdid9wnf181yh5vf0n7l096nc3z4zdvm1w7kafja7"; 562 }; 563 hardeningDisable = [ "bindnow" "relro" ]; 564 strictDeps = true; ··· 572 # THIS IS A GENERATED FILE. DO NOT EDIT! 573 fontmiscmeltho = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 574 pname = "font-misc-meltho"; 575 + version = "1.0.4"; 576 builder = ./builder.sh; 577 src = fetchurl { 578 + url = "mirror://xorg/individual/font/font-misc-meltho-1.0.4.tar.xz"; 579 + sha256 = "06ajsqjd20zsk9a44bl5i1mv1r9snil6l2947hk8z2bqf30mxgk3"; 580 }; 581 hardeningDisable = [ "bindnow" "relro" ]; 582 strictDeps = true; ··· 590 # THIS IS A GENERATED FILE. DO NOT EDIT! 591 fontmiscmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 592 pname = "font-misc-misc"; 593 + version = "1.1.3"; 594 builder = ./builder.sh; 595 src = fetchurl { 596 + url = "mirror://xorg/individual/font/font-misc-misc-1.1.3.tar.xz"; 597 + sha256 = "1vcgc6lbc53fqaz8alhxcb6f231hhvj9hn2nkzg1mclbymhy7avr"; 598 }; 599 hardeningDisable = [ "bindnow" "relro" ]; 600 strictDeps = true; ··· 608 # THIS IS A GENERATED FILE. DO NOT EDIT! 609 fontmuttmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 610 pname = "font-mutt-misc"; 611 + version = "1.0.4"; 612 builder = ./builder.sh; 613 src = fetchurl { 614 + url = "mirror://xorg/individual/font/font-mutt-misc-1.0.4.tar.xz"; 615 + sha256 = "095vd33kqd157j6xi4sjxwdsjpwpgqliifa8nkybq8rcw7s5j8xi"; 616 }; 617 hardeningDisable = [ "bindnow" "relro" ]; 618 strictDeps = true; ··· 626 # THIS IS A GENERATED FILE. DO NOT EDIT! 627 fontschumachermisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 628 pname = "font-schumacher-misc"; 629 + version = "1.1.3"; 630 builder = ./builder.sh; 631 src = fetchurl { 632 + url = "mirror://xorg/individual/font/font-schumacher-misc-1.1.3.tar.xz"; 633 + sha256 = "0w40lr214n39al449fnm4k1bpyj3fjrhz2yxqd6a6m8yvc69z14b"; 634 }; 635 hardeningDisable = [ "bindnow" "relro" ]; 636 strictDeps = true; ··· 644 # THIS IS A GENERATED FILE. DO NOT EDIT! 645 fontscreencyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 646 pname = "font-screen-cyrillic"; 647 + version = "1.0.5"; 648 builder = ./builder.sh; 649 src = fetchurl { 650 + url = "mirror://xorg/individual/font/font-screen-cyrillic-1.0.5.tar.xz"; 651 + sha256 = "1h75zn1rp7bdv6av4cnrajpaq6fkd7dx1lc7aijpw32qrnw8nxcg"; 652 }; 653 hardeningDisable = [ "bindnow" "relro" ]; 654 strictDeps = true; ··· 662 # THIS IS A GENERATED FILE. DO NOT EDIT! 663 fontsonymisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 664 pname = "font-sony-misc"; 665 + version = "1.0.4"; 666 builder = ./builder.sh; 667 src = fetchurl { 668 + url = "mirror://xorg/individual/font/font-sony-misc-1.0.4.tar.xz"; 669 + sha256 = "0swlhjmmagrfkip4i9yq7cr56hains1j41mjs05nxc6c7y19zc76"; 670 }; 671 hardeningDisable = [ "bindnow" "relro" ]; 672 strictDeps = true; ··· 680 # THIS IS A GENERATED FILE. DO NOT EDIT! 681 fontsunmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 682 pname = "font-sun-misc"; 683 + version = "1.0.4"; 684 builder = ./builder.sh; 685 src = fetchurl { 686 + url = "mirror://xorg/individual/font/font-sun-misc-1.0.4.tar.xz"; 687 + sha256 = "17yvhk1hlajm3q57r09q8830zz7cnckrg8hgzajgyyljdl8xv16x"; 688 }; 689 hardeningDisable = [ "bindnow" "relro" ]; 690 strictDeps = true; ··· 714 # THIS IS A GENERATED FILE. DO NOT EDIT! 715 fontutil = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 716 pname = "font-util"; 717 + version = "1.4.0"; 718 builder = ./builder.sh; 719 src = fetchurl { 720 + url = "mirror://xorg/individual/font/font-util-1.4.0.tar.xz"; 721 + sha256 = "0z8gsi0bz5nnpsl008fyb4isrkrqrmhxjar5ywwpx30j83wlnwlz"; 722 }; 723 hardeningDisable = [ "bindnow" "relro" ]; 724 strictDeps = true; ··· 730 # THIS IS A GENERATED FILE. DO NOT EDIT! 731 fontwinitzkicyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 732 pname = "font-winitzki-cyrillic"; 733 + version = "1.0.4"; 734 builder = ./builder.sh; 735 src = fetchurl { 736 + url = "mirror://xorg/individual/font/font-winitzki-cyrillic-1.0.4.tar.xz"; 737 + sha256 = "1a4pz8f7hz6nn9xirz2k1j81ykl3lwrpi1ydmzipciy15l984v9v"; 738 }; 739 hardeningDisable = [ "bindnow" "relro" ]; 740 strictDeps = true; ··· 748 # THIS IS A GENERATED FILE. DO NOT EDIT! 749 fontxfree86type1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 750 pname = "font-xfree86-type1"; 751 + version = "1.0.5"; 752 builder = ./builder.sh; 753 src = fetchurl { 754 + url = "mirror://xorg/individual/font/font-xfree86-type1-1.0.5.tar.xz"; 755 + sha256 = "0ds8xbgxy9h0bqn2p38vylfzn8cqkp7n51kwmw1c18ayi9w2qg59"; 756 }; 757 hardeningDisable = [ "bindnow" "relro" ]; 758 strictDeps = true; ··· 782 # THIS IS A GENERATED FILE. DO NOT EDIT! 783 iceauth = callPackage ({ stdenv, pkg-config, fetchurl, libICE, xorgproto }: stdenv.mkDerivation { 784 pname = "iceauth"; 785 + version = "1.0.9"; 786 builder = ./builder.sh; 787 src = fetchurl { 788 + url = "mirror://xorg/individual/app/iceauth-1.0.9.tar.xz"; 789 + sha256 = "01cc816fvdkkfcnqnyvgcshcip2jzjivwa8hzdvsz0snak5xzf9c"; 790 }; 791 hardeningDisable = [ "bindnow" "relro" ]; 792 strictDeps = true; ··· 798 # THIS IS A GENERATED FILE. DO NOT EDIT! 799 ico = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 800 pname = "ico"; 801 + version = "1.0.6"; 802 builder = ./builder.sh; 803 src = fetchurl { 804 + url = "mirror://xorg/individual/app/ico-1.0.6.tar.xz"; 805 + sha256 = "01a4kykayckxzi4jzggaz3wh9qjcr6f4iykhvq7jhlz767a6kwrq"; 806 }; 807 hardeningDisable = [ "bindnow" "relro" ]; 808 strictDeps = true; ··· 1442 version = "0.4"; 1443 builder = ./builder.sh; 1444 src = fetchurl { 1445 + url = "mirror://xorg/individual/xcb/libpthread-stubs-0.4.tar.bz2"; 1446 sha256 = "0cz7s9w8lqgzinicd4g36rjg08zhsbyngh0w68c3np8nlc8mkl74"; 1447 }; 1448 hardeningDisable = [ "bindnow" "relro" ]; ··· 1519 # THIS IS A GENERATED FILE. DO NOT EDIT! 1520 listres = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXmu, xorgproto, libXt }: stdenv.mkDerivation { 1521 pname = "listres"; 1522 + version = "1.0.5"; 1523 builder = ./builder.sh; 1524 src = fetchurl { 1525 + url = "mirror://xorg/individual/app/listres-1.0.5.tar.xz"; 1526 + sha256 = "17fwfjh0xrvg7jj4h32pa8ns4hq4r11z61kh2xsqvsyjwyxh0anf"; 1527 }; 1528 hardeningDisable = [ "bindnow" "relro" ]; 1529 strictDeps = true; ··· 1599 # THIS IS A GENERATED FILE. DO NOT EDIT! 1600 oclock = callPackage ({ stdenv, pkg-config, fetchurl, libxkbfile, libX11, libXext, libXmu, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 1601 pname = "oclock"; 1602 + version = "1.0.5"; 1603 builder = ./builder.sh; 1604 src = fetchurl { 1605 + url = "mirror://xorg/individual/app/oclock-1.0.5.tar.xz"; 1606 + sha256 = "0p4nqfrhy1srqqzbamp7afa54clbydbhprd1nxbd12g8anb9f2cg"; 1607 }; 1608 hardeningDisable = [ "bindnow" "relro" ]; 1609 strictDeps = true; ··· 1615 # THIS IS A GENERATED FILE. DO NOT EDIT! 1616 sessreg = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto }: stdenv.mkDerivation { 1617 pname = "sessreg"; 1618 + version = "1.1.3"; 1619 builder = ./builder.sh; 1620 src = fetchurl { 1621 + url = "mirror://xorg/individual/app/sessreg-1.1.3.tar.xz"; 1622 + sha256 = "1hmc9wsfgl2wmy0kccwa4brxbv02w5wiz5hrz72dsz87x1fwsah2"; 1623 }; 1624 hardeningDisable = [ "bindnow" "relro" ]; 1625 strictDeps = true; ··· 1629 }) {}; 1630 1631 # THIS IS A GENERATED FILE. DO NOT EDIT! 1632 + setxkbmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile, libXrandr }: stdenv.mkDerivation { 1633 pname = "setxkbmap"; 1634 + version = "1.3.4"; 1635 builder = ./builder.sh; 1636 src = fetchurl { 1637 + url = "mirror://xorg/individual/app/setxkbmap-1.3.4.tar.xz"; 1638 + sha256 = "1pps0x66512y3f7v6xgnb6gjbllsgi4q5zxmjcdiv60fsia8b3dy"; 1639 }; 1640 hardeningDisable = [ "bindnow" "relro" ]; 1641 strictDeps = true; 1642 nativeBuildInputs = [ pkg-config ]; 1643 + buildInputs = [ libX11 libxkbfile libXrandr ]; 1644 meta.platforms = lib.platforms.unix; 1645 }) {}; 1646 1647 # THIS IS A GENERATED FILE. DO NOT EDIT! 1648 smproxy = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libSM, libXmu, libXt }: stdenv.mkDerivation { 1649 pname = "smproxy"; 1650 + version = "1.0.7"; 1651 builder = ./builder.sh; 1652 src = fetchurl { 1653 + url = "mirror://xorg/individual/app/smproxy-1.0.7.tar.xz"; 1654 + sha256 = "01gkz4n2pfxiklzzx3ghnm9shx3626jcriwvrs3pvawxrhvr5aaa"; 1655 }; 1656 hardeningDisable = [ "bindnow" "relro" ]; 1657 strictDeps = true; ··· 1663 # THIS IS A GENERATED FILE. DO NOT EDIT! 1664 transset = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 1665 pname = "transset"; 1666 + version = "1.0.3"; 1667 builder = ./builder.sh; 1668 src = fetchurl { 1669 + url = "mirror://xorg/individual/app/transset-1.0.3.tar.xz"; 1670 + sha256 = "1zp6ldxb3h2zsr4nmkb8aj8ia8v3qvjj3w85by5xh3fxvlq8zqqz"; 1671 }; 1672 hardeningDisable = [ "bindnow" "relro" ]; 1673 strictDeps = true; ··· 1677 }) {}; 1678 1679 # THIS IS A GENERATED FILE. DO NOT EDIT! 1680 + twm = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libSM, libX11, libXext, libXmu, xorgproto, libXrandr, libXt }: stdenv.mkDerivation { 1681 pname = "twm"; 1682 + version = "1.0.12"; 1683 builder = ./builder.sh; 1684 src = fetchurl { 1685 + url = "mirror://xorg/individual/app/twm-1.0.12.tar.xz"; 1686 + sha256 = "1r5gfv1gvcjn39v7n6znpnvifwhlw2zf8gfrxq8vph84vva03wma"; 1687 }; 1688 hardeningDisable = [ "bindnow" "relro" ]; 1689 strictDeps = true; 1690 nativeBuildInputs = [ pkg-config ]; 1691 + buildInputs = [ libICE libSM libX11 libXext libXmu xorgproto libXrandr libXt ]; 1692 meta.platforms = lib.platforms.unix; 1693 }) {}; 1694 ··· 1711 # THIS IS A GENERATED FILE. DO NOT EDIT! 1712 viewres = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXmu, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 1713 pname = "viewres"; 1714 + version = "1.0.7"; 1715 builder = ./builder.sh; 1716 src = fetchurl { 1717 + url = "mirror://xorg/individual/app/viewres-1.0.7.tar.xz"; 1718 + sha256 = "0a66mz27gcsxd1qq1ij0w8dv4wjvszgbf5ygw5dga40sbc464nmi"; 1719 }; 1720 hardeningDisable = [ "bindnow" "relro" ]; 1721 strictDeps = true; ··· 1791 # THIS IS A GENERATED FILE. DO NOT EDIT! 1792 xcalc = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 1793 pname = "xcalc"; 1794 + version = "1.1.2"; 1795 builder = ./builder.sh; 1796 src = fetchurl { 1797 + url = "mirror://xorg/individual/app/xcalc-1.1.2.tar.xz"; 1798 + sha256 = "1m0wzhjvc88kmx12ykdml5rqlz9h2iki9mkfdngji53y8nhxyy45"; 1799 }; 1800 hardeningDisable = [ "bindnow" "relro" ]; 1801 strictDeps = true; ··· 1826 version = "0.4.1"; 1827 builder = ./builder.sh; 1828 src = fetchurl { 1829 + url = "mirror://xorg/individual/xcb/xcb-util-0.4.1.tar.xz"; 1830 sha256 = "04p54r0zjc44fpw1hdy4rhygv37sx2vr2lllxjihykz5v2xkpgjs"; 1831 }; 1832 hardeningDisable = [ "bindnow" "relro" ]; ··· 1842 version = "0.1.3"; 1843 builder = ./builder.sh; 1844 src = fetchurl { 1845 + url = "mirror://xorg/individual/xcb/xcb-util-cursor-0.1.3.tar.bz2"; 1846 sha256 = "0krr4rcw6r42cncinzvzzdqnmxk3nrgpnadyg2h8k9x10q3hm885"; 1847 }; 1848 hardeningDisable = [ "bindnow" "relro" ]; ··· 1858 version = "1.0.1"; 1859 builder = ./builder.sh; 1860 src = fetchurl { 1861 + url = "mirror://xorg/individual/xcb/xcb-util-errors-1.0.1.tar.xz"; 1862 sha256 = "0mzkh3xj1n690dw8hrdhyjykd71ib0ls9n5cgf9asna2k1xwha2n"; 1863 }; 1864 hardeningDisable = [ "bindnow" "relro" ]; ··· 1874 version = "0.4.1"; 1875 builder = ./builder.sh; 1876 src = fetchurl { 1877 + url = "mirror://xorg/individual/xcb/xcb-util-image-0.4.1.tar.xz"; 1878 sha256 = "0g8dwknrlz96k176qxh8ar84x9kpppci9b978zyp24nvvbjqxbfc"; 1879 }; 1880 hardeningDisable = [ "bindnow" "relro" ]; ··· 1890 version = "0.4.1"; 1891 builder = ./builder.sh; 1892 src = fetchurl { 1893 + url = "mirror://xorg/individual/xcb/xcb-util-keysyms-0.4.1.tar.xz"; 1894 sha256 = "0f66snk179hmp8ppgv1zp9y7pl1vzn52znpikm1fsaj1ji90l9kw"; 1895 }; 1896 hardeningDisable = [ "bindnow" "relro" ]; ··· 1906 version = "0.3.10"; 1907 builder = ./builder.sh; 1908 src = fetchurl { 1909 + url = "mirror://xorg/individual/xcb/xcb-util-renderutil-0.3.10.tar.xz"; 1910 sha256 = "1fh4dnlwlqyccrhmmwlv082a7mxc7ss7vmzmp7xxp39dwbqd859y"; 1911 }; 1912 hardeningDisable = [ "bindnow" "relro" ]; ··· 1922 version = "0.4.2"; 1923 builder = ./builder.sh; 1924 src = fetchurl { 1925 + url = "mirror://xorg/individual/xcb/xcb-util-wm-0.4.2.tar.xz"; 1926 sha256 = "02wai17mxfbvlnj4l4bjbvah97rccdivzvd7mrznhr32s0hlxhv2"; 1927 }; 1928 hardeningDisable = [ "bindnow" "relro" ]; ··· 1935 # THIS IS A GENERATED FILE. DO NOT EDIT! 1936 xclock = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXft, libxkbfile, libXmu, xorgproto, libXrender, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 1937 pname = "xclock"; 1938 + version = "1.1.1"; 1939 builder = ./builder.sh; 1940 src = fetchurl { 1941 + url = "mirror://xorg/individual/app/xclock-1.1.1.tar.xz"; 1942 + sha256 = "0b3l1zwz2b1cn46f8pd480b835j9anadf929vqpll107iyzylz6z"; 1943 }; 1944 hardeningDisable = [ "bindnow" "relro" ]; 1945 strictDeps = true; ··· 1951 # THIS IS A GENERATED FILE. DO NOT EDIT! 1952 xcmsdb = callPackage ({ stdenv, pkg-config, fetchurl, libX11 }: stdenv.mkDerivation { 1953 pname = "xcmsdb"; 1954 + version = "1.0.6"; 1955 builder = ./builder.sh; 1956 src = fetchurl { 1957 + url = "mirror://xorg/individual/app/xcmsdb-1.0.6.tar.xz"; 1958 + sha256 = "0magrza0i5qwpf0zlpqjychp3bzxgdw3p5v616xl4nbxag2fwxrw"; 1959 }; 1960 hardeningDisable = [ "bindnow" "relro" ]; 1961 strictDeps = true; ··· 1965 }) {}; 1966 1967 # THIS IS A GENERATED FILE. DO NOT EDIT! 1968 + xcompmgr = callPackage ({ stdenv, pkg-config, fetchurl, libXcomposite, libXdamage, libXext, libXfixes, xorgproto, libXrender }: stdenv.mkDerivation { 1969 pname = "xcompmgr"; 1970 + version = "1.1.9"; 1971 builder = ./builder.sh; 1972 src = fetchurl { 1973 + url = "mirror://xorg/individual/app/xcompmgr-1.1.9.tar.xz"; 1974 + sha256 = "1w564walyqi3bqnnl8l2d949v64smipdw2q8lnrixl3jhrlvcxa8"; 1975 }; 1976 hardeningDisable = [ "bindnow" "relro" ]; 1977 strictDeps = true; 1978 nativeBuildInputs = [ pkg-config ]; 1979 + buildInputs = [ libXcomposite libXdamage libXext libXfixes xorgproto libXrender ]; 1980 meta.platforms = lib.platforms.unix; 1981 }) {}; 1982 1983 # THIS IS A GENERATED FILE. DO NOT EDIT! 1984 xconsole = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 1985 pname = "xconsole"; 1986 + version = "1.0.8"; 1987 builder = ./builder.sh; 1988 src = fetchurl { 1989 + url = "mirror://xorg/individual/app/xconsole-1.0.8.tar.xz"; 1990 + sha256 = "195vhqjrzjf4kkzmy0kx50n1bv2kj9fg7mi18mm2w3p4d3q6ljkv"; 1991 }; 1992 hardeningDisable = [ "bindnow" "relro" ]; 1993 strictDeps = true; ··· 1997 }) {}; 1998 1999 # THIS IS A GENERATED FILE. DO NOT EDIT! 2000 + xcursorgen = callPackage ({ stdenv, pkg-config, fetchurl, libpng, libX11, libXcursor, xorgproto }: stdenv.mkDerivation { 2001 pname = "xcursorgen"; 2002 + version = "1.0.8"; 2003 builder = ./builder.sh; 2004 src = fetchurl { 2005 + url = "mirror://xorg/individual/app/xcursorgen-1.0.8.tar.xz"; 2006 + sha256 = "16yc82k4vp7icmf9247z4v38r65pdf032mrpzxj5wa2fggi3rcrj"; 2007 }; 2008 hardeningDisable = [ "bindnow" "relro" ]; 2009 strictDeps = true; 2010 nativeBuildInputs = [ pkg-config ]; 2011 + buildInputs = [ libpng libX11 libXcursor xorgproto ]; 2012 meta.platforms = lib.platforms.unix; 2013 }) {}; 2014 ··· 2031 # THIS IS A GENERATED FILE. DO NOT EDIT! 2032 xdm = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXau, libXaw, libXdmcp, libXext, libXft, libXinerama, libXmu, libXpm, xorgproto, libXrender, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 2033 pname = "xdm"; 2034 + version = "1.1.14"; 2035 builder = ./builder.sh; 2036 src = fetchurl { 2037 + url = "mirror://xorg/individual/app/xdm-1.1.14.tar.xz"; 2038 + sha256 = "0prx5h0xmv08yvm0axzh74a90cyc1s1dcv98jpjwjzkr6rbg56ry"; 2039 }; 2040 hardeningDisable = [ "bindnow" "relro" ]; 2041 strictDeps = true; ··· 2047 # THIS IS A GENERATED FILE. DO NOT EDIT! 2048 xdpyinfo = callPackage ({ stdenv, pkg-config, fetchurl, libdmx, libX11, libxcb, libXcomposite, libXext, libXi, libXinerama, xorgproto, libXrender, libXtst, libXxf86dga, libXxf86misc, libXxf86vm }: stdenv.mkDerivation { 2049 pname = "xdpyinfo"; 2050 + version = "1.3.4"; 2051 builder = ./builder.sh; 2052 src = fetchurl { 2053 + url = "mirror://xorg/individual/app/xdpyinfo-1.3.4.tar.xz"; 2054 + sha256 = "0aw2yhx4ys22231yihkzhnw9jsyzksl4yyf3sx0689npvf0sbbd8"; 2055 }; 2056 hardeningDisable = [ "bindnow" "relro" ]; 2057 strictDeps = true; ··· 2063 # THIS IS A GENERATED FILE. DO NOT EDIT! 2064 xdriinfo = callPackage ({ stdenv, pkg-config, fetchurl, libGL, xorgproto, libX11 }: stdenv.mkDerivation { 2065 pname = "xdriinfo"; 2066 + version = "1.0.7"; 2067 builder = ./builder.sh; 2068 src = fetchurl { 2069 + url = "mirror://xorg/individual/app/xdriinfo-1.0.7.tar.xz"; 2070 + sha256 = "0d7p9fj3znq0av9pjgi2kphqaz5w7b9hxlz63zbxs69bknp8p0yx"; 2071 }; 2072 hardeningDisable = [ "bindnow" "relro" ]; 2073 strictDeps = true; ··· 2079 # THIS IS A GENERATED FILE. DO NOT EDIT! 2080 xev = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXrandr }: stdenv.mkDerivation { 2081 pname = "xev"; 2082 + version = "1.2.5"; 2083 builder = ./builder.sh; 2084 src = fetchurl { 2085 + url = "mirror://xorg/individual/app/xev-1.2.5.tar.xz"; 2086 + sha256 = "1hbfwcnbyz4w13fbhnghl0vdhf6w9f9pb7jgjwrhykkii51ilin9"; 2087 }; 2088 hardeningDisable = [ "bindnow" "relro" ]; 2089 strictDeps = true; ··· 2927 # THIS IS A GENERATED FILE. DO NOT EDIT! 2928 xfd = callPackage ({ stdenv, pkg-config, fetchurl, libxkbfile, fontconfig, libXaw, libXft, libXmu, xorgproto, libXrender, libXt, gettext, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 2929 pname = "xfd"; 2930 + version = "1.1.4"; 2931 builder = ./builder.sh; 2932 src = fetchurl { 2933 + url = "mirror://xorg/individual/app/xfd-1.1.4.tar.xz"; 2934 + sha256 = "1zbnj0z28dx2rm2h7pjwcz7z1jnl28gz0v9xn3hs2igxcvxhyiym"; 2935 }; 2936 hardeningDisable = [ "bindnow" "relro" ]; 2937 strictDeps = true; ··· 2941 }) {}; 2942 2943 # THIS IS A GENERATED FILE. DO NOT EDIT! 2944 + xfontsel = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 2945 pname = "xfontsel"; 2946 + version = "1.1.0"; 2947 builder = ./builder.sh; 2948 src = fetchurl { 2949 + url = "mirror://xorg/individual/app/xfontsel-1.1.0.tar.xz"; 2950 + sha256 = "1d6ifx6sw97mmr00bhfakyx2f94w14yswxc68sw49zmvawrjq18p"; 2951 }; 2952 hardeningDisable = [ "bindnow" "relro" ]; 2953 strictDeps = true; 2954 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 2955 + buildInputs = [ libX11 libXaw libXmu xorgproto libXt ]; 2956 meta.platforms = lib.platforms.unix; 2957 }) {}; 2958 2959 # THIS IS A GENERATED FILE. DO NOT EDIT! 2960 xfs = callPackage ({ stdenv, pkg-config, fetchurl, libXfont2, xorgproto, xtrans }: stdenv.mkDerivation { 2961 pname = "xfs"; 2962 + version = "1.2.1"; 2963 builder = ./builder.sh; 2964 src = fetchurl { 2965 + url = "mirror://xorg/individual/app/xfs-1.2.1.tar.xz"; 2966 + sha256 = "1rn1l76z4l133491wb1klixbwb8az5cnrzwx37fb3vnpmplc72ix"; 2967 }; 2968 hardeningDisable = [ "bindnow" "relro" ]; 2969 strictDeps = true; ··· 2975 # THIS IS A GENERATED FILE. DO NOT EDIT! 2976 xfsinfo = callPackage ({ stdenv, pkg-config, fetchurl, libFS, xorgproto }: stdenv.mkDerivation { 2977 pname = "xfsinfo"; 2978 + version = "1.0.7"; 2979 builder = ./builder.sh; 2980 src = fetchurl { 2981 + url = "mirror://xorg/individual/app/xfsinfo-1.0.7.tar.xz"; 2982 + sha256 = "0x48p4hk0lds2s8nwzgfl616r99s28ydx02zs7p1fxxs3i2wmwwj"; 2983 }; 2984 hardeningDisable = [ "bindnow" "relro" ]; 2985 strictDeps = true; ··· 2991 # THIS IS A GENERATED FILE. DO NOT EDIT! 2992 xgamma = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXxf86vm }: stdenv.mkDerivation { 2993 pname = "xgamma"; 2994 + version = "1.0.7"; 2995 builder = ./builder.sh; 2996 src = fetchurl { 2997 + url = "mirror://xorg/individual/app/xgamma-1.0.7.tar.xz"; 2998 + sha256 = "13xw2fqp9cs7xj3nqi8khqxv81rk0dd8khp59xgs2lw9bbldly8w"; 2999 }; 3000 hardeningDisable = [ "bindnow" "relro" ]; 3001 strictDeps = true; ··· 3007 # THIS IS A GENERATED FILE. DO NOT EDIT! 3008 xgc = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3009 pname = "xgc"; 3010 + version = "1.0.6"; 3011 builder = ./builder.sh; 3012 src = fetchurl { 3013 + url = "mirror://xorg/individual/app/xgc-1.0.6.tar.xz"; 3014 + sha256 = "0h5jm2946f5m1g8a3qh1c01h3zrsjjivi09vi9rmij2frvdvp1vv"; 3015 }; 3016 hardeningDisable = [ "bindnow" "relro" ]; 3017 strictDeps = true; ··· 3039 # THIS IS A GENERATED FILE. DO NOT EDIT! 3040 xinit = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 3041 pname = "xinit"; 3042 + version = "1.4.2"; 3043 builder = ./builder.sh; 3044 src = fetchurl { 3045 + url = "mirror://xorg/individual/app/xinit-1.4.2.tar.xz"; 3046 + sha256 = "08qz6f6yhis6jdcp6hzspql6ib9a9zp0ddhhbac1b7zg4a6xrn5p"; 3047 }; 3048 hardeningDisable = [ "bindnow" "relro" ]; 3049 strictDeps = true; ··· 3055 # THIS IS A GENERATED FILE. DO NOT EDIT! 3056 xinput = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXi, libXinerama, libXrandr }: stdenv.mkDerivation { 3057 pname = "xinput"; 3058 + version = "1.6.4"; 3059 builder = ./builder.sh; 3060 src = fetchurl { 3061 + url = "mirror://xorg/individual/app/xinput-1.6.4.tar.xz"; 3062 + sha256 = "1j2pf28c54apr56v1fmvprp657n6x4sdrv8f24rx3138cl6x015d"; 3063 }; 3064 hardeningDisable = [ "bindnow" "relro" ]; 3065 strictDeps = true; ··· 3087 # THIS IS A GENERATED FILE. DO NOT EDIT! 3088 xkbevd = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile }: stdenv.mkDerivation { 3089 pname = "xkbevd"; 3090 + version = "1.1.5"; 3091 builder = ./builder.sh; 3092 src = fetchurl { 3093 + url = "mirror://xorg/individual/app/xkbevd-1.1.5.tar.xz"; 3094 + sha256 = "0swjhk33fp15060hhzycmk288ys51wwm6l7p9xy4blz95mq7nd9q"; 3095 }; 3096 hardeningDisable = [ "bindnow" "relro" ]; 3097 strictDeps = true; ··· 3103 # THIS IS A GENERATED FILE. DO NOT EDIT! 3104 xkbprint = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile, xorgproto }: stdenv.mkDerivation { 3105 pname = "xkbprint"; 3106 + version = "1.0.6"; 3107 builder = ./builder.sh; 3108 src = fetchurl { 3109 + url = "mirror://xorg/individual/app/xkbprint-1.0.6.tar.xz"; 3110 + sha256 = "1c57kb8d8cbf720n9bcjhhaqpk08lac0sk4l0jp8j0mryw299k4r"; 3111 }; 3112 hardeningDisable = [ "bindnow" "relro" ]; 3113 strictDeps = true; ··· 3119 # THIS IS A GENERATED FILE. DO NOT EDIT! 3120 xkbutils = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXaw, libXt }: stdenv.mkDerivation { 3121 pname = "xkbutils"; 3122 + version = "1.0.5"; 3123 builder = ./builder.sh; 3124 src = fetchurl { 3125 + url = "mirror://xorg/individual/app/xkbutils-1.0.5.tar.xz"; 3126 + sha256 = "197f4pgw3jdnlp7sj37f3xf15ayad20sl7vvg2rvx0j5qplsi97n"; 3127 }; 3128 hardeningDisable = [ "bindnow" "relro" ]; 3129 strictDeps = true; ··· 3151 # THIS IS A GENERATED FILE. DO NOT EDIT! 3152 xkill = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation { 3153 pname = "xkill"; 3154 + version = "1.0.6"; 3155 builder = ./builder.sh; 3156 src = fetchurl { 3157 + url = "mirror://xorg/individual/app/xkill-1.0.6.tar.xz"; 3158 + sha256 = "01xrmqw498hqlhn6l1sq89s31k6sjf6xlij6a08pnrvmqiwama75"; 3159 }; 3160 hardeningDisable = [ "bindnow" "relro" ]; 3161 strictDeps = true; ··· 3167 # THIS IS A GENERATED FILE. DO NOT EDIT! 3168 xload = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, gettext, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3169 pname = "xload"; 3170 + version = "1.1.4"; 3171 builder = ./builder.sh; 3172 src = fetchurl { 3173 + url = "mirror://xorg/individual/app/xload-1.1.4.tar.xz"; 3174 + sha256 = "0c9h6w4bd1q3k4cy8v56sc3v9cg94cpg3xr057sf096v428vjil3"; 3175 }; 3176 hardeningDisable = [ "bindnow" "relro" ]; 3177 strictDeps = true; ··· 3183 # THIS IS A GENERATED FILE. DO NOT EDIT! 3184 xlsatoms = callPackage ({ stdenv, pkg-config, fetchurl, libxcb }: stdenv.mkDerivation { 3185 pname = "xlsatoms"; 3186 + version = "1.1.4"; 3187 builder = ./builder.sh; 3188 src = fetchurl { 3189 + url = "mirror://xorg/individual/app/xlsatoms-1.1.4.tar.xz"; 3190 + sha256 = "1dviriynilkw0jwl0s2h8y95pwh8cxj95cnmllkd6rn0args3gzl"; 3191 }; 3192 hardeningDisable = [ "bindnow" "relro" ]; 3193 strictDeps = true; ··· 3199 # THIS IS A GENERATED FILE. DO NOT EDIT! 3200 xlsclients = callPackage ({ stdenv, pkg-config, fetchurl, libxcb }: stdenv.mkDerivation { 3201 pname = "xlsclients"; 3202 + version = "1.1.5"; 3203 builder = ./builder.sh; 3204 src = fetchurl { 3205 + url = "mirror://xorg/individual/app/xlsclients-1.1.5.tar.xz"; 3206 + sha256 = "1qxsav5gicsfwv1dqlcfpj47vy9i30i7iysrfx5aql02wxbyxfk8"; 3207 }; 3208 hardeningDisable = [ "bindnow" "relro" ]; 3209 strictDeps = true; ··· 3215 # THIS IS A GENERATED FILE. DO NOT EDIT! 3216 xlsfonts = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 3217 pname = "xlsfonts"; 3218 + version = "1.0.7"; 3219 builder = ./builder.sh; 3220 src = fetchurl { 3221 + url = "mirror://xorg/individual/app/xlsfonts-1.0.7.tar.xz"; 3222 + sha256 = "0r84wp4352hbfcaybqp2khipm40293byvrfyrlslrd37m52njwkv"; 3223 }; 3224 hardeningDisable = [ "bindnow" "relro" ]; 3225 strictDeps = true; ··· 3231 # THIS IS A GENERATED FILE. DO NOT EDIT! 3232 xmag = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3233 pname = "xmag"; 3234 + version = "1.0.7"; 3235 builder = ./builder.sh; 3236 src = fetchurl { 3237 + url = "mirror://xorg/individual/app/xmag-1.0.7.tar.xz"; 3238 + sha256 = "0qblrqrhxml2asgbck53a1v7c4y7ap7jcyqjg500h1i7bb63d680"; 3239 }; 3240 hardeningDisable = [ "bindnow" "relro" ]; 3241 strictDeps = true; ··· 3247 # THIS IS A GENERATED FILE. DO NOT EDIT! 3248 xmessage = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3249 pname = "xmessage"; 3250 + version = "1.0.6"; 3251 builder = ./builder.sh; 3252 src = fetchurl { 3253 + url = "mirror://xorg/individual/app/xmessage-1.0.6.tar.xz"; 3254 + sha256 = "04kahkk3kd6p1xlzf0jwfgnrb5z2r3y55q3p12b6n59py52wbsnj"; 3255 }; 3256 hardeningDisable = [ "bindnow" "relro" ]; 3257 strictDeps = true; ··· 3263 # THIS IS A GENERATED FILE. DO NOT EDIT! 3264 xmodmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 3265 pname = "xmodmap"; 3266 + version = "1.0.11"; 3267 builder = ./builder.sh; 3268 src = fetchurl { 3269 + url = "mirror://xorg/individual/app/xmodmap-1.0.11.tar.xz"; 3270 + sha256 = "10byhzdfv1xckqc3d2v52xg1ggxn5j806x4450l3ig5hyxl82bws"; 3271 }; 3272 hardeningDisable = [ "bindnow" "relro" ]; 3273 strictDeps = true; ··· 3375 # THIS IS A GENERATED FILE. DO NOT EDIT! 3376 xpr = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation { 3377 pname = "xpr"; 3378 + version = "1.1.0"; 3379 builder = ./builder.sh; 3380 src = fetchurl { 3381 + url = "mirror://xorg/individual/app/xpr-1.1.0.tar.xz"; 3382 + sha256 = "1iaphm96kha6bzz34cj82r2lp5hrdpqwdca04iij4rinflab3fx0"; 3383 }; 3384 hardeningDisable = [ "bindnow" "relro" ]; 3385 strictDeps = true; ··· 3407 # THIS IS A GENERATED FILE. DO NOT EDIT! 3408 xrandr = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXrandr, libXrender }: stdenv.mkDerivation { 3409 pname = "xrandr"; 3410 + version = "1.5.2"; 3411 builder = ./builder.sh; 3412 src = fetchurl { 3413 + url = "mirror://xorg/individual/app/xrandr-1.5.2.tar.xz"; 3414 + sha256 = "0h7jy4c5zgrr06fimnnxhy5ba782b1n4aik29g6bln4h1mwy9gn8"; 3415 }; 3416 hardeningDisable = [ "bindnow" "relro" ]; 3417 strictDeps = true; ··· 3423 # THIS IS A GENERATED FILE. DO NOT EDIT! 3424 xrdb = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation { 3425 pname = "xrdb"; 3426 + version = "1.2.2"; 3427 builder = ./builder.sh; 3428 src = fetchurl { 3429 + url = "mirror://xorg/individual/app/xrdb-1.2.2.tar.xz"; 3430 + sha256 = "1x1ka0zbcw66a06jvsy92bvnsj9vxbvnq1hbn1az4f0v4fmzrx9i"; 3431 }; 3432 hardeningDisable = [ "bindnow" "relro" ]; 3433 strictDeps = true; ··· 3439 # THIS IS A GENERATED FILE. DO NOT EDIT! 3440 xrefresh = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 3441 pname = "xrefresh"; 3442 + version = "1.0.7"; 3443 builder = ./builder.sh; 3444 src = fetchurl { 3445 + url = "mirror://xorg/individual/app/xrefresh-1.0.7.tar.xz"; 3446 + sha256 = "07hvfw3rdv8mzqmm9ax5z8kw544insdd152f2z8868ply8sxdwd9"; 3447 }; 3448 hardeningDisable = [ "bindnow" "relro" ]; 3449 strictDeps = true; ··· 3471 # THIS IS A GENERATED FILE. DO NOT EDIT! 3472 xsetroot = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xbitmaps, libXcursor, libXmu, xorgproto }: stdenv.mkDerivation { 3473 pname = "xsetroot"; 3474 + version = "1.1.3"; 3475 builder = ./builder.sh; 3476 src = fetchurl { 3477 + url = "mirror://xorg/individual/app/xsetroot-1.1.3.tar.xz"; 3478 + sha256 = "1l9qcv4mldj70slnmfg56nv7yh9j9ca1x795bl26whmlkrdb90b0"; 3479 }; 3480 hardeningDisable = [ "bindnow" "relro" ]; 3481 strictDeps = true; ··· 3485 }) {}; 3486 3487 # THIS IS A GENERATED FILE. DO NOT EDIT! 3488 + xsm = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libSM, libX11, libXaw, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3489 pname = "xsm"; 3490 + version = "1.0.5"; 3491 builder = ./builder.sh; 3492 src = fetchurl { 3493 + url = "mirror://xorg/individual/app/xsm-1.0.5.tar.xz"; 3494 + sha256 = "0bgvwvj99yqivy4dyxrfa0anwvh5d634gz0w43zy8cn17ymgsc4w"; 3495 }; 3496 hardeningDisable = [ "bindnow" "relro" ]; 3497 strictDeps = true; 3498 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 3499 + buildInputs = [ libICE libSM libX11 libXaw xorgproto libXt ]; 3500 meta.platforms = lib.platforms.unix; 3501 }) {}; 3502 3503 # THIS IS A GENERATED FILE. DO NOT EDIT! 3504 xstdcmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation { 3505 pname = "xstdcmap"; 3506 + version = "1.0.5"; 3507 builder = ./builder.sh; 3508 src = fetchurl { 3509 + url = "mirror://xorg/individual/app/xstdcmap-1.0.5.tar.xz"; 3510 + sha256 = "1061b95j08mlwpadyilmpbzfgmm08z69k8nrkbn9k11rg7ilfn1n"; 3511 }; 3512 hardeningDisable = [ "bindnow" "relro" ]; 3513 strictDeps = true; ··· 3551 # THIS IS A GENERATED FILE. DO NOT EDIT! 3552 xvinfo = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXv }: stdenv.mkDerivation { 3553 pname = "xvinfo"; 3554 + version = "1.1.5"; 3555 builder = ./builder.sh; 3556 src = fetchurl { 3557 + url = "mirror://xorg/individual/app/xvinfo-1.1.5.tar.xz"; 3558 + sha256 = "0164qpbjmxxa1rbvh6ay1iz2qnp9hl1745k9pk6195kdnbn73piy"; 3559 }; 3560 hardeningDisable = [ "bindnow" "relro" ]; 3561 strictDeps = true; ··· 3567 # THIS IS A GENERATED FILE. DO NOT EDIT! 3568 xwd = callPackage ({ stdenv, pkg-config, fetchurl, libxkbfile, libX11, xorgproto }: stdenv.mkDerivation { 3569 pname = "xwd"; 3570 + version = "1.0.9"; 3571 builder = ./builder.sh; 3572 src = fetchurl { 3573 + url = "mirror://xorg/individual/app/xwd-1.0.9.tar.xz"; 3574 + sha256 = "0gxx3y9zlh13jgwkayxljm6i58ng8jc1xzqv2g8s7d3yjj21n4nw"; 3575 }; 3576 hardeningDisable = [ "bindnow" "relro" ]; 3577 strictDeps = true; ··· 3583 # THIS IS A GENERATED FILE. DO NOT EDIT! 3584 xwininfo = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxcb, xorgproto }: stdenv.mkDerivation { 3585 pname = "xwininfo"; 3586 + version = "1.1.6"; 3587 builder = ./builder.sh; 3588 src = fetchurl { 3589 + url = "mirror://xorg/individual/app/xwininfo-1.1.6.tar.xz"; 3590 + sha256 = "0gr5m4lyvkil3cl63zf0sw7bq5qgraqrnvddk6xgk3a42xy8j61m"; 3591 }; 3592 hardeningDisable = [ "bindnow" "relro" ]; 3593 strictDeps = true; ··· 3599 # THIS IS A GENERATED FILE. DO NOT EDIT! 3600 xwud = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 3601 pname = "xwud"; 3602 + version = "1.0.6"; 3603 builder = ./builder.sh; 3604 src = fetchurl { 3605 + url = "mirror://xorg/individual/app/xwud-1.0.6.tar.xz"; 3606 + sha256 = "1zhsih1l3x1038fi1wi9npvfnn8j7580ca73saixjg5sbv8qq134"; 3607 }; 3608 hardeningDisable = [ "bindnow" "relro" ]; 3609 strictDeps = true;
-9
pkgs/servers/x11/xorg/overrides.nix
··· 164 }); 165 166 xdm = super.xdm.overrideAttrs (attrs: { 167 - patches = (attrs.patches or []) ++ [ ./xdm-fix-header-inclusion.patch ]; 168 buildInputs = attrs.buildInputs ++ [ libxcrypt ]; 169 configureFlags = attrs.configureFlags or [] ++ [ 170 "ac_cv_path_RAWCPP=${stdenv.cc.targetPrefix}cpp" ··· 855 "--with-bundle-id-prefix=org.nixos.xquartz" 856 "--with-launchdaemons-dir=\${out}/LaunchDaemons" 857 "--with-launchagents-dir=\${out}/LaunchAgents" 858 - ]; 859 - patches = [ 860 - # don't unset DBUS_SESSION_BUS_ADDRESS in startx 861 - (fetchpatch { 862 - name = "dont-unset-DBUS_SESSION_BUS_ADDRESS.patch"; 863 - url = "https://raw.githubusercontent.com/archlinux/svntogit-packages/40f3ac0a31336d871c76065270d3f10e922d06f3/trunk/fs46369.patch"; 864 - sha256 = "18kb88i3s9nbq2jxl7l2hyj6p56c993hivk8mzxg811iqbbawkp7"; 865 - }) 866 ]; 867 postPatch = '' 868 # Avoid replacement of word-looking cpp's builtin macros in Nix's cross-compiled paths
··· 164 }); 165 166 xdm = super.xdm.overrideAttrs (attrs: { 167 buildInputs = attrs.buildInputs ++ [ libxcrypt ]; 168 configureFlags = attrs.configureFlags or [] ++ [ 169 "ac_cv_path_RAWCPP=${stdenv.cc.targetPrefix}cpp" ··· 854 "--with-bundle-id-prefix=org.nixos.xquartz" 855 "--with-launchdaemons-dir=\${out}/LaunchDaemons" 856 "--with-launchagents-dir=\${out}/LaunchAgents" 857 ]; 858 postPatch = '' 859 # Avoid replacement of word-looking cpp's builtin macros in Nix's cross-compiled paths
+99 -98
pkgs/servers/x11/xorg/tarballs.list
··· 1 https://invisible-mirror.net/archives/luit/luit-20190106.tgz 2 - https://xcb.freedesktop.org/dist/libpthread-stubs-0.4.tar.bz2 3 - https://xcb.freedesktop.org/dist/xcb-util-0.4.1.tar.xz 4 - https://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.3.tar.bz2 5 - https://xcb.freedesktop.org/dist/xcb-util-errors-1.0.1.tar.xz 6 - https://xcb.freedesktop.org/dist/xcb-util-image-0.4.1.tar.xz 7 - https://xcb.freedesktop.org/dist/xcb-util-keysyms-0.4.1.tar.xz 8 - https://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.10.tar.xz 9 - https://xcb.freedesktop.org/dist/xcb-util-wm-0.4.2.tar.xz 10 - mirror://xorg/individual/app/appres-1.0.5.tar.bz2 11 - https://xorg.freedesktop.org/archive/individual/util/bdftopcf-1.1.1.tar.xz 12 - mirror://xorg/individual/app/bitmap-1.0.9.tar.gz 13 - mirror://xorg/individual/app/editres-1.0.7.tar.bz2 14 mirror://xorg/individual/app/fonttosfnt-1.2.2.tar.bz2 15 - mirror://xorg/individual/app/iceauth-1.0.8.tar.bz2 16 - mirror://xorg/individual/app/ico-1.0.5.tar.bz2 17 - mirror://xorg/individual/app/listres-1.0.4.tar.bz2 18 mirror://xorg/individual/app/mkfontscale-1.2.2.tar.xz 19 - mirror://xorg/individual/app/oclock-1.0.4.tar.bz2 20 - mirror://xorg/individual/app/sessreg-1.1.2.tar.bz2 21 - mirror://xorg/individual/app/setxkbmap-1.3.2.tar.bz2 22 - mirror://xorg/individual/app/smproxy-1.0.6.tar.bz2 23 - mirror://xorg/individual/app/transset-1.0.2.tar.bz2 24 - mirror://xorg/individual/app/twm-1.0.10.tar.bz2 25 - mirror://xorg/individual/app/viewres-1.0.5.tar.bz2 26 mirror://xorg/individual/app/x11perf-1.6.1.tar.bz2 27 mirror://xorg/individual/app/xauth-1.1.2.tar.xz 28 mirror://xorg/individual/app/xbacklight-1.2.3.tar.bz2 29 - mirror://xorg/individual/app/xcalc-1.1.0.tar.bz2 30 - mirror://xorg/individual/app/xclock-1.0.9.tar.bz2 31 - mirror://xorg/individual/app/xcmsdb-1.0.5.tar.bz2 32 - mirror://xorg/individual/app/xcompmgr-1.1.8.tar.bz2 33 - mirror://xorg/individual/app/xconsole-1.0.7.tar.bz2 34 - mirror://xorg/individual/app/xcursorgen-1.0.7.tar.bz2 35 - mirror://xorg/individual/app/xdm-1.1.12.tar.bz2 36 - mirror://xorg/individual/app/xdpyinfo-1.3.2.tar.bz2 37 - mirror://xorg/individual/app/xdriinfo-1.0.6.tar.bz2 38 - mirror://xorg/individual/app/xev-1.2.4.tar.bz2 39 mirror://xorg/individual/app/xeyes-1.2.0.tar.bz2 40 - mirror://xorg/individual/app/xfd-1.1.3.tar.bz2 41 - mirror://xorg/individual/app/xfontsel-1.0.6.tar.bz2 42 - mirror://xorg/individual/app/xfs-1.2.0.tar.bz2 43 - mirror://xorg/individual/app/xfsinfo-1.0.6.tar.bz2 44 - mirror://xorg/individual/app/xgamma-1.0.6.tar.bz2 45 - mirror://xorg/individual/app/xgc-1.0.5.tar.bz2 46 mirror://xorg/individual/app/xhost-1.0.9.tar.xz 47 - mirror://xorg/individual/app/xinit-1.4.1.tar.bz2 48 - mirror://xorg/individual/app/xinput-1.6.3.tar.bz2 49 mirror://xorg/individual/app/xkbcomp-1.4.6.tar.xz 50 - mirror://xorg/individual/app/xkbevd-1.1.4.tar.bz2 51 - mirror://xorg/individual/app/xkbprint-1.0.4.tar.bz2 52 - mirror://xorg/individual/app/xkbutils-1.0.4.tar.bz2 53 - mirror://xorg/individual/app/xkill-1.0.5.tar.bz2 54 - mirror://xorg/individual/app/xload-1.1.3.tar.bz2 55 - mirror://xorg/individual/app/xlsatoms-1.1.3.tar.bz2 56 - mirror://xorg/individual/app/xlsclients-1.1.4.tar.bz2 57 - mirror://xorg/individual/app/xlsfonts-1.0.6.tar.bz2 58 - mirror://xorg/individual/app/xmag-1.0.6.tar.bz2 59 - mirror://xorg/individual/app/xmessage-1.0.5.tar.bz2 60 - mirror://xorg/individual/app/xmodmap-1.0.10.tar.bz2 61 mirror://xorg/individual/app/xmore-1.0.3.tar.bz2 62 - mirror://xorg/individual/app/xpr-1.0.5.tar.bz2 63 mirror://xorg/individual/app/xprop-1.2.6.tar.xz 64 - mirror://xorg/individual/app/xrandr-1.5.1.tar.xz 65 - mirror://xorg/individual/app/xrdb-1.2.1.tar.bz2 66 - mirror://xorg/individual/app/xrefresh-1.0.6.tar.bz2 67 mirror://xorg/individual/app/xset-1.2.5.tar.xz 68 - mirror://xorg/individual/app/xsetroot-1.1.2.tar.bz2 69 - mirror://xorg/individual/app/xsm-1.0.4.tar.bz2 70 - mirror://xorg/individual/app/xstdcmap-1.0.4.tar.bz2 71 mirror://xorg/individual/app/xtrap-1.0.3.tar.bz2 72 - mirror://xorg/individual/app/xvinfo-1.1.4.tar.bz2 73 - mirror://xorg/individual/app/xwd-1.0.8.tar.bz2 74 - mirror://xorg/individual/app/xwininfo-1.1.4.tar.bz2 75 - mirror://xorg/individual/app/xwud-1.0.5.tar.bz2 76 mirror://xorg/individual/data/xbitmaps-1.1.2.tar.bz2 77 mirror://xorg/individual/data/xcursor-themes-1.0.6.tar.bz2 78 mirror://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.33.tar.bz2 ··· 129 mirror://xorg/individual/driver/xf86-video-voodoo-1.2.5.tar.bz2 130 mirror://xorg/individual/driver/xf86-video-wsfb-0.4.0.tar.bz2 131 mirror://xorg/individual/driver/xf86-video-xgi-1.6.1.tar.bz2 132 - mirror://xorg/individual/font/encodings-1.0.5.tar.bz2 133 - mirror://xorg/individual/font/font-adobe-100dpi-1.0.3.tar.bz2 134 - mirror://xorg/individual/font/font-adobe-75dpi-1.0.3.tar.bz2 135 - mirror://xorg/individual/font/font-adobe-utopia-100dpi-1.0.4.tar.bz2 136 - mirror://xorg/individual/font/font-adobe-utopia-75dpi-1.0.4.tar.bz2 137 - mirror://xorg/individual/font/font-adobe-utopia-type1-1.0.4.tar.bz2 138 mirror://xorg/individual/font/font-alias-1.0.5.tar.xz 139 - mirror://xorg/individual/font/font-arabic-misc-1.0.3.tar.bz2 140 - mirror://xorg/individual/font/font-bh-100dpi-1.0.3.tar.bz2 141 - mirror://xorg/individual/font/font-bh-75dpi-1.0.3.tar.bz2 142 - mirror://xorg/individual/font/font-bh-lucidatypewriter-100dpi-1.0.3.tar.bz2 143 - mirror://xorg/individual/font/font-bh-lucidatypewriter-75dpi-1.0.3.tar.bz2 144 - mirror://xorg/individual/font/font-bh-ttf-1.0.3.tar.bz2 145 - mirror://xorg/individual/font/font-bh-type1-1.0.3.tar.bz2 146 - mirror://xorg/individual/font/font-bitstream-100dpi-1.0.3.tar.bz2 147 - mirror://xorg/individual/font/font-bitstream-75dpi-1.0.3.tar.bz2 148 - mirror://xorg/individual/font/font-bitstream-type1-1.0.3.tar.bz2 149 - mirror://xorg/individual/font/font-cronyx-cyrillic-1.0.3.tar.bz2 150 - mirror://xorg/individual/font/font-cursor-misc-1.0.3.tar.bz2 151 - mirror://xorg/individual/font/font-daewoo-misc-1.0.3.tar.bz2 152 - mirror://xorg/individual/font/font-dec-misc-1.0.3.tar.bz2 153 - mirror://xorg/individual/font/font-ibm-type1-1.0.3.tar.bz2 154 - mirror://xorg/individual/font/font-isas-misc-1.0.3.tar.bz2 155 - mirror://xorg/individual/font/font-jis-misc-1.0.3.tar.bz2 156 - mirror://xorg/individual/font/font-micro-misc-1.0.3.tar.bz2 157 - mirror://xorg/individual/font/font-misc-cyrillic-1.0.3.tar.bz2 158 - mirror://xorg/individual/font/font-misc-ethiopic-1.0.3.tar.bz2 159 - mirror://xorg/individual/font/font-misc-meltho-1.0.3.tar.bz2 160 - mirror://xorg/individual/font/font-misc-misc-1.1.2.tar.bz2 161 - mirror://xorg/individual/font/font-mutt-misc-1.0.3.tar.bz2 162 - mirror://xorg/individual/font/font-schumacher-misc-1.1.2.tar.bz2 163 - mirror://xorg/individual/font/font-screen-cyrillic-1.0.4.tar.bz2 164 - mirror://xorg/individual/font/font-sony-misc-1.0.3.tar.bz2 165 - mirror://xorg/individual/font/font-sun-misc-1.0.3.tar.bz2 166 - mirror://xorg/individual/font/font-util-1.3.3.tar.xz 167 - mirror://xorg/individual/font/font-winitzki-cyrillic-1.0.3.tar.bz2 168 - mirror://xorg/individual/font/font-xfree86-type1-1.0.4.tar.bz2 169 mirror://xorg/individual/lib/libAppleWM-1.4.1.tar.bz2 170 mirror://xorg/individual/lib/libdmx-1.1.4.tar.bz2 171 mirror://xorg/individual/lib/libfontenc-1.1.4.tar.bz2 ··· 211 mirror://xorg/individual/lib/xtrans-1.4.0.tar.bz2 212 mirror://xorg/individual/proto/xcb-proto-1.14.1.tar.xz 213 mirror://xorg/individual/proto/xorgproto-2021.5.tar.bz2 214 mirror://xorg/individual/util/gccmakedep-1.0.3.tar.bz2 215 mirror://xorg/individual/util/imake-1.0.8.tar.bz2 216 mirror://xorg/individual/util/lndir-1.0.4.tar.xz
··· 1 https://invisible-mirror.net/archives/luit/luit-20190106.tgz 2 + mirror://xorg/individual/xcb/libpthread-stubs-0.4.tar.bz2 3 + mirror://xorg/individual/xcb/xcb-util-0.4.1.tar.xz 4 + mirror://xorg/individual/xcb/xcb-util-cursor-0.1.3.tar.bz2 5 + mirror://xorg/individual/xcb/xcb-util-errors-1.0.1.tar.xz 6 + mirror://xorg/individual/xcb/xcb-util-image-0.4.1.tar.xz 7 + mirror://xorg/individual/xcb/xcb-util-keysyms-0.4.1.tar.xz 8 + mirror://xorg/individual/xcb/xcb-util-renderutil-0.3.10.tar.xz 9 + mirror://xorg/individual/xcb/xcb-util-wm-0.4.2.tar.xz 10 + mirror://xorg/individual/app/appres-1.0.6.tar.xz 11 + mirror://xorg/individual/app/bitmap-1.1.0.tar.xz 12 + mirror://xorg/individual/app/editres-1.0.8.tar.xz 13 mirror://xorg/individual/app/fonttosfnt-1.2.2.tar.bz2 14 + mirror://xorg/individual/app/iceauth-1.0.9.tar.xz 15 + mirror://xorg/individual/app/ico-1.0.6.tar.xz 16 + mirror://xorg/individual/app/listres-1.0.5.tar.xz 17 mirror://xorg/individual/app/mkfontscale-1.2.2.tar.xz 18 + mirror://xorg/individual/app/oclock-1.0.5.tar.xz 19 + mirror://xorg/individual/app/sessreg-1.1.3.tar.xz 20 + mirror://xorg/individual/app/setxkbmap-1.3.4.tar.xz 21 + mirror://xorg/individual/app/smproxy-1.0.7.tar.xz 22 + mirror://xorg/individual/app/transset-1.0.3.tar.xz 23 + mirror://xorg/individual/app/twm-1.0.12.tar.xz 24 + mirror://xorg/individual/app/viewres-1.0.7.tar.xz 25 mirror://xorg/individual/app/x11perf-1.6.1.tar.bz2 26 mirror://xorg/individual/app/xauth-1.1.2.tar.xz 27 mirror://xorg/individual/app/xbacklight-1.2.3.tar.bz2 28 + mirror://xorg/individual/app/xcalc-1.1.2.tar.xz 29 + mirror://xorg/individual/app/xclock-1.1.1.tar.xz 30 + mirror://xorg/individual/app/xcmsdb-1.0.6.tar.xz 31 + mirror://xorg/individual/app/xcompmgr-1.1.9.tar.xz 32 + mirror://xorg/individual/app/xconsole-1.0.8.tar.xz 33 + mirror://xorg/individual/app/xcursorgen-1.0.8.tar.xz 34 + mirror://xorg/individual/app/xdm-1.1.14.tar.xz 35 + mirror://xorg/individual/app/xdpyinfo-1.3.4.tar.xz 36 + mirror://xorg/individual/app/xdriinfo-1.0.7.tar.xz 37 + mirror://xorg/individual/app/xev-1.2.5.tar.xz 38 mirror://xorg/individual/app/xeyes-1.2.0.tar.bz2 39 + mirror://xorg/individual/app/xfd-1.1.4.tar.xz 40 + mirror://xorg/individual/app/xfontsel-1.1.0.tar.xz 41 + mirror://xorg/individual/app/xfs-1.2.1.tar.xz 42 + mirror://xorg/individual/app/xfsinfo-1.0.7.tar.xz 43 + mirror://xorg/individual/app/xgamma-1.0.7.tar.xz 44 + mirror://xorg/individual/app/xgc-1.0.6.tar.xz 45 mirror://xorg/individual/app/xhost-1.0.9.tar.xz 46 + mirror://xorg/individual/app/xinit-1.4.2.tar.xz 47 + mirror://xorg/individual/app/xinput-1.6.4.tar.xz 48 mirror://xorg/individual/app/xkbcomp-1.4.6.tar.xz 49 + mirror://xorg/individual/app/xkbevd-1.1.5.tar.xz 50 + mirror://xorg/individual/app/xkbprint-1.0.6.tar.xz 51 + mirror://xorg/individual/app/xkbutils-1.0.5.tar.xz 52 + mirror://xorg/individual/app/xkill-1.0.6.tar.xz 53 + mirror://xorg/individual/app/xload-1.1.4.tar.xz 54 + mirror://xorg/individual/app/xlsatoms-1.1.4.tar.xz 55 + mirror://xorg/individual/app/xlsclients-1.1.5.tar.xz 56 + mirror://xorg/individual/app/xlsfonts-1.0.7.tar.xz 57 + mirror://xorg/individual/app/xmag-1.0.7.tar.xz 58 + mirror://xorg/individual/app/xmessage-1.0.6.tar.xz 59 + mirror://xorg/individual/app/xmodmap-1.0.11.tar.xz 60 mirror://xorg/individual/app/xmore-1.0.3.tar.bz2 61 + mirror://xorg/individual/app/xpr-1.1.0.tar.xz 62 mirror://xorg/individual/app/xprop-1.2.6.tar.xz 63 + mirror://xorg/individual/app/xrandr-1.5.2.tar.xz 64 + mirror://xorg/individual/app/xrdb-1.2.2.tar.xz 65 + mirror://xorg/individual/app/xrefresh-1.0.7.tar.xz 66 mirror://xorg/individual/app/xset-1.2.5.tar.xz 67 + mirror://xorg/individual/app/xsetroot-1.1.3.tar.xz 68 + mirror://xorg/individual/app/xsm-1.0.5.tar.xz 69 + mirror://xorg/individual/app/xstdcmap-1.0.5.tar.xz 70 mirror://xorg/individual/app/xtrap-1.0.3.tar.bz2 71 + mirror://xorg/individual/app/xvinfo-1.1.5.tar.xz 72 + mirror://xorg/individual/app/xwd-1.0.9.tar.xz 73 + mirror://xorg/individual/app/xwininfo-1.1.6.tar.xz 74 + mirror://xorg/individual/app/xwud-1.0.6.tar.xz 75 mirror://xorg/individual/data/xbitmaps-1.1.2.tar.bz2 76 mirror://xorg/individual/data/xcursor-themes-1.0.6.tar.bz2 77 mirror://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.33.tar.bz2 ··· 128 mirror://xorg/individual/driver/xf86-video-voodoo-1.2.5.tar.bz2 129 mirror://xorg/individual/driver/xf86-video-wsfb-0.4.0.tar.bz2 130 mirror://xorg/individual/driver/xf86-video-xgi-1.6.1.tar.bz2 131 + mirror://xorg/individual/font/encodings-1.0.7.tar.xz 132 + mirror://xorg/individual/font/font-adobe-75dpi-1.0.4.tar.xz 133 + mirror://xorg/individual/font/font-adobe-100dpi-1.0.4.tar.xz 134 + mirror://xorg/individual/font/font-adobe-utopia-75dpi-1.0.5.tar.xz 135 + mirror://xorg/individual/font/font-adobe-utopia-100dpi-1.0.5.tar.xz 136 + mirror://xorg/individual/font/font-adobe-utopia-type1-1.0.5.tar.xz 137 mirror://xorg/individual/font/font-alias-1.0.5.tar.xz 138 + mirror://xorg/individual/font/font-arabic-misc-1.0.4.tar.xz 139 + mirror://xorg/individual/font/font-bh-75dpi-1.0.4.tar.xz 140 + mirror://xorg/individual/font/font-bh-100dpi-1.0.4.tar.xz 141 + mirror://xorg/individual/font/font-bh-lucidatypewriter-75dpi-1.0.4.tar.xz 142 + mirror://xorg/individual/font/font-bh-lucidatypewriter-100dpi-1.0.4.tar.xz 143 + mirror://xorg/individual/font/font-bh-ttf-1.0.4.tar.xz 144 + mirror://xorg/individual/font/font-bh-type1-1.0.4.tar.xz 145 + mirror://xorg/individual/font/font-bitstream-75dpi-1.0.4.tar.xz 146 + mirror://xorg/individual/font/font-bitstream-100dpi-1.0.4.tar.xz 147 + mirror://xorg/individual/font/font-bitstream-speedo-1.0.2.tar.gz 148 + mirror://xorg/individual/font/font-bitstream-type1-1.0.4.tar.xz 149 + mirror://xorg/individual/font/font-cronyx-cyrillic-1.0.4.tar.xz 150 + mirror://xorg/individual/font/font-cursor-misc-1.0.4.tar.xz 151 + mirror://xorg/individual/font/font-daewoo-misc-1.0.4.tar.xz 152 + mirror://xorg/individual/font/font-dec-misc-1.0.4.tar.xz 153 + mirror://xorg/individual/font/font-ibm-type1-1.0.4.tar.xz 154 + mirror://xorg/individual/font/font-isas-misc-1.0.4.tar.xz 155 + mirror://xorg/individual/font/font-jis-misc-1.0.4.tar.xz 156 + mirror://xorg/individual/font/font-micro-misc-1.0.4.tar.xz 157 + mirror://xorg/individual/font/font-misc-cyrillic-1.0.4.tar.xz 158 + mirror://xorg/individual/font/font-misc-ethiopic-1.0.5.tar.xz 159 + mirror://xorg/individual/font/font-misc-meltho-1.0.4.tar.xz 160 + mirror://xorg/individual/font/font-misc-misc-1.1.3.tar.xz 161 + mirror://xorg/individual/font/font-mutt-misc-1.0.4.tar.xz 162 + mirror://xorg/individual/font/font-schumacher-misc-1.1.3.tar.xz 163 + mirror://xorg/individual/font/font-screen-cyrillic-1.0.5.tar.xz 164 + mirror://xorg/individual/font/font-sony-misc-1.0.4.tar.xz 165 + mirror://xorg/individual/font/font-sun-misc-1.0.4.tar.xz 166 + mirror://xorg/individual/font/font-util-1.4.0.tar.xz 167 + mirror://xorg/individual/font/font-winitzki-cyrillic-1.0.4.tar.xz 168 + mirror://xorg/individual/font/font-xfree86-type1-1.0.5.tar.xz 169 mirror://xorg/individual/lib/libAppleWM-1.4.1.tar.bz2 170 mirror://xorg/individual/lib/libdmx-1.1.4.tar.bz2 171 mirror://xorg/individual/lib/libfontenc-1.1.4.tar.bz2 ··· 211 mirror://xorg/individual/lib/xtrans-1.4.0.tar.bz2 212 mirror://xorg/individual/proto/xcb-proto-1.14.1.tar.xz 213 mirror://xorg/individual/proto/xorgproto-2021.5.tar.bz2 214 + mirror://xorg/individual/util/bdftopcf-1.1.1.tar.xz 215 mirror://xorg/individual/util/gccmakedep-1.0.3.tar.bz2 216 mirror://xorg/individual/util/imake-1.0.8.tar.bz2 217 mirror://xorg/individual/util/lndir-1.0.4.tar.xz
-29
pkgs/servers/x11/xorg/xdm-fix-header-inclusion.patch
··· 1 - On glibc-2.36 this fails with 2 - 3 - genauth.c:45:12: fatal error: bsd/stdlib.h: No such file or directory 4 - 45 | # include <bsd/stdlib.h> 5 - | ^~~~~~~~~~~~~~ 6 - 7 - This is because the file will be included if HAVE_ARC4RANDOM is true and `__linux__` is set. 8 - However, this is wrong: arc4random is now defined in glibc-2.36 and thus stdlib.h must be included 9 - even though HAVE_ARC4RANDOM is true. 10 - 11 - diff --git a/xdm/genauth.c b/xdm/genauth.c 12 - index cd2ad61..74d0ae1 100644 13 - --- a/xdm/genauth.c 14 - +++ b/xdm/genauth.c 15 - @@ -40,13 +40,7 @@ from The Open Group. 16 - 17 - #include <errno.h> 18 - 19 - -#ifdef HAVE_ARC4RANDOM 20 - -# ifdef __linux__ 21 - -# include <bsd/stdlib.h> 22 - -# else 23 - -# include <stdlib.h> 24 - -# endif 25 - -#endif 26 - +#include <stdlib.h> 27 - 28 - #include <time.h> 29 - #define Time_t time_t
···
+3 -3
pkgs/tools/admin/syft/default.nix
··· 2 3 buildGoModule rec { 4 pname = "syft"; 5 - version = "0.83.1"; 6 7 src = fetchFromGitHub { 8 owner = "anchore"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-GZLkz2aadUiSD+v69vLq5BDgn0MSnHVkeGeAFLNDWgM="; 12 # populate values that require us to use git. By doing this in postFetch we 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 leaveDotGit = true; ··· 22 }; 23 # hash mismatch with darwin 24 proxyVendor = true; 25 - vendorHash = "sha256-hv+0qLzGd31CTDGd3STszSUO2BOMRfppyewbJKzGDTg="; 26 27 nativeBuildInputs = [ installShellFiles ]; 28
··· 2 3 buildGoModule rec { 4 pname = "syft"; 5 + version = "0.84.0"; 6 7 src = fetchFromGitHub { 8 owner = "anchore"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-1/8M4z/ezyyZRG+amzErOGIv2kRZ/sfx7AAB7V7aPX8="; 12 # populate values that require us to use git. By doing this in postFetch we 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 leaveDotGit = true; ··· 22 }; 23 # hash mismatch with darwin 24 proxyVendor = true; 25 + vendorHash = "sha256-WDxHDf+F0QdM/kK2WrStjgzq6h4IPFdsZFbO5qpILp4="; 26 27 nativeBuildInputs = [ installShellFiles ]; 28
+5
pkgs/tools/inputmethods/ibus/default.nix
··· 79 url = "https://github.com/ibus/ibus/commit/7c8abbe89403c2fcb08e3fda42049a97187e53ab.patch"; 80 hash = "sha256-59HzAdLq8ahrF7K+tFGLjTodwIiTkJGEkFe8quqIkhU="; 81 }) 82 ]; 83 84 outputs = [ "out" "dev" "installedTests" ];
··· 79 url = "https://github.com/ibus/ibus/commit/7c8abbe89403c2fcb08e3fda42049a97187e53ab.patch"; 80 hash = "sha256-59HzAdLq8ahrF7K+tFGLjTodwIiTkJGEkFe8quqIkhU="; 81 }) 82 + # fix SIGABRT in X11 https://github.com/ibus/ibus/issues/2484 83 + (fetchpatch { 84 + url = "https://github.com/ibus/ibus/commit/8f706d160631f1ffdbfa16543a38b9d5f91c16ad.patch"; 85 + hash = "sha256-YzS9TmUWW0OmheDeCeU00kFK2U2QEmKYMSRJAbu14ec="; 86 + }) 87 ]; 88 89 outputs = [ "out" "dev" "installedTests" ];
+196 -45
pkgs/tools/misc/diffoscope/default.nix
··· 1 - { lib, stdenv, fetchurl, python3Packages, docutils, help2man, installShellFiles, fetchpatch 2 - , abootimg, acl, apksigcopier, apksigner, apktool, binutils-unwrapped-all-targets, bzip2, cbfstool, cdrkit, colord, colordiff, coreutils, cpio, db, diffutils, dtc 3 - , e2fsprogs, enjarify, file, findutils, fontforge-fonttools, ffmpeg, fpc, gettext, ghc, ghostscriptX, giflib, gnumeric, gnupg, gnutar 4 - , gzip, html2text, hdf5, imagemagick, jdk, libarchive, libcaca, llvm, lz4, mono, ocaml, oggvideotools, openssh, openssl, pdftk, pgpdump, poppler_utils, procyon, qemu, R 5 - , radare2, sng, sqlite, squashfsTools, tcpdump, ubootTools, odt2txt, unzip, wabt, xmlbeans, xxd, xz, zip, zstd 6 , enableBloat ? true 7 , enableUnfree ? false 8 - # updater only 9 , writeScript 10 }: 11 12 # Note: when upgrading this package, please run the list-missing-tools.sh script as described below! 13 - python3Packages.buildPythonApplication rec { 14 pname = "diffoscope"; 15 - version = "233"; 16 17 src = fetchurl { 18 url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2"; 19 - sha256 = "sha256-A2GYnhdjkzSFnMsy99FmckiOsbRdymAdtjp55hyFLp4="; 20 }; 21 22 - outputs = [ "out" "man" ]; 23 24 patches = [ 25 ./ignore_links.patch 26 - # test_text_proper_indentation requires file >= 5.44 27 - (fetchpatch { 28 - url = "https://salsa.debian.org/reproducible-builds/diffoscope/-/commit/9fdb78ec0bbc69f1980499dfdcbf6f1dd5e55cc8.patch"; 29 - sha256 = "sha256-F0N3L9yymj2NjeIKtSnOEDsxPe+ZTb0m/M4f8LPRHg0="; 30 - }) 31 ]; 32 33 postPatch = '' ··· 38 substituteInPlace doc/Makefile --replace "../bin" "$out/bin" 39 ''; 40 41 - nativeBuildInputs = [ docutils help2man installShellFiles ]; 42 43 # Most of the non-Python dependencies here are optional command-line tools for various file-format parsers. 44 # To help figuring out what's missing from the list, run: ./pkgs/tools/misc/diffoscope/list-missing-tools.sh 45 # 46 - # Still missing these tools: docx2txt lipo otool r2pipe 47 # We filter automatically all packages for the host platform (some dependencies are not supported on Darwin, aarch64, etc.). 48 pythonPath = lib.filter (lib.meta.availableOn stdenv.hostPlatform) ([ 49 - binutils-unwrapped-all-targets bzip2 colordiff coreutils cpio db diffutils 50 - e2fsprogs file findutils fontforge-fonttools gettext gnutar gzip 51 - html2text libarchive lz4 openssl pgpdump sng sqlite squashfsTools unzip xxd 52 - xz zip zstd cdrkit dtc 53 ] 54 - ++ (with python3Packages; [ 55 - argcomplete debian defusedxml jsondiff jsbeautifier libarchive-c 56 - python-magic progressbar33 pypdf2 tlsh pyxattr rpm 57 ]) 58 - ++ lib.optionals enableBloat ( 59 - [ 60 - apksigcopier apksigner enjarify ffmpeg fpc ghc ghostscriptX giflib gnupg pdftk 61 - hdf5 imagemagick libcaca llvm jdk mono ocaml odt2txt openssh 62 - poppler_utils procyon qemu R tcpdump wabt radare2 xmlbeans 63 - abootimg cbfstool colord ubootTools 64 - ] 65 - ++ (with python3Packages; [ androguard binwalk h5py pdfminer-six guestfs ]) 66 - # oggvideotools is broken on Darwin, please put it back when it will be fixed? 67 - ++ lib.optionals stdenv.isLinux [ oggvideotools ] 68 - # This doesn't work on aarch64-darwin 69 - ++ lib.optionals (stdenv.hostPlatform != "aarch64-darwin") [ gnumeric ] 70 - # `apktool` depend on `build-tools` which requires Android SDK acceptance, therefore, the whole thing is unfree. 71 - ++ lib.optionals enableUnfree [ apktool ] 72 - )); 73 74 - nativeCheckInputs = with python3Packages; [ pytestCheckHook ] ++ pythonPath; 75 76 pytestFlagsArray = [ 77 - # always show more information when tests fail 78 "-vv" 79 ]; 80 ··· 88 "test_diff_meta" 89 "test_diff_meta2" 90 91 - # fails because it fails to determine llvm version 92 "test_item3_deflate_llvm_bitcode" 93 ] ++ lib.optionals stdenv.isDarwin [ 94 # Disable flaky tests on Darwin ··· 97 "test_symlink_root" 98 ]; 99 100 - # flaky tests on Darwin 101 disabledTestPaths = lib.optionals stdenv.isDarwin [ 102 "tests/comparators/test_git.py" 103 "tests/comparators/test_java.py" ··· 106 "tests/comparators/test_macho.py" 107 ]; 108 109 - passthru = { 110 updateScript = writeScript "update-diffoscope" '' 111 #!/usr/bin/env nix-shell 112 #!nix-shell -i bash -p curl pcre common-updater-scripts ··· 117 newVersion="$(curl -s https://diffoscope.org/ | pcregrep -o1 'Latest release: ([0-9]+)')" 118 update-source-version ${pname} "$newVersion" 119 ''; 120 - }; 121 122 meta = with lib; { 123 description = "Perform in-depth comparison of files, archives, and directories"; ··· 132 project and was formerly known as "debbindiff". 133 ''; 134 homepage = "https://diffoscope.org/"; 135 license = licenses.gpl3Plus; 136 maintainers = with maintainers; [ dezgeg danielfullmer raitobezarius ]; 137 platforms = platforms.unix;
··· 1 + { lib 2 + , stdenv 3 + , abootimg 4 + , acl 5 + , apksigcopier 6 + , apksigner 7 + , apktool 8 + , binutils-unwrapped-all-targets 9 + , bzip2 10 + , cbfstool 11 + , cdrkit 12 + , colord 13 + , colordiff 14 + , coreutils 15 + , cpio 16 + , db 17 + , diffutils 18 + , docutils 19 + , dtc 20 + , e2fsprogs 21 , enableBloat ? true 22 , enableUnfree ? false 23 + , enjarify 24 + , fetchurl 25 + , file 26 + , findutils 27 + , fontforge-fonttools 28 + , ffmpeg 29 + , fpc 30 + , gettext 31 + , ghc 32 + , ghostscriptX 33 + , giflib 34 + , gnumeric 35 + , gnupg 36 + , gnutar 37 + , gzip 38 + , hdf5 39 + , help2man 40 + , html2text 41 + , imagemagick 42 + , installShellFiles 43 + , jdk 44 + , libarchive 45 + , libcaca 46 + , libxmlb 47 + , llvm 48 + , lz4 49 + , lzip 50 + , mono 51 + , ocaml 52 + , odt2txt 53 + , oggvideotools 54 + , openssh 55 + , openssl 56 + , pdftk 57 + , pgpdump 58 + , poppler_utils 59 + , procyon 60 + , python3 61 + , qemu 62 + , R 63 + , radare2 64 + , sng 65 + , sqlite 66 + , squashfsTools 67 + , tcpdump 68 + , ubootTools 69 + , unzip 70 + , wabt 71 + , xmlbeans 72 + , xxd 73 + , xz 74 + , zip 75 + , zstd 76 + # updater only 77 , writeScript 78 }: 79 80 # Note: when upgrading this package, please run the list-missing-tools.sh script as described below! 81 + python3.pkgs.buildPythonApplication rec { 82 pname = "diffoscope"; 83 + version = "243"; 84 85 src = fetchurl { 86 url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2"; 87 + hash = "sha256-lqI9MOZJxgHZ87kax343t6Wylzv1NWcQZ1cMWgmpnRo="; 88 }; 89 90 + outputs = [ 91 + "out" 92 + "man" 93 + ]; 94 95 patches = [ 96 ./ignore_links.patch 97 ]; 98 99 postPatch = '' ··· 104 substituteInPlace doc/Makefile --replace "../bin" "$out/bin" 105 ''; 106 107 + nativeBuildInputs = [ 108 + docutils 109 + help2man 110 + installShellFiles 111 + ]; 112 113 # Most of the non-Python dependencies here are optional command-line tools for various file-format parsers. 114 # To help figuring out what's missing from the list, run: ./pkgs/tools/misc/diffoscope/list-missing-tools.sh 115 # 116 + # Still missing these tools: 117 + # aapt2 118 + # dexdump 119 + # docx2txt 120 + # getfacl 121 + # lipo 122 + # otool 123 + # r2pipe 124 + # 125 # We filter automatically all packages for the host platform (some dependencies are not supported on Darwin, aarch64, etc.). 126 pythonPath = lib.filter (lib.meta.availableOn stdenv.hostPlatform) ([ 127 + binutils-unwrapped-all-targets 128 + bzip2 129 + cdrkit 130 + colordiff 131 + coreutils 132 + cpio 133 + db 134 + diffutils 135 + dtc 136 + e2fsprogs 137 + file 138 + findutils 139 + fontforge-fonttools 140 + gettext 141 + gnutar 142 + gzip 143 + html2text 144 + libarchive 145 + libxmlb 146 + lz4 147 + lzip 148 + openssl 149 + pgpdump 150 + sng 151 + sqlite 152 + squashfsTools 153 + unzip 154 + xxd 155 + xz 156 + zip 157 + zstd 158 + ] 159 + ++ (with python3.pkgs; [ 160 + argcomplete 161 + debian 162 + defusedxml 163 + jsbeautifier 164 + jsondiff 165 + libarchive-c 166 + progressbar33 167 + pypdf2 168 + python-magic 169 + pyxattr 170 + rpm 171 + tlsh 172 + ]) 173 + ++ lib.optionals enableBloat ( 174 + [ 175 + abootimg 176 + apksigcopier 177 + apksigner 178 + cbfstool 179 + colord 180 + enjarify 181 + ffmpeg 182 + fpc 183 + ghc 184 + ghostscriptX 185 + giflib 186 + gnupg 187 + hdf5 188 + imagemagick 189 + jdk 190 + libcaca 191 + llvm 192 + mono 193 + ocaml 194 + odt2txt 195 + openssh 196 + pdftk 197 + poppler_utils 198 + procyon 199 + qemu 200 + R 201 + radare2 202 + tcpdump 203 + ubootTools 204 + wabt 205 + xmlbeans 206 ] 207 + ++ (with python3.pkgs; [ 208 + androguard 209 + binwalk 210 + guestfs 211 + h5py 212 + pdfminer-six 213 ]) 214 + # oggvideotools is broken on Darwin, please put it back when it will be fixed? 215 + ++ lib.optionals stdenv.isLinux [ oggvideotools ] 216 + # This doesn't work on aarch64-darwin 217 + ++ lib.optionals (stdenv.hostPlatform != "aarch64-darwin") [ gnumeric ] 218 + # apktool depend on build-tools which requires Android SDK acceptance, therefore, the whole thing is unfree 219 + ++ lib.optionals enableUnfree [ apktool ] 220 + )); 221 222 + nativeCheckInputs = with python3.pkgs; [ 223 + pytestCheckHook 224 + ] ++ pythonPath; 225 226 pytestFlagsArray = [ 227 + # Always show more information when tests fail 228 "-vv" 229 ]; 230 ··· 238 "test_diff_meta" 239 "test_diff_meta2" 240 241 + # Fails because it fails to determine llvm version 242 "test_item3_deflate_llvm_bitcode" 243 ] ++ lib.optionals stdenv.isDarwin [ 244 # Disable flaky tests on Darwin ··· 247 "test_symlink_root" 248 ]; 249 250 + # Flaky tests on Darwin 251 disabledTestPaths = lib.optionals stdenv.isDarwin [ 252 "tests/comparators/test_git.py" 253 "tests/comparators/test_java.py" ··· 256 "tests/comparators/test_macho.py" 257 ]; 258 259 + passthru = { 260 updateScript = writeScript "update-diffoscope" '' 261 #!/usr/bin/env nix-shell 262 #!nix-shell -i bash -p curl pcre common-updater-scripts ··· 267 newVersion="$(curl -s https://diffoscope.org/ | pcregrep -o1 'Latest release: ([0-9]+)')" 268 update-source-version ${pname} "$newVersion" 269 ''; 270 + }; 271 272 meta = with lib; { 273 description = "Perform in-depth comparison of files, archives, and directories"; ··· 282 project and was formerly known as "debbindiff". 283 ''; 284 homepage = "https://diffoscope.org/"; 285 + changelog = "https://diffoscope.org/news/diffoscope-${version}-released/"; 286 license = licenses.gpl3Plus; 287 maintainers = with maintainers; [ dezgeg danielfullmer raitobezarius ]; 288 platforms = platforms.unix;
+2 -2
pkgs/tools/misc/tbls/default.nix
··· 7 8 buildGoModule rec { 9 pname = "tbls"; 10 - version = "1.67.1"; 11 12 src = fetchFromGitHub { 13 owner = "k1LoW"; 14 repo = "tbls"; 15 rev = "v${version}"; 16 - hash = "sha256-O1ANUA2xCLl0ks+YCS8ADK5ySPYV4aSf3i5L6EN8swA="; 17 }; 18 19 vendorHash = "sha256-Xxoe+8MKwZPPapTILHAIegGPBn8vaAjU5bZrd8RvazE=";
··· 7 8 buildGoModule rec { 9 pname = "tbls"; 10 + version = "1.68.0"; 11 12 src = fetchFromGitHub { 13 owner = "k1LoW"; 14 repo = "tbls"; 15 rev = "v${version}"; 16 + hash = "sha256-qFPTDyljSKWim8sZbDM5OZ4sHL4csqXxit4UdMnOTxs="; 17 }; 18 19 vendorHash = "sha256-Xxoe+8MKwZPPapTILHAIegGPBn8vaAjU5bZrd8RvazE=";
+34
pkgs/tools/networking/softnet/default.nix
···
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchurl 4 + }: 5 + stdenvNoCC.mkDerivation (finalAttrs: { 6 + pname = "softnet"; 7 + version = "0.7.1"; 8 + 9 + src = fetchurl { 10 + url = "https://github.com/cirruslabs/softnet/releases/download/${finalAttrs.version}/softnet.tar.gz"; 11 + sha256 = "1g274x524xc85hfzxi3vb4xp720bjgk740bp6hc92d1ikmp0b664"; 12 + }; 13 + sourceRoot = "."; 14 + 15 + installPhase = '' 16 + runHook preInstall 17 + 18 + install -D softnet $out/bin/softnet 19 + install -Dm444 -t $out/share/softnet README.md LICENSE 20 + 21 + runHook postInstall 22 + ''; 23 + 24 + meta = with lib; { 25 + description = "Software networking with isolation for Tart"; 26 + homepage = "https://github.com/cirruslabs/softnet"; 27 + license = licenses.agpl3Plus; 28 + maintainers = with maintainers; [ emilytrau ]; 29 + platforms = [ "aarch64-darwin" ]; 30 + # Source build will be possible after darwin SDK 12.0 bump 31 + # https://github.com/NixOS/nixpkgs/pull/229210 32 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 33 + }; 34 + })
+15 -14
pkgs/tools/package-management/nix/default.nix
··· 1 { lib 2 , aws-sdk-cpp 3 , boehmgc 4 , callPackage ··· 118 hash = "sha256-YrmFkVpwPreiig1/BsP+DInpTdQrPmS7bEY0WUGpw+c="; 119 }; 120 121 - in lib.makeExtensible (self: { 122 nix_2_3 = (common rec { 123 version = "2.3.16"; 124 src = fetchurl { ··· 129 patch-monitorfdhup 130 ]; 131 }).override { boehmgc = boehmgc-nix_2_3; }; 132 - 133 - nix_2_4 = throw "nixVersions.nix_2_4 has been removed"; 134 - 135 - nix_2_5 = throw "nixVersions.nix_2_5 has been removed"; 136 - 137 - nix_2_6 = throw "nixVersions.nix_2_6 has been removed"; 138 - 139 - nix_2_7 = throw "nixVersions.nix_2_7 has been removed"; 140 - 141 - nix_2_8 = throw "nixVersions.nix_2_8 has been removed"; 142 - 143 - nix_2_9 = throw "nixVersions.nix_2_9 has been removed"; 144 145 nix_2_10 = common { 146 version = "2.10.3"; ··· 217 stable = self.nix_2_15; 218 219 unstable = self.nix_2_16; 220 - })
··· 1 { lib 2 + , config 3 , aws-sdk-cpp 4 , boehmgc 5 , callPackage ··· 119 hash = "sha256-YrmFkVpwPreiig1/BsP+DInpTdQrPmS7bEY0WUGpw+c="; 120 }; 121 122 + in lib.makeExtensible (self: ({ 123 nix_2_3 = (common rec { 124 version = "2.3.16"; 125 src = fetchurl { ··· 130 patch-monitorfdhup 131 ]; 132 }).override { boehmgc = boehmgc-nix_2_3; }; 133 134 nix_2_10 = common { 135 version = "2.10.3"; ··· 206 stable = self.nix_2_15; 207 208 unstable = self.nix_2_16; 209 + } // lib.optionalAttrs config.allowAliases { 210 + nix_2_4 = throw "nixVersions.nix_2_4 has been removed"; 211 + 212 + nix_2_5 = throw "nixVersions.nix_2_5 has been removed"; 213 + 214 + nix_2_6 = throw "nixVersions.nix_2_6 has been removed"; 215 + 216 + nix_2_7 = throw "nixVersions.nix_2_7 has been removed"; 217 + 218 + nix_2_8 = throw "nixVersions.nix_2_8 has been removed"; 219 + 220 + nix_2_9 = throw "nixVersions.nix_2_9 has been removed"; 221 + }))
+2 -2
pkgs/tools/security/cloudfox/default.nix
··· 5 6 buildGoModule rec { 7 pname = "cloudfox"; 8 - version = "1.11.2"; 9 10 src = fetchFromGitHub { 11 owner = "BishopFox"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-EqL5/PVQm/lfviojKoYKDnzilx7KQZ7T3EEx/or6y7E="; 15 }; 16 17 vendorHash = "sha256-lgccNq1cSg8rrHW0aMLcC5HrZXf8TvdFSmk6pbGXNqQ=";
··· 5 6 buildGoModule rec { 7 pname = "cloudfox"; 8 + version = "1.11.3"; 9 10 src = fetchFromGitHub { 11 owner = "BishopFox"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-zkZ8Glny9eERfU4DGtTOc66O7LOk5NISqUR5muxb2m0="; 15 }; 16 17 vendorHash = "sha256-lgccNq1cSg8rrHW0aMLcC5HrZXf8TvdFSmk6pbGXNqQ=";
+2 -2
pkgs/tools/security/oauth2c/default.nix
··· 5 6 buildGoModule rec { 7 pname = "oauth2c"; 8 - version = "1.8.0"; 9 10 src = fetchFromGitHub { 11 owner = "cloudentity"; 12 repo = pname; 13 rev = "v${version}"; 14 - hash = "sha256-ecG7+b1chHAJVB7WTilA1dowtisLHj2E/ORUoXXxqNY="; 15 }; 16 17 vendorHash = "sha256-euEmslrSbXPVDNZkIguq+ukt74Um4H0+lIXEyCBorjE=";
··· 5 6 buildGoModule rec { 7 pname = "oauth2c"; 8 + version = "1.9.0"; 9 10 src = fetchFromGitHub { 11 owner = "cloudentity"; 12 repo = pname; 13 rev = "v${version}"; 14 + hash = "sha256-+R3NViAnrHg/9dthF0e2dEppX5MLzHeRMYFiZutE1mU="; 15 }; 16 17 vendorHash = "sha256-euEmslrSbXPVDNZkIguq+ukt74Um4H0+lIXEyCBorjE=";
+6 -5
pkgs/tools/security/pcsc-cyberjack/default.nix
··· 2 3 let 4 version = "3.99.5"; 5 - suffix = "SP13"; 6 tarBall = "${version}final.${suffix}"; 7 8 - in stdenv.mkDerivation rec { 9 pname = "pcsc-cyberjack"; 10 inherit version; 11 12 src = fetchurl { 13 url = 14 - "http://support.reiner-sct.de/downloads/LINUX/V${version}_${suffix}/${pname}_${tarBall}.tar.gz"; 15 - sha256 = "1lx4bfz4riz7j77sl65akyxzww0ygm63w0c1b75knr1pijlv8d3b"; 16 }; 17 18 outputs = [ "out" "tools" ]; ··· 36 description = "REINER SCT cyberJack USB chipcard reader user space driver"; 37 homepage = "https://www.reiner-sct.com/"; 38 license = licenses.gpl2Plus; 39 - maintainers = with maintainers; [ aszlig ]; 40 platforms = platforms.linux; 41 }; 42 }
··· 2 3 let 4 version = "3.99.5"; 5 + suffix = "SP15"; 6 tarBall = "${version}final.${suffix}"; 7 8 + in 9 + stdenv.mkDerivation rec { 10 pname = "pcsc-cyberjack"; 11 inherit version; 12 13 src = fetchurl { 14 url = 15 + "https://support.reiner-sct.de/downloads/LINUX/V${version}_${suffix}/${pname}_${tarBall}.tar.bz2"; 16 + sha256 = "sha256-rLfCgyRQcYdWcTdnxLPvUAgy1lLtUbNRELkQsR69Rno="; 17 }; 18 19 outputs = [ "out" "tools" ]; ··· 37 description = "REINER SCT cyberJack USB chipcard reader user space driver"; 38 homepage = "https://www.reiner-sct.com/"; 39 license = licenses.gpl2Plus; 40 + maintainers = with maintainers; [ aszlig flokli ]; 41 platforms = platforms.linux; 42 }; 43 }
+8
pkgs/top-level/all-packages.nix
··· 10756 10757 pcmsolver = callPackage ../development/libraries/pcmsolver { }; 10758 10759 pgbadger = perlPackages.callPackage ../tools/misc/pgbadger { }; 10760 10761 pffft = callPackage ../development/libraries/pffft { }; ··· 12847 socat = callPackage ../tools/networking/socat { }; 12848 12849 sockperf = callPackage ../tools/networking/sockperf { }; 12850 12851 solaar = callPackage ../applications/misc/solaar { }; 12852 ··· 23512 23513 nanomsg = callPackage ../development/libraries/nanomsg { }; 23514 23515 nanovna-saver = libsForQt5.callPackage ../applications/science/electronics/nanovna-saver { }; 23516 23517 nanotts = callPackage ../tools/audio/nanotts { }; ··· 34620 styx = callPackage ../applications/misc/styx { }; 34621 34622 sway-launcher-desktop = callPackage ../applications/misc/sway-launcher-desktop { }; 34623 34624 tecoc = callPackage ../applications/editors/tecoc { }; 34625
··· 10756 10757 pcmsolver = callPackage ../development/libraries/pcmsolver { }; 10758 10759 + pegasus-frontend = libsForQt5.callPackage ../games/pegasus-frontend {}; 10760 + 10761 pgbadger = perlPackages.callPackage ../tools/misc/pgbadger { }; 10762 10763 pffft = callPackage ../development/libraries/pffft { }; ··· 12849 socat = callPackage ../tools/networking/socat { }; 12850 12851 sockperf = callPackage ../tools/networking/sockperf { }; 12852 + 12853 + softnet = callPackage ../tools/networking/softnet { }; 12854 12855 solaar = callPackage ../applications/misc/solaar { }; 12856 ··· 23516 23517 nanomsg = callPackage ../development/libraries/nanomsg { }; 23518 23519 + nanosvg = callPackage ../development/libraries/nanosvg { }; 23520 + 23521 nanovna-saver = libsForQt5.callPackage ../applications/science/electronics/nanovna-saver { }; 23522 23523 nanotts = callPackage ../tools/audio/nanotts { }; ··· 34626 styx = callPackage ../applications/misc/styx { }; 34627 34628 sway-launcher-desktop = callPackage ../applications/misc/sway-launcher-desktop { }; 34629 + 34630 + tart = callPackage ../applications/virtualization/tart { }; 34631 34632 tecoc = callPackage ../applications/editors/tecoc { }; 34633
+4
pkgs/top-level/python-packages.nix
··· 10625 10626 reedsolo = callPackage ../development/python-modules/reedsolo { }; 10627 10628 reflink = callPackage ../development/python-modules/reflink { }; 10629 10630 regenmaschine = callPackage ../development/python-modules/regenmaschine { }; ··· 10888 rpcq = callPackage ../development/python-modules/rpcq { }; 10889 10890 rpdb = callPackage ../development/python-modules/rpdb { }; 10891 10892 rpi-bad-power = callPackage ../development/python-modules/rpi-bad-power { }; 10893
··· 10625 10626 reedsolo = callPackage ../development/python-modules/reedsolo { }; 10627 10628 + referencing = callPackage ../development/python-modules/referencing { }; 10629 + 10630 reflink = callPackage ../development/python-modules/reflink { }; 10631 10632 regenmaschine = callPackage ../development/python-modules/regenmaschine { }; ··· 10890 rpcq = callPackage ../development/python-modules/rpcq { }; 10891 10892 rpdb = callPackage ../development/python-modules/rpdb { }; 10893 + 10894 + rpds-py = callPackage ../development/python-modules/rpds-py { }; 10895 10896 rpi-bad-power = callPackage ../development/python-modules/rpi-bad-power { }; 10897