Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub 52381ec0 dbabb64d

+811 -639
+6
maintainers/maintainer-list.nix
··· 26095 26095 githubId = 8100652; 26096 26096 name = "David Mell"; 26097 26097 }; 26098 + zsenai = { 26099 + email = "zarred.f@gmail.com"; 26100 + github = "ZarredFelicite"; 26101 + githubId = 54928291; 26102 + name = "Zarred Felicite"; 26103 + }; 26098 26104 zshipko = { 26099 26105 email = "zachshipko@gmail.com"; 26100 26106 github = "zshipko";
+8 -1
nixos/modules/security/wrappers/default.nix
··· 1 1 { config, lib, pkgs, ... }: 2 2 let 3 3 4 - inherit (config.security) wrapperDir wrappers; 4 + inherit (config.security) wrapperDir; 5 + 6 + wrappers = lib.filterAttrs (name: value: value.enable) config.security.wrappers; 5 7 6 8 parentWrapperDir = dirOf wrapperDir; 7 9 ··· 41 43 // { description = "file mode string"; }; 42 44 43 45 wrapperType = lib.types.submodule ({ name, config, ... }: { 46 + options.enable = lib.mkOption 47 + { type = lib.types.bool; 48 + default = true; 49 + description = "Whether to enable the wrapper."; 50 + }; 44 51 options.source = lib.mkOption 45 52 { type = lib.types.path; 46 53 description = "The absolute path to the program to be wrapped.";
+3 -1
nixos/modules/services/misc/metabase.nix
··· 15 15 services.metabase = { 16 16 enable = mkEnableOption "Metabase service"; 17 17 18 + package = lib.mkPackageOption pkgs "metabase" { }; 19 + 18 20 listen = { 19 21 ip = mkOption { 20 22 type = types.str; ··· 92 94 serviceConfig = { 93 95 DynamicUser = true; 94 96 StateDirectory = baseNameOf dataDir; 95 - ExecStart = "${pkgs.metabase}/bin/metabase"; 97 + ExecStart = lib.getExe cfg.package; 96 98 }; 97 99 }; 98 100
+1 -1
nixos/modules/services/web-apps/bookstack.nix
··· 249 249 OIDC_NAME = "MyLogin"; 250 250 OIDC_DISPLAY_NAME_CLAIMS = "name"; 251 251 OIDC_CLIENT_ID = "bookstack"; 252 - OIDC_CLIENT_SECRET = {_secret = "/run/keys/oidc_secret"}; 252 + OIDC_CLIENT_SECRET = {_secret = "/run/keys/oidc_secret";}; 253 253 OIDC_ISSUER = "https://keycloak.example.com/auth/realms/My%20Realm"; 254 254 OIDC_ISSUER_DISCOVER = true; 255 255 }
+11
nixos/tests/wrappers.nix
··· 29 29 security.apparmor.enable = true; 30 30 31 31 security.wrappers = { 32 + disabled = { 33 + enable = false; 34 + owner = "root"; 35 + group = "root"; 36 + setuid = true; 37 + source = "${busybox pkgs}/bin/busybox"; 38 + program = "disabled_busybox"; 39 + }; 32 40 suidRoot = { 33 41 owner = "root"; 34 42 group = "root"; ··· 112 120 # actually makes the apparmor policy for ping, but there's no convenient 113 121 # test for that one. 114 122 machine.succeed("ping -c 1 127.0.0.1") 123 + 124 + # Test that the disabled wrapper is not present. 125 + machine.fail("test -e /run/wrappers/bin/disabled_busybox") 115 126 ''; 116 127 } 117 128 )
+1 -1
pkgs/applications/emulators/zsnes/2.x.nix
··· 58 58 homepage = "https://github.com/xyproto/zsnes"; 59 59 description = "Maintained fork of zsnes"; 60 60 license = lib.licenses.gpl2Plus; 61 - maintainers = [ lib.maintainers.AndersonTorres ]; 61 + maintainers = [ ]; 62 62 platforms = lib.intersectLists lib.platforms.linux lib.platforms.x86; 63 63 }; 64 64 })
+4 -1
pkgs/applications/networking/cluster/nixops/unwrapped.nix
··· 25 25 }; 26 26 27 27 postPatch = '' 28 - substituteInPlace nixops/args.py --replace "@version@" "${version}-pre-${ 28 + substituteInPlace pyproject.toml --replace-fail \ 29 + 'include = ["nix/*.nix", "nixops/py.typed" ]' \ 30 + 'include = [ { path = "nix/*.nix", format = "wheel" }, { path = "nixops/py.typed", format = "wheel" } ]' 31 + substituteInPlace nixops/args.py --replace-fail "@version@" "${version}-pre-${ 29 32 lib.substring 0 7 src.rev or "dirty" 30 33 }" 31 34 '';
-1
pkgs/applications/video/mpv/default.nix
··· 306 306 license = lib.licenses.gpl2Plus; 307 307 mainProgram = "mpv"; 308 308 maintainers = with lib.maintainers; [ 309 - AndersonTorres 310 309 fpletz 311 310 globin 312 311 ma27
+1 -1
pkgs/by-name/_0/_0verkill/package.nix
··· 41 41 homepage = "https://github.com/hackndev/0verkill"; 42 42 description = "ASCII-ART bloody 2D action deathmatch-like game"; 43 43 license = with licenses; gpl2Only; 44 - maintainers = with maintainers; [ AndersonTorres ]; 44 + maintainers = with maintainers; [ ]; 45 45 platforms = with platforms; unix; 46 46 }; 47 47 }
+1 -1
pkgs/by-name/_0/_0x/package.nix
··· 28 28 description = "Colorful, configurable xxd"; 29 29 mainProgram = "0x"; 30 30 license = licenses.asl20; 31 - maintainers = with maintainers; [ AndersonTorres ]; 31 + maintainers = with maintainers; [ ]; 32 32 }; 33 33 }
+1 -1
pkgs/by-name/_1/_1oom/package.nix
··· 58 58 description = "Master of Orion (1993) game engine recreation; a more updated fork"; 59 59 license = licenses.gpl2Only; 60 60 platforms = platforms.linux; 61 - maintainers = [ maintainers.AndersonTorres ]; 61 + maintainers = [ ]; 62 62 }; 63 63 }
+1 -1
pkgs/by-name/_4/_4th/package.nix
··· 50 50 description = "Portable Forth compiler"; 51 51 license = lib.licenses.lgpl3Plus; 52 52 mainProgram = "4th"; 53 - maintainers = with lib.maintainers; [ AndersonTorres ]; 53 + maintainers = with lib.maintainers; [ ]; 54 54 platforms = lib.platforms.unix; 55 55 }; 56 56 })
+1 -1
pkgs/by-name/_4/_4ti2/package.nix
··· 33 33 homepage = "https://4ti2.github.io/"; 34 34 description = "Software package for algebraic, geometric and combinatorial problems on linear spaces"; 35 35 license = with licenses; [ gpl2Plus ]; 36 - maintainers = with maintainers; [ AndersonTorres ]; 36 + maintainers = with maintainers; [ ]; 37 37 platforms = platforms.all; 38 38 }; 39 39 }
+1 -1
pkgs/by-name/_9/_9menu/package.nix
··· 35 35 description = "Simple X11 menu program for running commands"; 36 36 mainProgram = "9menu"; 37 37 license = licenses.gpl3Plus; 38 - maintainers = with maintainers; [ AndersonTorres ]; 38 + maintainers = with maintainers; [ ]; 39 39 platforms = libX11.meta.platforms; 40 40 }; 41 41 }
+1 -1
pkgs/by-name/aa/aaphoto/package.nix
··· 49 49 one-by-one. 50 50 ''; 51 51 license = licenses.gpl3Plus; 52 - maintainers = with maintainers; [ AndersonTorres ]; 52 + maintainers = with maintainers; [ ]; 53 53 platforms = platforms.unix; 54 54 mainProgram = "aaphoto"; 55 55 };
+1 -1
pkgs/by-name/ac/ace-of-penguins/package.nix
··· 74 74 Martin Thornquist). 75 75 ''; 76 76 license = licenses.gpl2Plus; 77 - maintainers = with maintainers; [ AndersonTorres ]; 77 + maintainers = with maintainers; [ ]; 78 78 platforms = platforms.linux; 79 79 }; 80 80 }
+1 -1
pkgs/by-name/ac/acr/package.nix
··· 28 28 m4. This means that ACR is faster, smaller and easy to use. 29 29 ''; 30 30 license = lib.licenses.gpl2Plus; 31 - maintainers = with lib.maintainers; [ AndersonTorres ]; 31 + maintainers = with lib.maintainers; [ ]; 32 32 platforms = lib.platforms.all; 33 33 }; 34 34 })
+1 -1
pkgs/by-name/af/afterstep/package.nix
··· 100 100 improving aestetics, and efficient use of system resources. 101 101 ''; 102 102 license = lib.licenses.gpl2Plus; 103 - maintainers = with lib.maintainers; [ AndersonTorres ]; 103 + maintainers = with lib.maintainers; [ ]; 104 104 mainProgram = "afterstep"; 105 105 platforms = lib.platforms.linux; 106 106 };
+1 -1
pkgs/by-name/al/algol68g/package.nix
··· 68 68 ''; 69 69 license = lib.licenses.gpl3Plus; 70 70 mainProgram = "a68g"; 71 - maintainers = with lib.maintainers; [ AndersonTorres ]; 71 + maintainers = with lib.maintainers; [ ]; 72 72 platforms = lib.platforms.unix; 73 73 }; 74 74 })
+1 -1
pkgs/by-name/an/antiprism/package.nix
··· 33 33 homepage = "https://www.antiprism.com"; 34 34 description = "Collection of programs for generating, manipulating, transforming and viewing polyhedra"; 35 35 license = with licenses; [ mit ]; 36 - maintainers = with maintainers; [ AndersonTorres ]; 36 + maintainers = with maintainers; [ ]; 37 37 }; 38 38 })
+1 -1
pkgs/by-name/ar/aranym/package.nix
··· 52 52 ''; 53 53 license = with lib.licenses; [ gpl2Plus ]; 54 54 mainProgram = "aranym"; 55 - maintainers = with lib.maintainers; [ AndersonTorres ]; 55 + maintainers = with lib.maintainers; [ ]; 56 56 platforms = lib.platforms.unix; 57 57 }; 58 58 })
+1 -1
pkgs/by-name/ar/arcan/package.nix
··· 202 202 gpl2Plus 203 203 lgpl2Plus 204 204 ]; 205 - maintainers = with lib.maintainers; [ AndersonTorres ]; 205 + maintainers = with lib.maintainers; [ ]; 206 206 platforms = lib.platforms.unix; 207 207 }; 208 208 })
-1
pkgs/by-name/ar/ares/package.nix
··· 101 101 mainProgram = "ares"; 102 102 maintainers = with lib.maintainers; [ 103 103 Madouura 104 - AndersonTorres 105 104 ]; 106 105 platforms = lib.platforms.unix; 107 106 broken = stdenv.hostPlatform.isDarwin;
+1 -1
pkgs/by-name/ar/argagg/package.nix
··· 35 35 pointers into the original command line argument C-strings. 36 36 ''; 37 37 license = lib.licenses.mit; 38 - maintainers = with lib.maintainers; [ AndersonTorres ]; 38 + maintainers = with lib.maintainers; [ ]; 39 39 platforms = lib.platforms.all; 40 40 badPlatforms = [ "aarch64-darwin" ]; 41 41 };
+1 -1
pkgs/by-name/ar/argbash/package.nix
··· 46 46 homepage = "https://argbash.io/"; 47 47 description = "Bash argument parsing code generator"; 48 48 license = lib.licenses.bsd3; 49 - maintainers = with lib.maintainers; [ AndersonTorres ]; 49 + maintainers = with lib.maintainers; [ ]; 50 50 platforms = lib.platforms.all; 51 51 }; 52 52 })
+1 -1
pkgs/by-name/as/as31/package.nix
··· 39 39 description = "8031/8051 assembler"; 40 40 mainProgram = "as31"; 41 41 license = licenses.gpl2Plus; 42 - maintainers = with maintainers; [ AndersonTorres ]; 42 + maintainers = with maintainers; [ ]; 43 43 platforms = platforms.unix; 44 44 }; 45 45 }
+1 -1
pkgs/by-name/as/asl/package.nix
··· 58 58 are used in workstations and PCs. 59 59 ''; 60 60 license = licenses.gpl2Plus; 61 - maintainers = with maintainers; [ AndersonTorres ]; 61 + maintainers = with maintainers; [ ]; 62 62 platforms = platforms.unix; 63 63 }; 64 64 })
+1 -1
pkgs/by-name/at/atari800/package.nix
··· 55 55 library. 56 56 ''; 57 57 license = with lib.licenses; [ gpl2Plus ]; 58 - maintainers = with lib.maintainers; [ AndersonTorres ]; 58 + maintainers = with lib.maintainers; [ ]; 59 59 platforms = lib.platforms.linux; 60 60 }; 61 61 })
+1 -1
pkgs/by-name/at/ataripp/package.nix
··· 46 46 and the Atari 5200 game console. The emulator is auto-configurable and 47 47 will compile on a variety of systems (Linux, Solaris, Irix). 48 48 ''; 49 - maintainers = with lib.maintainers; [ AndersonTorres ]; 49 + maintainers = with lib.maintainers; [ ]; 50 50 license = with lib.licenses; [ gpl2Plus ]; 51 51 platforms = lib.platforms.unix; 52 52 };
+1 -1
pkgs/by-name/at/atasm/package.nix
··· 60 60 description = "Commandline 6502 assembler compatible with Mac/65"; 61 61 license = licenses.gpl2Plus; 62 62 changelog = "https://github.com/CycoPH/atasm/releases/tag/V${version}"; 63 - maintainers = with maintainers; [ AndersonTorres ]; 63 + maintainers = with maintainers; [ ]; 64 64 platforms = with platforms; unix; 65 65 }; 66 66 }
+43 -50
pkgs/by-name/az/azure-cli/extensions-generated.json
··· 50 50 }, 51 51 "aks-preview": { 52 52 "pname": "aks-preview", 53 - "version": "13.0.0b2", 54 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-13.0.0b2-py2.py3-none-any.whl", 55 - "hash": "sha256-lVOEs9+Vbg7vYt5jhV8agVFvfbqpxdqF58b06Zv9erY=", 53 + "version": "13.0.0b5", 54 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-13.0.0b5-py2.py3-none-any.whl", 55 + "hash": "sha256-uB+Vz7PEm28It6DyOEoWJJfWv6wfLC16SV/poGFb4TM=", 56 56 "description": "Provides a preview for upcoming AKS features" 57 57 }, 58 58 "akshybrid": { ··· 64 64 }, 65 65 "alb": { 66 66 "pname": "alb", 67 - "version": "1.0.0", 68 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/alb-1.0.0-py3-none-any.whl", 69 - "hash": "sha256-sCDNjNPaYpncl4SZ2uRSdot2UcPtjgXy8LMhvZuDVNQ=", 67 + "version": "2.0.0", 68 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/alb-2.0.0-py3-none-any.whl", 69 + "hash": "sha256-Z9Pbk2dkAqSyFDlpuyD7jsYidiTsUUnTF6GRtX0WqcM=", 70 70 "description": "Microsoft Azure Command-Line Tools ALB Extension" 71 71 }, 72 72 "alertsmanagement": { ··· 78 78 }, 79 79 "amg": { 80 80 "pname": "amg", 81 - "version": "2.5.4", 82 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.5.4-py3-none-any.whl", 83 - "hash": "sha256-4sNSdZJleUc+MzvzgLW57zrhsGLcGIpBzxHX+A7JM0g=", 81 + "version": "2.5.5", 82 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.5.5-py3-none-any.whl", 83 + "hash": "sha256-uCgv54CC2Ed5coMxxWbX1OQLbFNYIh8gRnYM87U/9WU=", 84 84 "description": "Microsoft Azure Command-Line Tools Azure Managed Grafana Extension" 85 85 }, 86 86 "amlfs": { ··· 92 92 }, 93 93 "apic-extension": { 94 94 "pname": "apic-extension", 95 - "version": "1.1.0", 96 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/apic_extension-1.1.0-py3-none-any.whl", 97 - "hash": "sha256-AeXrQi6EJoOW3bAlEjC907nUdfRj6BM/BBX7Dw4DJAs=", 95 + "version": "1.2.0b1", 96 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/apic_extension-1.2.0b1-py3-none-any.whl", 97 + "hash": "sha256-v8y6Jgg9dYCO/GuLEl44il77WC9nuKT9cRnMI43wZaM=", 98 98 "description": "Microsoft Azure Command-Line Tools ApicExtension Extension" 99 99 }, 100 100 "appservice-kube": { ··· 169 169 }, 170 170 "bastion": { 171 171 "pname": "bastion", 172 - "version": "1.3.1", 173 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.3.1-py3-none-any.whl", 174 - "hash": "sha256-DMqkBnT8Mp/p+SV/hpwxnGTWyJwChmSm/1NOuu4dxek=", 172 + "version": "1.4.0", 173 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.4.0-py3-none-any.whl", 174 + "hash": "sha256-G3kYIjI8MiRLO9ug2F6DjzL/V+I13xhIDTDhuq0t3jQ=", 175 175 "description": "Microsoft Azure Command-Line Tools Bastion Extension" 176 176 }, 177 177 "billing-benefits": { ··· 232 232 }, 233 233 "cosmosdb-preview": { 234 234 "pname": "cosmosdb-preview", 235 - "version": "1.1.0b1", 236 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-1.1.0b1-py2.py3-none-any.whl", 237 - "hash": "sha256-D8EbL83XXEhoz8Q+xL4ZwhKP0de2FrYeM2TDwaDEwdo=", 235 + "version": "1.2.0b1", 236 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-1.2.0b1-py2.py3-none-any.whl", 237 + "hash": "sha256-01tYc3cg2cTa1KDRAOHMoU3bA8heyc4ZdECgbvUPVhE=", 238 238 "description": "Microsoft Azure Command-Line Tools Cosmosdb-preview Extension" 239 239 }, 240 240 "costmanagement": { ··· 288 288 }, 289 289 "datafactory": { 290 290 "pname": "datafactory", 291 - "version": "1.0.2", 292 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-1.0.2-py3-none-any.whl", 293 - "hash": "sha256-6hNOKWO3zfK8vVAkSm8aQR2ne9TbfkLIyPllFjjIKsc=", 291 + "version": "1.0.3", 292 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-1.0.3-py3-none-any.whl", 293 + "hash": "sha256-ZvQWykXTiKMvuzc4ByUecOIFNH+j6HBWaW7xaTCa6vs=", 294 294 "description": "Microsoft Azure Command-Line Tools DataFactoryManagementClient Extension" 295 295 }, 296 296 "datamigration": { ··· 337 337 }, 338 338 "devcenter": { 339 339 "pname": "devcenter", 340 - "version": "6.2.0", 341 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-6.2.0-py3-none-any.whl", 342 - "hash": "sha256-JPT+sOq8D1Ojjy/7e4Nwd9jWuUNg1o/Dhn8C6Y4PcLc=", 340 + "version": "6.2.3", 341 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-6.2.3-py3-none-any.whl", 342 + "hash": "sha256-w0IE25YKaUtrtHzExBn2lEQC8UnXOZkbPMh2czkhAfw=", 343 343 "description": "Microsoft Azure Command-Line Tools DevCenter Extension" 344 344 }, 345 345 "diskpool": { ··· 582 582 }, 583 583 "k8s-extension": { 584 584 "pname": "k8s-extension", 585 - "version": "1.6.2", 586 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.6.2-py3-none-any.whl", 587 - "hash": "sha256-hS2nusfLVQF8yEPgX1pw6juS6V3eJZLP6JL+1R41Co8=", 585 + "version": "1.6.3", 586 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.6.3-py3-none-any.whl", 587 + "hash": "sha256-NHKwalI003mKt2/WS8q6A7nbjDyKBMQMrng+YPiDAeY=", 588 588 "description": "Microsoft Azure Command-Line Tools K8s-extension Extension" 589 589 }, 590 590 "k8s-runtime": { ··· 621 621 "url": "https://azcliprod.blob.core.windows.net/cli-extensions/logic-1.1.0-py3-none-any.whl", 622 622 "hash": "sha256-FMGHaMAu6cNwrH7tDyMgbu59NEoQOCowg7F7XhhIz80=", 623 623 "description": "Microsoft Azure Command-Line Tools Logic Extension" 624 - }, 625 - "logz": { 626 - "pname": "logz", 627 - "version": "0.1.0", 628 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/logz-0.1.0-py3-none-any.whl", 629 - "hash": "sha256-apN9u4xadYspr9Rez8EBdDpb8kkfL7pg6OpRLVt2WEA=", 630 - "description": "Microsoft Azure Command-Line Tools MicrosoftLogz Extension" 631 624 }, 632 625 "maintenance": { 633 626 "pname": "maintenance", ··· 715 708 }, 716 709 "neon": { 717 710 "pname": "neon", 718 - "version": "1.0.0b1", 719 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/neon-1.0.0b1-py3-none-any.whl", 720 - "hash": "sha256-JA3DOHznnpjq0nt30tAWLHSUyUv6ihfRt4Qa4l5Dajs=", 711 + "version": "1.0.0b2", 712 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/neon-1.0.0b2-py3-none-any.whl", 713 + "hash": "sha256-EUIO1Xjt9RaJ4RFq9YQTO2a1ZqydVs8b5PqyW0ef7AY=", 721 714 "description": "Microsoft Azure Command-Line Tools Neon Extension" 722 715 }, 723 716 "network-analytics": { ··· 729 722 }, 730 723 "networkcloud": { 731 724 "pname": "networkcloud", 732 - "version": "2.0.0", 733 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-2.0.0-py3-none-any.whl", 734 - "hash": "sha256-8ntKTSkGJwdhHJCeClEd7A0cUgRed8sV/l7qP5jAQhQ=", 735 - "description": "Support for Azure Operator Nexus network cloud commands based on 2024-07-01 API version" 725 + "version": "3.0.0b1", 726 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-3.0.0b1-py3-none-any.whl", 727 + "hash": "sha256-YGCfBmwvotljUiwopPmRGLx+4T3NOdp8YySgF9ro+KY=", 728 + "description": "Support for Azure Operator Nexus network cloud commands based on 2024-10-01-preview API version" 736 729 }, 737 730 "new-relic": { 738 731 "pname": "new-relic", ··· 750 743 }, 751 744 "nginx": { 752 745 "pname": "nginx", 753 - "version": "2.0.0b6", 754 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/nginx-2.0.0b6-py2.py3-none-any.whl", 755 - "hash": "sha256-2U93wSzmlFyCP376hCOOOYta7IeBVrvfMRLw3vHriWA=", 746 + "version": "2.0.0b8", 747 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/nginx-2.0.0b8-py2.py3-none-any.whl", 748 + "hash": "sha256-d/ELXpGjr/oR7rnIQqddcWA88X2n5BizhAuWYSNb1JM=", 756 749 "description": "Microsoft Azure Command-Line Tools Nginx Extension" 757 750 }, 758 751 "notification-hub": { ··· 764 757 }, 765 758 "nsp": { 766 759 "pname": "nsp", 767 - "version": "1.0.0b2", 768 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/nsp-1.0.0b2-py3-none-any.whl", 769 - "hash": "sha256-/r/OOPxEnapnx62EEOf6JQ9/Oa+1+HBJbOBFu3STW80=", 760 + "version": "1.0.0b3", 761 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/nsp-1.0.0b3-py3-none-any.whl", 762 + "hash": "sha256-Nsxf4BMEWkvx5od7YsLwQLZdULc5glwtcDC7qClx5T8=", 770 763 "description": "Microsoft Azure Command-Line Tools Nsp Extension" 771 764 }, 772 765 "offazure": { ··· 876 869 }, 877 870 "resource-graph": { 878 871 "pname": "resource-graph", 879 - "version": "2.1.0", 880 - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/resource_graph-2.1.0-py2.py3-none-any.whl", 881 - "hash": "sha256-YsgePWLOYMWgpIWCnQC9sMczFF7pP7YJjBTjsn7ifEA=", 872 + "version": "2.1.1", 873 + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/resource_graph-2.1.1-py2.py3-none-any.whl", 874 + "hash": "sha256-Q2suhl1/P7a+6izcAXx03UimaZEgmlq43AkkQ+yTFA8=", 882 875 "description": "Support for querying Azure resources with Resource Graph" 883 876 }, 884 877 "resource-mover": {
+2
pkgs/by-name/az/azure-cli/extensions-manual.nix
··· 90 90 propagatedBuildInputs = with python3Packages; [ 91 91 docker 92 92 pycomposefile 93 + kubernetes 93 94 ]; 94 95 meta.maintainers = with lib.maintainers; [ giggio ]; 95 96 }; ··· 154 155 compute-diagnostic-rp = throw "The 'compute-diagnostic-rp' extension for azure-cli was deprecated upstream"; # Added 2024-11-12, https://github.com/Azure/azure-cli-extensions/pull/8240 155 156 connection-monitor-preview = throw "The 'connection-monitor-preview' extension for azure-cli was deprecated upstream"; # Added 2024-11-02, https://github.com/Azure/azure-cli-extensions/pull/8194 156 157 deidservice = throw "The 'deidservice' extension for azure-cli was moved under healthcareapis"; # Added 2024-11-19, https://github.com/Azure/azure-cli-extensions/pull/8224 158 + logz = throw "The 'logz' extension for azure-cli was deprecated upstream"; # Added 2024-11-02, https://github.com/Azure/azure-cli-extensions/pull/8459 157 159 }
+2 -4
pkgs/by-name/az/azure-cli/package.nix
··· 26 26 }: 27 27 28 28 let 29 - version = "2.68.0"; 29 + version = "2.69.0"; 30 30 31 31 src = fetchFromGitHub { 32 32 name = "azure-cli-${version}-src"; 33 33 owner = "Azure"; 34 34 repo = "azure-cli"; 35 35 rev = "azure-cli-${version}"; 36 - hash = "sha256-WJkuLZUWNzbjAmOPilOK6jnjmax/3ct+ZVWQB3ho/BI="; 36 + hash = "sha256-bn6x01fVfn/jNWAN3q2oI3CHt5h575lV9YZp0pgBUxg="; 37 37 }; 38 38 39 39 # put packages that needs to be overridden in the py package scope ··· 175 175 azure-mgmt-iothub 176 176 azure-mgmt-iothubprovisioningservices 177 177 azure-mgmt-keyvault 178 - azure-mgmt-kusto 179 178 azure-mgmt-loganalytics 180 179 azure-mgmt-managedservices 181 180 azure-mgmt-managementgroups ··· 329 328 "azure.mgmt.iothub" 330 329 "azure.mgmt.iothubprovisioningservices" 331 330 "azure.mgmt.keyvault" 332 - "azure.mgmt.kusto" 333 331 "azure.mgmt.loganalytics" 334 332 "azure.mgmt.managedservices" 335 333 "azure.mgmt.managementgroups"
+9 -16
pkgs/by-name/az/azure-cli/python-packages.nix
··· 117 117 meta.downloadPage = "https://github.com/Azure/azure-cli/blob/azure-cli-${version}/src/azure-cli-telemetry/"; 118 118 }; 119 119 120 - # AttributeError: type object 'WorkspacesOperations' has no attribute 'begin_delete' 121 - azure-mgmt-batchai = 122 - overrideAzureMgmtPackage super.azure-mgmt-batchai "7.0.0b1" "zip" 123 - "sha256-mT6vvjWbq0RWQidugR229E8JeVEiobPD3XA/nDM3I6Y="; 120 + # Error loading command module 'batch': No module named 'azure.batch._model_base' 121 + azure-batch = super.azure-batch.overridePythonAttrs (attrs: rec { 122 + version = "15.0.0b1"; 123 + src = fetchPypi { 124 + pname = "azure_batch"; # Different from src.pname in the original package. 125 + inherit version; 126 + hash = "sha256-373dFY/63lIZPj5NhsmW6nI2/9JpWkNzT65eBal04u0="; 127 + }; 128 + }); 124 129 125 130 azure-mgmt-billing = 126 131 (overrideAzureMgmtPackage super.azure-mgmt-billing "6.0.0" "zip" ··· 172 177 azure-mgmt-hdinsight = 173 178 overrideAzureMgmtPackage super.azure-mgmt-hdinsight "9.0.0b3" "tar.gz" 174 179 "sha256-clSeCP8+7T1uI4Nec+zhzDK980C9+JGeeJFsNSwgD2Q="; 175 - 176 - # ValueError: The operation 'azure.mgmt.kusto.operations#ClustersOperations.delete' is invalid. 177 - azure-mgmt-kusto = 178 - (overrideAzureMgmtPackage super.azure-mgmt-kusto "0.3.0" "zip" 179 - "sha256-nri3eB/UQQ7p4gfNDDmDuvnlhBS1tKGISdCYVuNrrN4=" 180 - ).overridePythonAttrs 181 - (attrs: { 182 - propagatedBuildInputs = attrs.propagatedBuildInputs or [ ] ++ [ 183 - self.msrest 184 - self.msrestazure 185 - ]; 186 - }); 187 180 188 181 # ValueError: The operation 'azure.mgmt.media.operations#MediaservicesOperations.create_or_update' is invalid. 189 182 azure-mgmt-media =
+1 -1
pkgs/by-name/ba/barrage/package.nix
··· 27 27 description = "Destructive action game"; 28 28 license = with lib.licenses; [ gpl2Plus ]; 29 29 mainProgram = "barrage"; 30 - maintainers = with lib.maintainers; [ AndersonTorres ]; 30 + maintainers = with lib.maintainers; [ ]; 31 31 inherit (SDL.meta) platforms; 32 32 broken = stdenv.hostPlatform.isDarwin; 33 33 };
+1 -1
pkgs/by-name/ba/base16-shell-preview/package.nix
··· 26 26 description = "Browse and preview Base16 Shell themes in your terminal"; 27 27 mainProgram = "base16-shell-preview"; 28 28 license = lib.licenses.mit; 29 - maintainers = with lib.maintainers; [ AndersonTorres ]; 29 + maintainers = with lib.maintainers; [ ]; 30 30 }; 31 31 }
+1 -1
pkgs/by-name/ba/basu/package.nix
··· 55 55 description = "Sd-bus library, extracted from systemd"; 56 56 mainProgram = "basuctl"; 57 57 license = lib.licenses.lgpl21Only; 58 - maintainers = with lib.maintainers; [ AndersonTorres ]; 58 + maintainers = with lib.maintainers; [ ]; 59 59 platforms = lib.platforms.linux; 60 60 }; 61 61 })
+1 -1
pkgs/by-name/be/berry/package.nix
··· 86 86 ''; 87 87 license = lib.licenses.mit; 88 88 mainProgram = "berry"; 89 - maintainers = [ lib.maintainers.AndersonTorres ]; 89 + maintainers = [ ]; 90 90 inherit (libX11.meta) platforms; 91 91 }; 92 92 })
-1
pkgs/by-name/be/bevelbar/package.nix
··· 38 38 description = "X11 status bar with beveled borders"; 39 39 license = lib.licenses.mit; 40 40 maintainers = with lib.maintainers; [ 41 - AndersonTorres 42 41 neeasade 43 42 ]; 44 43 platforms = lib.platforms.linux;
+1 -1
pkgs/by-name/bi/biblesync/package.nix
··· 38 38 navigation, and handling of incoming packets. 39 39 ''; 40 40 license = licenses.publicDomain; 41 - maintainers = [ maintainers.AndersonTorres ]; 41 + maintainers = [ ]; 42 42 platforms = lib.platforms.linux; 43 43 }; 44 44 }
+1 -1
pkgs/by-name/bi/bibletime/package.nix
··· 68 68 description = "Powerful cross platform Bible study tool"; 69 69 license = lib.licenses.gpl2Plus; 70 70 mainProgram = "bibletime"; 71 - maintainers = with lib.maintainers; [ AndersonTorres ]; 71 + maintainers = with lib.maintainers; [ ]; 72 72 platforms = lib.platforms.linux; 73 73 }; 74 74 })
+1 -1
pkgs/by-name/bl/blockattack/package.nix
··· 70 70 changelog = "https://github.com/blockattack/blockattack-game/blob/${finalAttrs.src.rev}/CHANGELOG.md"; 71 71 license = with lib.licenses; [ gpl2Plus ]; 72 72 mainProgram = "blockattack"; 73 - maintainers = with lib.maintainers; [ AndersonTorres ]; 73 + maintainers = with lib.maintainers; [ ]; 74 74 inherit (SDL2.meta) platforms; 75 75 }; 76 76 })
+1 -1
pkgs/by-name/bo/bochs/package.nix
··· 157 157 Intel x86 CPU, common I/O devices, and a custom BIOS. 158 158 ''; 159 159 license = lib.licenses.lgpl2Plus; 160 - maintainers = with lib.maintainers; [ AndersonTorres ]; 160 + maintainers = with lib.maintainers; [ ]; 161 161 platforms = lib.platforms.unix; 162 162 }; 163 163 })
+1 -1
pkgs/by-name/bq/bqn/package.nix
··· 56 56 homepage = "https://github.com/mlochbaum/BQN/"; 57 57 description = "Original BQN implementation in Javascript"; 58 58 license = lib.licenses.isc; 59 - maintainers = with lib.maintainers; [ AndersonTorres ]; 59 + maintainers = with lib.maintainers; [ ]; 60 60 inherit (nodejs.meta) platforms; 61 61 }; 62 62 })
-1
pkgs/by-name/br/brogue-ce/package.nix
··· 65 65 homepage = "https://github.com/tmewett/BrogueCE"; 66 66 license = licenses.agpl3Plus; 67 67 maintainers = with maintainers; [ 68 - AndersonTorres 69 68 fgaz 70 69 ]; 71 70 platforms = platforms.all;
-1
pkgs/by-name/br/brogue/package.nix
··· 74 74 homepage = "https://sites.google.com/site/broguegame/"; 75 75 license = licenses.agpl3Plus; 76 76 maintainers = with maintainers; [ 77 - AndersonTorres 78 77 fgaz 79 78 ]; 80 79 platforms = [ "x86_64-linux" ];
+1 -1
pkgs/by-name/bs/bsd-finger/package.nix
··· 203 203 "daemon" = "fingerd"; 204 204 } 205 205 .${buildProduct}; 206 - maintainers = with lib.maintainers; [ AndersonTorres ]; 206 + maintainers = with lib.maintainers; [ ]; 207 207 platforms = lib.platforms.linux; 208 208 }; 209 209 })
-1
pkgs/by-name/bs/bsnes-hd/package.nix
··· 101 101 license = lib.licenses.gpl3Only; 102 102 mainProgram = "bsnes"; 103 103 maintainers = with lib.maintainers; [ 104 - AndersonTorres 105 104 stevebob 106 105 ]; 107 106 platforms = lib.platforms.unix;
+1 -1
pkgs/by-name/bt/btanks/package.nix
··· 79 79 description = "Fast 2d tank arcade game with multiplayer and split-screen modes"; 80 80 license = lib.licenses.gpl2Plus; 81 81 mainProgram = "btanks"; 82 - maintainers = with lib.maintainers; [ AndersonTorres ]; 82 + maintainers = with lib.maintainers; [ ]; 83 83 inherit (SDL.meta) platforms; 84 84 }; 85 85 })
+1 -1
pkgs/by-name/by/byacc/package.nix
··· 43 43 ''; 44 44 changelog = "https://invisible-island.net/byacc/CHANGES.html"; 45 45 license = lib.licenses.publicDomain; 46 - maintainers = with lib.maintainers; [ AndersonTorres ]; 46 + maintainers = with lib.maintainers; [ ]; 47 47 platforms = lib.platforms.unix; 48 48 }; 49 49 })
+1 -1
pkgs/by-name/by/byobu/package.nix
··· 98 98 ''; 99 99 license = with lib.licenses; [ gpl3Plus ]; 100 100 mainProgram = "byobu"; 101 - maintainers = with lib.maintainers; [ AndersonTorres ]; 101 + maintainers = with lib.maintainers; [ ]; 102 102 platforms = lib.platforms.unix; 103 103 }; 104 104 })
+1 -1
pkgs/by-name/ca/calcoo/package.nix
··· 51 51 homepage = "https://calcoo.sourceforge.net/"; 52 52 license = lib.licenses.gpl2Plus; 53 53 mainProgram = "calcoo"; 54 - maintainers = with lib.maintainers; [ AndersonTorres ]; 54 + maintainers = with lib.maintainers; [ ]; 55 55 inherit (jdk.meta) platforms; 56 56 }; 57 57 })
+1 -1
pkgs/by-name/ca/cardboard/package.nix
··· 140 140 description = "Scrollable, tiling Wayland compositor inspired on PaperWM"; 141 141 license = lib.licenses.gpl3Only; 142 142 mainProgram = "cardboard"; 143 - maintainers = with lib.maintainers; [ AndersonTorres ]; 143 + maintainers = with lib.maintainers; [ ]; 144 144 inherit (wayland.meta) platforms; 145 145 }; 146 146 }
+1 -1
pkgs/by-name/ca/cat9/package.nix
··· 32 32 homepage = "https://github.com/letoram/cat9"; 33 33 description = "User shell for LASH"; 34 34 license = with lib.licenses; [ unlicense ]; 35 - maintainers = with lib.maintainers; [ AndersonTorres ]; 35 + maintainers = with lib.maintainers; [ ]; 36 36 platforms = lib.platforms.all; 37 37 }; 38 38 })
+1 -1
pkgs/by-name/cb/cbftp/package.nix
··· 43 43 semi-graphical user interface through ncurses. 44 44 ''; 45 45 license = licenses.mit; 46 - maintainers = with maintainers; [ AndersonTorres ]; 46 + maintainers = with maintainers; [ ]; 47 47 platforms = with platforms; unix; 48 48 }; 49 49 }
+1 -1
pkgs/by-name/cc/cc65/package.nix
··· 56 56 shouldn't be too much work. 57 57 ''; 58 58 license = licenses.zlib; 59 - maintainers = with maintainers; [ AndersonTorres ]; 59 + maintainers = with maintainers; [ ]; 60 60 platforms = platforms.unix; 61 61 }; 62 62 }
-1
pkgs/by-name/cd/cdk/package.nix
··· 28 28 license = lib.licenses.mit; 29 29 maintainers = with lib.maintainers; [ 30 30 raskin 31 - AndersonTorres 32 31 ]; 33 32 inherit (ncurses.meta) platforms; 34 33 };
+1 -1
pkgs/by-name/ce/celluloid/package.nix
··· 77 77 changelog = "https://github.com/celluloid-player/celluloid/releases/tag/${finalAttrs.src.rev}"; 78 78 license = lib.licenses.gpl3Plus; 79 79 mainProgram = "celluloid"; 80 - maintainers = with lib.maintainers; [ AndersonTorres ]; 80 + maintainers = with lib.maintainers; [ ]; 81 81 platforms = lib.platforms.linux; 82 82 }; 83 83 })
-1
pkgs/by-name/ce/cemu/package.nix
··· 179 179 maintainers = with lib.maintainers; [ 180 180 zhaofengli 181 181 baduhai 182 - AndersonTorres 183 182 ]; 184 183 platforms = [ "x86_64-linux" ]; 185 184 };
+1 -1
pkgs/by-name/cg/cgreen/package.nix
··· 29 29 description = "Modern Unit Test and Mocking Framework for C and C++"; 30 30 mainProgram = "cgreen-runner"; 31 31 license = lib.licenses.isc; 32 - maintainers = [ lib.maintainers.AndersonTorres ]; 32 + maintainers = [ ]; 33 33 platforms = lib.platforms.unix; 34 34 }; 35 35 })
+1 -1
pkgs/by-name/ch/chemacs2/package.nix
··· 45 45 Think of it as a bootloader for Emacs. 46 46 ''; 47 47 license = with lib.licenses; [ gpl3Plus ]; 48 - maintainers = with lib.maintainers; [ AndersonTorres ]; 48 + maintainers = with lib.maintainers; [ ]; 49 49 platforms = lib.platforms.all; 50 50 }; 51 51 })
+1 -1
pkgs/by-name/ch/chemtool/package.nix
··· 55 55 hexagonal backdrop grids for easier alignment. 56 56 ''; 57 57 license = licenses.mit; 58 - maintainers = with maintainers; [ AndersonTorres ]; 58 + maintainers = with maintainers; [ ]; 59 59 platforms = platforms.linux; 60 60 }; 61 61 }
+1 -1
pkgs/by-name/ch/chezmoi/package.nix
··· 46 46 changelog = "https://github.com/twpayne/chezmoi/releases/tag/${argset.src.rev}"; 47 47 license = lib.licenses.mit; 48 48 mainProgram = "chezmoi"; 49 - maintainers = with lib.maintainers; [ AndersonTorres ]; 49 + maintainers = with lib.maintainers; [ ]; 50 50 }; 51 51 }; 52 52 in
+1 -2
pkgs/by-name/ch/chromium-bsu/package.nix
··· 62 62 description = "Fast paced, arcade-style, top-scrolling space shooter"; 63 63 mainProgram = "chromium-bsu"; 64 64 license = licenses.artistic1; 65 - maintainers = with maintainers; [ AndersonTorres ]; 65 + maintainers = with maintainers; [ ]; 66 66 platforms = platforms.unix; 67 67 }; 68 68 } 69 - # TODO [ AndersonTorres ]: joystick; gothic uralic font
+1 -1
pkgs/by-name/ci/ciano/package.nix
··· 72 72 homepage = "https://github.com/robertsanseries/ciano"; 73 73 description = "Multimedia file converter focused on simplicity"; 74 74 license = lib.licenses.gpl3Plus; 75 - maintainers = with lib.maintainers; [ AndersonTorres ]; 75 + maintainers = with lib.maintainers; [ ]; 76 76 platforms = lib.platforms.linux; 77 77 }; 78 78 })
+10 -14
pkgs/by-name/ci/cinny-desktop/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - darwin, 5 4 fetchFromGitHub, 6 5 rustPlatform, 7 6 cargo-tauri_1, ··· 14 13 dbus, 15 14 glib, 16 15 glib-networking, 17 - libayatana-appindicator, 18 16 webkitgtk_4_0, 19 17 }: 20 18 21 19 rustPlatform.buildRustPackage rec { 22 20 pname = "cinny-desktop"; 23 21 # We have to be using the same version as cinny-web or this isn't going to work. 24 - version = "4.2.3"; 22 + # TODO: this is temporarily not true for Cinny Desktop v4.3.1 23 + version = "4.3.1"; 25 24 26 25 src = fetchFromGitHub { 27 26 owner = "cinnyapp"; 28 27 repo = "cinny-desktop"; 29 28 tag = "v${version}"; 30 - hash = "sha256-yNGzgkZXz/VroGGnZFqo5n2v3cE6/tvpQv5U4p27row="; 29 + hash = "sha256-lVBKzajxsQ33zC6NhRLMbWK81GxCbIQPtSR61yJHUL4="; 31 30 }; 32 31 33 32 sourceRoot = "${src.name}/src-tauri"; 34 33 35 34 useFetchCargoVendor = true; 36 - cargoHash = "sha256-79MO2JaOBKVfiE7OLFR3kobnE2yH5g44mRt2TKIEfxA="; 35 + cargoHash = "sha256-a2IyJ5a11cxgHpb2WRDxVF+aoL8kNnjBNwaQpgT3goo="; 37 36 38 37 postPatch = 39 38 let 40 39 cinny' = 41 - assert lib.assertMsg ( 42 - cinny.version == version 43 - ) "cinny.version (${cinny.version}) != cinny-desktop.version (${version})"; 40 + # TODO: temporarily disabled for Cinny Desktop v4.3.1 (cinny-unwrapped is still at 4.3.0) 41 + # assert lib.assertMsg ( 42 + # cinny.version == version 43 + # ) "cinny.version (${cinny.version}) != cinny-desktop.version (${version})"; 44 44 cinny.override { 45 45 conf = { 46 46 hashRouter.enabled = true; ··· 82 82 buildInputs = 83 83 [ 84 84 openssl 85 + ] 86 + ++ lib.optionals stdenv.hostPlatform.isLinux [ 85 87 dbus 86 88 glib 87 - ] 88 - ++ lib.optionals stdenv.hostPlatform.isLinux [ 89 89 glib-networking 90 90 webkitgtk_4_0 91 - ] 92 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 93 - darwin.DarwinTools 94 - darwin.apple_sdk.frameworks.WebKit 95 91 ]; 96 92 97 93 meta = {
+3 -10
pkgs/by-name/ci/cinny-unwrapped/package.nix
··· 9 9 cairo, 10 10 pango, 11 11 stdenv, 12 - olm, 13 - nodejs_20, 14 12 }: 15 13 16 14 buildNpmPackage rec { 17 15 pname = "cinny-unwrapped"; 18 - version = "4.2.3"; 16 + version = "4.3.0"; 19 17 20 18 src = fetchFromGitHub { 21 19 owner = "cinnyapp"; 22 20 repo = "cinny"; 23 21 rev = "v${version}"; 24 - hash = "sha256-BoUQURCfEu5kocMm8T25cVl8hgZGxcxrMzQZOl2fAbY="; 22 + hash = "sha256-cRsjzIq8uFipyYYmxK4JzmG3Ba/0NaScyiebGqoZJFE="; 25 23 }; 26 24 27 - # canvas, a transitive dependency of cinny, fails to build with Node 22 28 - # https://github.com/Automattic/node-canvas/issues/2448 29 - nodejs = nodejs_20; 30 - 31 - npmDepsHash = "sha256-fDoia6evCmXZgeIKL0coRo3yunX1dfud31ROgmop2Sc="; 25 + npmDepsHash = "sha256-ZmeXZN9sW17y4aIeIthvs4YiFF77xabeVXGwr6O49lQ="; 32 26 33 27 nativeBuildInputs = [ 34 28 python3 ··· 55 49 maintainers = with lib.maintainers; [ abbe ]; 56 50 license = lib.licenses.agpl3Only; 57 51 platforms = lib.platforms.all; 58 - inherit (olm.meta) knownVulnerabilities; 59 52 }; 60 53 }
+1 -1
pkgs/by-name/cl/clevis/package.nix
··· 125 125 ''; 126 126 changelog = "https://github.com/latchset/clevis/releases/tag/v${finalAttrs.version}"; 127 127 license = lib.licenses.gpl3Plus; 128 - maintainers = with lib.maintainers; [ AndersonTorres ]; 128 + maintainers = with lib.maintainers; [ ]; 129 129 }; 130 130 })
+1 -1
pkgs/by-name/cm/cmatrix/package.nix
··· 29 29 ''; 30 30 homepage = "https://github.com/abishekvashok/cmatrix"; 31 31 platforms = ncurses.meta.platforms; 32 - maintainers = [ maintainers.AndersonTorres ]; 32 + maintainers = [ ]; 33 33 mainProgram = "cmatrix"; 34 34 }; 35 35 }
+1 -1
pkgs/by-name/co/comic-neue/package.nix
··· 38 38 ''; 39 39 license = licenses.ofl; 40 40 platforms = platforms.all; 41 - maintainers = [ maintainers.AndersonTorres ]; 41 + maintainers = [ ]; 42 42 }; 43 43 }
+1 -1
pkgs/by-name/co/connman/package.nix
··· 181 181 homepage = "https://git.kernel.org/pub/scm/network/connman/connman.git/about/"; 182 182 license = lib.licenses.gpl2Only; 183 183 mainProgram = "connmanctl"; 184 - maintainers = with lib.maintainers; [ AndersonTorres ]; 184 + maintainers = with lib.maintainers; [ ]; 185 185 platforms = lib.platforms.linux; 186 186 }; 187 187 })
+1 -1
pkgs/by-name/cr/cronie/package.nix
··· 35 35 lgpl21Plus 36 36 ]; 37 37 mainProgram = "crond"; 38 - maintainers = with lib.maintainers; [ AndersonTorres ]; 38 + maintainers = with lib.maintainers; [ ]; 39 39 platforms = lib.platforms.all; 40 40 }; 41 41 })
+1 -1
pkgs/by-name/cs/csvkit/package.nix
··· 44 44 description = "Suite of command-line tools for converting to and working with CSV"; 45 45 changelog = "https://github.com/wireservice/csvkit/blob/${version}/CHANGELOG.rst"; 46 46 license = lib.licenses.mit; 47 - maintainers = with lib.maintainers; [ AndersonTorres ]; 47 + maintainers = with lib.maintainers; [ ]; 48 48 }; 49 49 }
+1 -1
pkgs/by-name/ct/ctx/package.nix
··· 77 77 a vector graphics protocol. 78 78 ''; 79 79 license = lib.licenses.gpl3Plus; 80 - maintainers = with lib.maintainers; [ AndersonTorres ]; 80 + maintainers = with lib.maintainers; [ ]; 81 81 platforms = lib.platforms.unix; 82 82 }; 83 83 })
+1 -1
pkgs/by-name/cu/cue2pops/package.nix
··· 30 30 # Upstream license is unclear. 31 31 # <https://github.com/ErikAndren/cue2pops-mac/issues/2#issuecomment-673983298> 32 32 license = lib.licenses.unfree; 33 - maintainers = with lib.maintainers; [ AndersonTorres ]; 33 + maintainers = with lib.maintainers; [ ]; 34 34 platforms = lib.platforms.all; 35 35 mainProgram = "cue2pops"; 36 36 };
+1 -1
pkgs/by-name/cy/cyberpunk-neon/package.nix
··· 55 55 homepage = "https://github.com/Roboron3042/Cyberpunk-Neon"; 56 56 description = "Neon themes for many programs"; 57 57 license = lib.licenses.cc-by-sa-40; 58 - maintainers = with lib.maintainers; [ AndersonTorres ]; 58 + maintainers = with lib.maintainers; [ ]; 59 59 platforms = lib.platforms.all; 60 60 }; 61 61 }
-1
pkgs/by-name/cz/czkawka/package.nix
··· 106 106 license = with lib.licenses; [ mit ]; 107 107 mainProgram = "czkawka_gui"; 108 108 maintainers = with lib.maintainers; [ 109 - AndersonTorres 110 109 yanganto 111 110 _0x4A6F 112 111 ];
+1 -1
pkgs/by-name/da/dap/package.nix
··· 32 32 analyses). 33 33 ''; 34 34 license = licenses.gpl3Plus; 35 - maintainers = with maintainers; [ AndersonTorres ]; 35 + maintainers = with maintainers; [ ]; 36 36 platforms = platforms.unix; 37 37 }; 38 38 }
-3
pkgs/by-name/db/dbqn/package.nix
··· 77 77 "BQN implementation in Java" + lib.optionalString buildNativeImage ", compiled as a native image"; 78 78 license = licenses.mit; 79 79 maintainers = with maintainers; [ 80 - AndersonTorres 81 80 sternenseemann 82 81 ]; 83 82 inherit (jdk.meta) platforms; 84 83 broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/dbqn-native.x86_64-darwin 85 84 }; 86 85 } 87 - # TODO: Processing app 88 - # TODO: minimalistic JDK
+1 -1
pkgs/by-name/de/desmume/package.nix
··· 97 97 commercial nds rom titles which other DS Emulators aren't. 98 98 ''; 99 99 license = licenses.gpl2Plus; 100 - maintainers = [ maintainers.AndersonTorres ]; 100 + maintainers = [ ]; 101 101 platforms = platforms.unix; 102 102 }; 103 103 })
-1
pkgs/by-name/de/dev86/package.nix
··· 23 23 description = "C compiler, assembler and linker environment for the production of 8086 executables"; 24 24 license = lib.licenses.gpl2Plus; 25 25 maintainers = with lib.maintainers; [ 26 - AndersonTorres 27 26 sigmasquadron 28 27 ]; 29 28 platforms = lib.platforms.linux;
+1 -1
pkgs/by-name/dg/dgen-sdl/package.nix
··· 68 68 - VGM dumping 69 69 ''; 70 70 license = licenses.mit; 71 - maintainers = with maintainers; [ AndersonTorres ]; 71 + maintainers = with maintainers; [ ]; 72 72 platforms = with platforms; unix; 73 73 }; 74 74 }
-1
pkgs/by-name/di/dialog/package.nix
··· 46 46 license = lib.licenses.lgpl21Plus; 47 47 mainProgram = "dialog"; 48 48 maintainers = with lib.maintainers; [ 49 - AndersonTorres 50 49 spacefrogg 51 50 ]; 52 51 inherit (ncurses.meta) platforms;
+1 -1
pkgs/by-name/di/dillo/package.nix
··· 86 86 - Helps authors to comply with web standards by using the bug meter. 87 87 ''; 88 88 mainProgram = "dillo"; 89 - maintainers = with lib.maintainers; [ AndersonTorres ]; 89 + maintainers = with lib.maintainers; [ ]; 90 90 license = lib.licenses.gpl3Plus; 91 91 platforms = lib.platforms.linux; 92 92 };
+1 -1
pkgs/by-name/di/disk-filltest/package.nix
··· 42 42 ''; 43 43 license = lib.licenses.gpl3Plus; 44 44 mainProgram = "disk-filltest"; 45 - maintainers = with lib.maintainers; [ AndersonTorres ]; 45 + maintainers = with lib.maintainers; [ ]; 46 46 platforms = lib.platforms.all; 47 47 }; 48 48 })
+2 -2
pkgs/by-name/di/distribution/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "distribution"; 12 - version = "3.0.0-rc.2"; 12 + version = "3.0.0-rc.3"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "distribution"; 16 16 repo = "distribution"; 17 17 tag = "v${version}"; 18 - hash = "sha256-OIym8qenQl/50qUNGKlROyLnbaxfzcVaQhHyIRpEjpA="; 18 + hash = "sha256-GcgEYYBljhRyKiEex6FL4FScg+v0k7Qe7Tq6IsgXVhM="; 19 19 }; 20 20 21 21 vendorHash = null;
+2 -2
pkgs/by-name/dn/dnsproxy/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "dnsproxy"; 9 - version = "0.74.1"; 9 + version = "0.75.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "AdguardTeam"; 13 13 repo = "dnsproxy"; 14 14 rev = "v${version}"; 15 - hash = "sha256-s6VJXlWzrbHu/kOeng3gnySd5YMJFaUelZy/GoL611c="; 15 + hash = "sha256-kaGMudHELG7ggYXvAL1Yz03ZXDnzrVNj+9QN8jDnS3g="; 16 16 }; 17 17 18 18 vendorHash = "sha256-d1WrUfE31Gvgz8tw7cVdPhWf4OHsuuyEHDSn9bETCjI=";
+1 -1
pkgs/by-name/do/doomretro/package.nix
··· 72 72 ''; 73 73 license = lib.licenses.gpl3Plus; 74 74 mainProgram = "doomretro"; 75 - maintainers = with lib.maintainers; [ AndersonTorres ]; 75 + maintainers = with lib.maintainers; [ ]; 76 76 platforms = lib.platforms.unix; 77 77 }; 78 78 })
-1
pkgs/by-name/do/dosbox-staging/package.nix
··· 124 124 license = lib.licenses.gpl2Plus; 125 125 maintainers = with lib.maintainers; [ 126 126 joshuafern 127 - AndersonTorres 128 127 ]; 129 128 platforms = lib.platforms.unix; 130 129 priority = 101;
+1 -1
pkgs/by-name/do/doublecmd/package.nix
··· 69 69 description = "Two-panel graphical file manager written in Pascal"; 70 70 license = lib.licenses.gpl2Plus; 71 71 mainProgram = "doublecmd"; 72 - maintainers = with lib.maintainers; [ AndersonTorres ]; 72 + maintainers = with lib.maintainers; [ ]; 73 73 platforms = lib.platforms.linux; 74 74 }; 75 75 })
-1
pkgs/by-name/du/duckstation/package.nix
··· 143 143 mainProgram = "duckstation-qt"; 144 144 maintainers = with lib.maintainers; [ 145 145 guibou 146 - AndersonTorres 147 146 ]; 148 147 platforms = lib.platforms.linux; 149 148 };
+1 -1
pkgs/by-name/du/durden/package.nix
··· 38 38 of the desktop environment spectrum. 39 39 ''; 40 40 license = with lib.licenses; [ bsd3 ]; 41 - maintainers = with lib.maintainers; [ AndersonTorres ]; 41 + maintainers = with lib.maintainers; [ ]; 42 42 platforms = lib.platforms.all; 43 43 }; 44 44 })
+1 -1
pkgs/by-name/dv/dvdstyler/package.nix
··· 128 128 - customize navigation using DVD scripting 129 129 ''; 130 130 license = licenses.gpl2Plus; 131 - maintainers = with maintainers; [ AndersonTorres ]; 131 + maintainers = with maintainers; [ ]; 132 132 platforms = with platforms; linux; 133 133 mainProgram = "dvdstyler"; 134 134 };
+1 -1
pkgs/by-name/dw/dwl/package.nix
··· 125 125 - Tied to as few external dependencies as possible 126 126 ''; 127 127 license = lib.licenses.gpl3Only; 128 - maintainers = [ lib.maintainers.AndersonTorres ]; 128 + maintainers = [ ]; 129 129 inherit (wayland.meta) platforms; 130 130 mainProgram = "dwl"; 131 131 };
+1 -1
pkgs/by-name/dx/dxa/package.nix
··· 40 40 description = "Andre Fachat's open-source 6502 disassembler"; 41 41 mainProgram = "dxa"; 42 42 license = lib.licenses.gpl2Plus; 43 - maintainers = with lib.maintainers; [ AndersonTorres ]; 43 + maintainers = with lib.maintainers; [ ]; 44 44 platforms = with lib.platforms; unix; 45 45 }; 46 46 })
+1 -1
pkgs/by-name/ec/ecmtools/package.nix
··· 34 34 homepage = "https://github.com/alucryd/ecm-tools"; 35 35 license = lib.licenses.gpl3Plus; 36 36 mainProgram = "bin2ecm"; 37 - maintainers = with lib.maintainers; [ AndersonTorres ]; 37 + maintainers = with lib.maintainers; [ ]; 38 38 platforms = lib.platforms.all; 39 39 }; 40 40 })
+1 -1
pkgs/by-name/ed/ed/package.nix
··· 54 54 ''; 55 55 license = lib.licenses.gpl3Plus; 56 56 mainProgram = "ed"; 57 - maintainers = with lib.maintainers; [ AndersonTorres ]; 57 + maintainers = with lib.maintainers; [ ]; 58 58 platforms = lib.platforms.unix; 59 59 }; 60 60 })
+1 -1
pkgs/by-name/ed/edit/package.nix
··· 48 48 description = "Relaxing mix of Vi and ACME"; 49 49 homepage = "https://c9x.me/edit"; 50 50 license = lib.licenses.publicDomain; 51 - maintainers = with lib.maintainers; [ AndersonTorres ]; 51 + maintainers = with lib.maintainers; [ ]; 52 52 platforms = lib.platforms.unix; 53 53 mainProgram = "edit"; 54 54 };
+1 -1
pkgs/by-name/ed/edlin/package.nix
··· 26 26 homepage = "https://sourceforge.net/projects/freedos-edlin/"; 27 27 description = "FreeDOS line editor"; 28 28 license = licenses.gpl2Plus; 29 - maintainers = with maintainers; [ AndersonTorres ]; 29 + maintainers = with maintainers; [ ]; 30 30 platforms = with platforms; unix; 31 31 mainProgram = "edlin"; 32 32 };
+1 -1
pkgs/by-name/el/elvis/package.nix
··· 69 69 description = "Vi clone for Unix and other operating systems"; 70 70 license = lib.licenses.free; 71 71 mainProgram = "elvis"; 72 - maintainers = with lib.maintainers; [ AndersonTorres ]; 72 + maintainers = with lib.maintainers; [ ]; 73 73 platforms = lib.platforms.unix; 74 74 }; 75 75 })
+1 -1
pkgs/by-name/em/em/package.nix
··· 24 24 (such as the ITT's at QMC). 25 25 ''; 26 26 license = licenses.publicDomain; 27 - maintainers = with maintainers; [ AndersonTorres ]; 27 + maintainers = with maintainers; [ ]; 28 28 platforms = platforms.unix; 29 29 mainProgram = "em"; 30 30 };
+1 -1
pkgs/by-name/em/emacspeak/package.nix
··· 59 59 changelog = "https://github.com/tvraman/emacspeak/blob/${finalAttrs.src.rev}/etc/NEWS"; 60 60 license = with lib.licenses; [ gpl2Plus ]; 61 61 mainProgram = "emacspeak"; 62 - maintainers = with lib.maintainers; [ AndersonTorres ]; 62 + maintainers = with lib.maintainers; [ ]; 63 63 platforms = lib.platforms.linux; 64 64 # Emacspeak requires a minimal Emacs version; let's use the broken flag 65 65 broken = lib.versionOlder (lib.getVersion emacs) "29.1";
+1 -1
pkgs/by-name/em/emu2/package.nix
··· 21 21 homepage = "https://github.com/dmsc/emu2/"; 22 22 description = "Simple text-mode x86 + DOS emulator"; 23 23 platforms = platforms.linux; 24 - maintainers = with maintainers; [ AndersonTorres ]; 24 + maintainers = with maintainers; [ ]; 25 25 license = licenses.gpl2Plus; 26 26 mainProgram = "emu2"; 27 27 };
-1
pkgs/by-name/eu/eudev/package.nix
··· 87 87 license = lib.licenses.gpl2Plus; 88 88 maintainers = with lib.maintainers; [ 89 89 raskin 90 - AndersonTorres 91 90 ]; 92 91 pkgConfigModules = [ 93 92 "libudev"
+1 -1
pkgs/by-name/ew/eweb/package.nix
··· 32 32 mainProgram = "etangle.py"; 33 33 platforms = platforms.linux; 34 34 license = licenses.gpl3Plus; 35 - maintainers = [ maintainers.AndersonTorres ]; 35 + maintainers = [ ]; 36 36 }; 37 37 }
+2 -2
pkgs/by-name/ex/exiv2/package.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "exiv2"; 23 - version = "0.28.3"; 23 + version = "0.28.4"; 24 24 25 25 outputs = [ 26 26 "out" ··· 34 34 owner = "exiv2"; 35 35 repo = "exiv2"; 36 36 rev = "v${version}"; 37 - hash = "sha256-KD3kkIQXPcjCVZZrmbn93xYbJ8ryG0mLFbkO5AVqnTw="; 37 + hash = "sha256-3xSN1erwNn//jrpO3fAG/jVb2jOSIBQNDd7HHKecJQg="; 38 38 }; 39 39 40 40 nativeBuildInputs = [
+1 -1
pkgs/by-name/fa/fastjar/package.nix
··· 48 48 ''; 49 49 license = lib.licenses.gpl2Plus; 50 50 mainProgram = "fastjar"; 51 - maintainers = with lib.maintainers; [ AndersonTorres ]; 51 + maintainers = with lib.maintainers; [ ]; 52 52 platforms = lib.platforms.all; 53 53 }; 54 54 })
-1
pkgs/by-name/fc/fceux/package.nix
··· 67 67 license = with lib.licenses; [ gpl2Plus ]; 68 68 mainProgram = "fceux"; 69 69 maintainers = with lib.maintainers; [ 70 - AndersonTorres 71 70 sbruder 72 71 ]; 73 72 platforms = lib.platforms.linux;
-9
pkgs/by-name/fe/feishu/package.nix
··· 7 7 autoPatchelfHook, 8 8 cairo, 9 9 cups, 10 - curl, 11 10 dbus, 12 11 dpkg, 13 12 expat, ··· 87 86 atk 88 87 cairo 89 88 cups 90 - curl 91 89 dbus 92 90 expat 93 91 fontconfig ··· 154 152 # for autopatchelf 155 153 alsa-lib 156 154 cups 157 - curl 158 155 libXdamage 159 156 libXtst 160 157 libdrm ··· 199 196 200 197 mkdir -p $out/bin 201 198 ln -s $out/opt/bytedance/feishu/bytedance-feishu $out/bin/bytedance-feishu 202 - 203 - # feishu comes with a bundled libcurl.so 204 - # and has many dependencies that are hard to satisfy 205 - # e.g. openldap version 2.4 206 - # so replace it with our own libcurl.so 207 - ln -sf ${curl}/lib/libcurl.so $out/opt/bytedance/feishu/libcurl.so 208 199 ''; 209 200 210 201 passthru = {
+1 -1
pkgs/by-name/fl/fluxbox/package.nix
··· 67 67 ''; 68 68 homepage = "http://fluxbox.org/"; 69 69 license = licenses.mit; 70 - maintainers = [ maintainers.AndersonTorres ]; 70 + maintainers = [ ]; 71 71 platforms = platforms.linux; 72 72 }; 73 73 }
+1 -1
pkgs/by-name/fr/free42/package.nix
··· 100 100 homepage = "https://github.com/thomasokken/free42"; 101 101 description = "Software clone of HP-42S Calculator"; 102 102 license = with lib.licenses; [ gpl2Only ]; 103 - maintainers = with lib.maintainers; [ AndersonTorres ]; 103 + maintainers = with lib.maintainers; [ ]; 104 104 mainProgram = "free42dec"; 105 105 platforms = with lib.platforms; unix; 106 106 };
+1 -1
pkgs/by-name/fr/freecell-solver/package.nix
··· 91 91 ''; 92 92 license = lib.licenses.mit; 93 93 mainProgram = "fc-solve"; 94 - maintainers = [ lib.maintainers.AndersonTorres ]; 94 + maintainers = [ ]; 95 95 platforms = lib.platforms.unix; 96 96 }; 97 97 })
-1
pkgs/by-name/fs/fsuae-launcher/package.nix
··· 58 58 mainProgram = "fs-uae-launcher"; 59 59 maintainers = with lib.maintainers; [ 60 60 sander 61 - AndersonTorres 62 61 ]; 63 62 platforms = with lib.systems.inspect; patternLogicalAnd patterns.isx86 patterns.isLinux; 64 63 };
+1 -1
pkgs/by-name/fs/fsuae/package.nix
··· 69 69 ''; 70 70 license = lib.licenses.gpl2Plus; 71 71 mainProgram = "fs-uae"; 72 - maintainers = with lib.maintainers; [ AndersonTorres ]; 72 + maintainers = with lib.maintainers; [ ]; 73 73 platforms = with lib.systems.inspect; patternLogicalAnd patterns.isx86 patterns.isLinux; 74 74 }; 75 75 })
+1 -1
pkgs/by-name/ft/ftgl/package.nix
··· 60 60 rendering modes. 61 61 ''; 62 62 license = licenses.mit; 63 - maintainers = with maintainers; [ AndersonTorres ]; 63 + maintainers = with maintainers; [ ]; 64 64 platforms = platforms.unix; 65 65 }; 66 66 }
+1 -1
pkgs/by-name/fu/funnelweb/package.nix
··· 30 30 homepage = "http://www.ross.net/funnelweb/"; 31 31 license = licenses.gpl2; 32 32 platforms = platforms.linux; 33 - maintainers = [ maintainers.AndersonTorres ]; 33 + maintainers = [ ]; 34 34 }; 35 35 } 36 36 #TODO: implement it for other platforms
+1 -1
pkgs/by-name/fv/fvwm3/package.nix
··· 113 113 ''; 114 114 changelog = "https://github.com/fvwmorg/fvwm3/blob/${finalAttrs.src.rev}/CHANGELOG.md"; 115 115 license = lib.licenses.gpl2Plus; 116 - maintainers = with lib.maintainers; [ AndersonTorres ]; 116 + maintainers = with lib.maintainers; [ ]; 117 117 inherit (libX11.meta) platforms; 118 118 }; 119 119 })
+1 -1
pkgs/by-name/ga/galaxis/package.nix
··· 69 69 homepage = "http://catb.org/~esr/galaxis/"; 70 70 license = with lib.licenses; [ gpl2Plus ]; 71 71 mainProgram = "galaxis"; 72 - maintainers = with lib.maintainers; [ AndersonTorres ]; 72 + maintainers = with lib.maintainers; [ ]; 73 73 platforms = lib.platforms.linux; 74 74 }; 75 75 })
+1 -1
pkgs/by-name/ga/galculator/package.nix
··· 63 63 ''; 64 64 license = lib.licenses.gpl2Plus; 65 65 mainProgram = "galculator"; 66 - maintainers = with lib.maintainers; [ AndersonTorres ]; 66 + maintainers = with lib.maintainers; [ ]; 67 67 inherit (gtk3.meta) platforms; 68 68 }; 69 69 })
+1 -1
pkgs/by-name/ga/gavin-bc/package.nix
··· 50 50 description = "Gavin Howard's BC calculator implementation"; 51 51 changelog = "https://git.gavinhoward.com/gavin/bc/raw/tag/${finalAttrs.version}/NEWS.md"; 52 52 license = lib.licenses.bsd2; 53 - maintainers = [ lib.maintainers.AndersonTorres ]; 53 + maintainers = [ ]; 54 54 platforms = lib.platforms.unix; 55 55 broken = stdenv.hostPlatform.isDarwin; 56 56 };
+1 -1
pkgs/by-name/gd/gdbm/package.nix
··· 83 83 ''; 84 84 license = lib.licenses.gpl3Plus; 85 85 mainProgram = "gdbmtool"; 86 - maintainers = with lib.maintainers; [ AndersonTorres ]; 86 + maintainers = with lib.maintainers; [ ]; 87 87 platforms = lib.platforms.all; 88 88 }; 89 89 })
+1 -1
pkgs/by-name/ge/germinal/package.nix
··· 60 60 homepage = "https://github.com/Keruspe/Germinal"; 61 61 license = lib.licenses.gpl3Plus; 62 62 mainProgram = "germinal"; 63 - maintainers = with lib.maintainers; [ AndersonTorres ]; 63 + maintainers = with lib.maintainers; [ ]; 64 64 platforms = lib.platforms.unix; 65 65 }; 66 66 })
+1 -1
pkgs/by-name/gi/git-branchstack/package.nix
··· 23 23 homepage = "https://github.com/krobelus/git-branchstack"; 24 24 description = "Efficiently manage Git branches without leaving your local branch"; 25 25 license = lib.licenses.mit; 26 - maintainers = with lib.maintainers; [ AndersonTorres ]; 26 + maintainers = with lib.maintainers; [ ]; 27 27 }; 28 28 }; 29 29 in
+1 -1
pkgs/by-name/gl/glpng/package.nix
··· 34 34 homepage = "https://repo.or.cz/glpng.git/blob_plain/HEAD:/glpng.htm"; 35 35 description = "PNG loader library for OpenGL"; 36 36 license = licenses.mit; 37 - maintainers = with maintainers; [ AndersonTorres ]; 37 + maintainers = with maintainers; [ ]; 38 38 platforms = platforms.unix; 39 39 }; 40 40 }
+1 -1
pkgs/by-name/gm/gmic-qt/package.nix
··· 128 128 inherit (variants.${variant}) description; 129 129 license = lib.licenses.gpl3Plus; 130 130 mainProgram = "gmic_qt"; 131 - maintainers = with lib.maintainers; [ AndersonTorres ]; 131 + maintainers = with lib.maintainers; [ ]; 132 132 platforms = lib.platforms.unix; 133 133 }; 134 134 })
+1 -3
pkgs/by-name/gm/gmic/package.nix
··· 144 144 description = "Open and full-featured framework for image processing"; 145 145 mainProgram = "gmic"; 146 146 license = lib.licenses.cecill21; 147 - maintainers = [ 148 - lib.maintainers.AndersonTorres 149 - ]; 147 + maintainers = [ ]; 150 148 platforms = lib.platforms.unix; 151 149 }; 152 150 })
+1 -1
pkgs/by-name/gn/gnu-smalltalk/package.nix
··· 90 90 lgpl2 91 91 ]; 92 92 platforms = platforms.linux; 93 - maintainers = with maintainers; [ AndersonTorres ]; 93 + maintainers = with maintainers; [ ]; 94 94 }; 95 95 }
+1 -1
pkgs/by-name/go/gofish/package.nix
··· 18 18 description = "Lightweight Gopher server"; 19 19 homepage = "https://gofish.sourceforge.net/"; 20 20 license = licenses.gpl2Plus; 21 - maintainers = [ maintainers.AndersonTorres ]; 21 + maintainers = [ ]; 22 22 platforms = platforms.unix; 23 23 }; 24 24 }
+1 -1
pkgs/by-name/gr/grafx2/package.nix
··· 77 77 ''; 78 78 license = with lib.licenses; [ gpl2Plus ]; 79 79 mainProgram = "grafx2-sdl"; 80 - maintainers = with lib.maintainers; [ AndersonTorres ]; 80 + maintainers = with lib.maintainers; [ ]; 81 81 platforms = lib.platforms.unix; 82 82 }; 83 83 })
+1 -1
pkgs/by-name/gr/graphicsmagick/package.nix
··· 109 109 PNM, TIFF, and WebP. 110 110 ''; 111 111 license = with lib.licenses; [ mit ]; 112 - maintainers = with lib.maintainers; [ AndersonTorres ]; 112 + maintainers = with lib.maintainers; [ ]; 113 113 mainProgram = "gm"; 114 114 platforms = lib.platforms.all; 115 115 };
+1 -1
pkgs/by-name/gx/gxemul/package.nix
··· 42 42 unmodified "guest" operating systems to run. 43 43 ''; 44 44 license = licenses.bsd3; 45 - maintainers = with maintainers; [ AndersonTorres ]; 45 + maintainers = with maintainers; [ ]; 46 46 platforms = platforms.unix; 47 47 mainProgram = "gxemul"; 48 48 };
+11 -1
pkgs/by-name/h2/h2o/package.nix
··· 4 4 fetchFromGitHub, 5 5 pkg-config, 6 6 cmake, 7 + makeWrapper, 7 8 ninja, 8 9 perl, 9 10 brotli, ··· 35 36 nativeBuildInputs = [ 36 37 pkg-config 37 38 cmake 39 + makeWrapper 38 40 ninja 39 - perl 40 41 ]; 41 42 buildInputs = [ 42 43 brotli 43 44 openssl 44 45 libcap 45 46 libuv 47 + perl 46 48 zlib 47 49 wslay 48 50 ]; 51 + 52 + postInstall = '' 53 + EXES="$(find "$out/share/h2o" -type f -executable)" 54 + for exe in $EXES; do 55 + wrapProgram "$exe" \ 56 + --set "H2O_PERL" "${lib.getExe perl}" 57 + done 58 + ''; 49 59 50 60 meta = with lib; { 51 61 description = "Optimized HTTP/1.x, HTTP/2, HTTP/3 server";
+1 -1
pkgs/by-name/ha/hachimarupop/package.nix
··· 25 25 homepage = "https://github.com/noriokanisawa/HachiMaruPop"; 26 26 description = "Cute, Japanese font"; 27 27 license = lib.licenses.ofl; 28 - maintainers = with lib.maintainers; [ AndersonTorres ]; 28 + maintainers = with lib.maintainers; [ ]; 29 29 platforms = lib.platforms.all; 30 30 }; 31 31 }
+1 -1
pkgs/by-name/ha/hackedbox/package.nix
··· 58 58 description = "Bastard hacked offspring of Blackbox"; 59 59 homepage = "https://github.com/museoa/hackedbox/"; 60 60 license = licenses.gpl2Plus; 61 - maintainers = with maintainers; [ AndersonTorres ]; 61 + maintainers = with maintainers; [ ]; 62 62 inherit (libX11.meta) platforms; 63 63 }; 64 64 })
+9 -5
pkgs/by-name/ha/harper/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "harper"; 9 - version = "0.19.1"; 9 + version = "0.20.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "Automattic"; 13 13 repo = "harper"; 14 14 rev = "v${version}"; 15 - hash = "sha256-3W/pFtI8G9GOEXt1nCpoy+vp6+59Ya3oqlx2EttGEIk="; 15 + hash = "sha256-8JeF1HxsP+Y+C1g3YJ0B0+JHoRFkBjz4/T8rVr2KgGw="; 16 16 }; 17 17 18 + buildAndTestSubdir = "harper-ls"; 18 19 useFetchCargoVendor = true; 19 - cargoHash = "sha256-xPppf2YRgvGqmFBFLZl8XF5apGUX6kICE0jp2nx++io="; 20 + cargoHash = "sha256-uVjDFo5mJi4Xbq0Z+XOjy5VqXqkm0a+4xu+dVnjWXCU="; 20 21 21 22 meta = { 22 23 description = "Grammar Checker for Developers"; 23 24 homepage = "https://github.com/Automattic/harper"; 24 25 changelog = "https://github.com/Automattic/harper/releases/tag/v${version}"; 25 26 license = lib.licenses.asl20; 26 - maintainers = with lib.maintainers; [ pbsds ]; 27 - mainProgram = "harper-cli"; 27 + maintainers = with lib.maintainers; [ 28 + pbsds 29 + sumnerevans 30 + ]; 31 + mainProgram = "harper-ls"; 28 32 }; 29 33 }
+1 -1
pkgs/by-name/ha/haunt/package.nix
··· 69 69 to do things that aren't provided out-of-the-box. 70 70 ''; 71 71 license = lib.licenses.gpl3Plus; 72 - maintainers = with lib.maintainers; [ AndersonTorres ]; 72 + maintainers = with lib.maintainers; [ ]; 73 73 inherit (guile.meta) platforms; 74 74 }; 75 75 })
+1 -1
pkgs/by-name/ha/havoc/package.nix
··· 53 53 publicDomain 54 54 ]; 55 55 mainProgram = "havoc"; 56 - maintainers = with lib.maintainers; [ AndersonTorres ]; 56 + maintainers = with lib.maintainers; [ ]; 57 57 inherit (wayland.meta) platforms; 58 58 broken = stdenv.hostPlatform.isDarwin; # fatal error: 'sys/epoll.h' file not found 59 59 };
+1 -1
pkgs/by-name/hi/higan/package.nix
··· 184 184 Challenge V2. 185 185 ''; 186 186 license = lib.licenses.gpl3Plus; 187 - maintainers = with lib.maintainers; [ AndersonTorres ]; 187 + maintainers = with lib.maintainers; [ ]; 188 188 platforms = lib.platforms.unix; 189 189 broken = stdenv.hostPlatform.isDarwin; 190 190 };
+1 -3
pkgs/by-name/ht/httplib/package.nix
··· 28 28 description = "C++ header-only HTTP/HTTPS server and client library"; 29 29 changelog = "https://github.com/yhirose/cpp-httplib/releases/tag/${finalAttrs.src.rev}"; 30 30 license = lib.licenses.mit; 31 - maintainers = with lib.maintainers; [ 32 - AndersonTorres 33 - ]; 31 + maintainers = with lib.maintainers; [ ]; 34 32 platforms = lib.platforms.all; 35 33 }; 36 34 })
+1 -1
pkgs/by-name/ic/icewm/package.nix
··· 122 122 a simple session manager and a system tray. 123 123 ''; 124 124 license = licenses.lgpl2Only; 125 - maintainers = [ maintainers.AndersonTorres ]; 125 + maintainers = [ ]; 126 126 platforms = platforms.linux; 127 127 }; 128 128 })
+1 -1
pkgs/by-name/ii/iir1/package.nix
··· 24 24 downloadPage = "https://github.com/berndporr/iir1"; 25 25 changelog = "https://github.com/berndporr/iir1/releases/tag/${finalAttrs.src.rev}"; 26 26 license = with lib.licenses; [ mit ]; 27 - maintainers = with lib.maintainers; [ AndersonTorres ]; 27 + maintainers = with lib.maintainers; [ ]; 28 28 platforms = lib.platforms.unix; 29 29 }; 30 30 })
+1 -1
pkgs/by-name/in/intercal/package.nix
··· 54 54 ''; 55 55 homepage = "http://www.catb.org/~esr/intercal/"; 56 56 license = licenses.gpl2Plus; 57 - maintainers = [ maintainers.AndersonTorres ]; 57 + maintainers = [ ]; 58 58 platforms = platforms.linux; 59 59 }; 60 60 }
+1 -1
pkgs/by-name/is/isc-cron/package.nix
··· 64 64 description = "Daemon for running commands at specific times"; 65 65 license = lib.licenses.bsd0; 66 66 mainProgram = "cron"; 67 - maintainers = with lib.maintainers; [ AndersonTorres ]; 67 + maintainers = with lib.maintainers; [ ]; 68 68 platforms = lib.platforms.unix; 69 69 }; 70 70 })
+1 -1
pkgs/by-name/iw/iw/package.nix
··· 39 39 ''; 40 40 license = lib.licenses.isc; 41 41 mainProgram = "iw"; 42 - maintainers = with lib.maintainers; [ AndersonTorres ]; 42 + maintainers = with lib.maintainers; [ ]; 43 43 platforms = lib.platforms.linux; 44 44 }; 45 45 })
-1
pkgs/by-name/ja/jam/package.nix
··· 120 120 maintainers = with lib.maintainers; [ 121 121 impl 122 122 orivej 123 - AndersonTorres 124 123 ]; 125 124 platforms = lib.platforms.unix; 126 125 };
+1 -1
pkgs/by-name/jo/joe/package.nix
··· 46 46 ''; 47 47 homepage = "https://joe-editor.sourceforge.io"; 48 48 license = licenses.gpl2Plus; 49 - maintainers = with maintainers; [ AndersonTorres ]; 49 + maintainers = with maintainers; [ ]; 50 50 platforms = platforms.unix; 51 51 }; 52 52 }
+1 -1
pkgs/by-name/jo/jove/package.nix
··· 51 51 description = "Jonathan's Own Version of Emacs"; 52 52 changelog = "https://github.com/jonmacs/jove/releases/tag/${finalAttrs.version}"; 53 53 license = lib.licenses.bsd2; 54 - maintainers = with lib.maintainers; [ AndersonTorres ]; 54 + maintainers = with lib.maintainers; [ ]; 55 55 platforms = lib.platforms.unix; 56 56 # never built on Hydra: https://hydra.nixos.org/job/nixpkgs/trunk/jove.x86_64-darwin 57 57 broken = stdenv.hostPlatform.isDarwin;
+1 -1
pkgs/by-name/ju/jupp/package.nix
··· 47 47 because these behave better overall. 48 48 ''; 49 49 license = lib.licenses.gpl1Only; 50 - maintainers = with lib.maintainers; [ AndersonTorres ]; 50 + maintainers = with lib.maintainers; [ ]; 51 51 platforms = with lib.platforms; unix; 52 52 }; 53 53 }
+1 -1
pkgs/by-name/jw/jwasm/package.nix
··· 45 45 changelog = "https://github.com/Baron-von-Riedesel/JWasm/releases/tag/${finalAttrs.src.rev}"; 46 46 mainProgram = "jwasm"; 47 47 license = lib.licenses.gpl2Plus; 48 - maintainers = with lib.maintainers; [ AndersonTorres ]; 48 + maintainers = with lib.maintainers; [ ]; 49 49 platforms = lib.platforms.unix; 50 50 broken = stdenv.hostPlatform.isDarwin; 51 51 };
+1 -1
pkgs/by-name/ka/katriawm/package.nix
··· 55 55 description = "Non-reparenting, dynamic window manager with decorations"; 56 56 license = lib.licenses.mit; 57 57 mainProgram = "katriawm"; 58 - maintainers = [ lib.maintainers.AndersonTorres ]; 58 + maintainers = [ ]; 59 59 inherit (libX11.meta) platforms; 60 60 }; 61 61 })
+1 -1
pkgs/by-name/ke/kermit-terminal/package.nix
··· 45 45 changelog = "https://github.com/orhun/kermit/releases/tag/${finalAttrs.version}"; 46 46 license = lib.licenses.gpl3Only; 47 47 mainProgram = "kermit"; 48 - maintainers = with lib.maintainers; [ AndersonTorres ]; 48 + maintainers = with lib.maintainers; [ ]; 49 49 platforms = lib.platforms.unix; 50 50 }; 51 51 })
+3 -3
pkgs/by-name/ki/kine/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "kine"; 9 - version = "0.13.7"; 9 + version = "0.13.9"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "k3s-io"; 13 13 repo = "kine"; 14 14 rev = "v${version}"; 15 - hash = "sha256-4Mh86oDi++Bwe64tUh7XpOTAnfSjKCkOmYzQrqtX3us="; 15 + hash = "sha256-oM/L9kFfnS1AGVDQ0upgV7Btdgsz5pMPzPj0MJo3Fy0="; 16 16 }; 17 17 18 - vendorHash = "sha256-OzLbRSbNZ8q2TT6dqKfyqUAM1NmDU7Z9wiwGOnEO+LM="; 18 + vendorHash = "sha256-bvwAzUqezMNAVcd79UWBGLhMLx5iAtN3udIBJKbdWJs="; 19 19 20 20 ldflags = [ 21 21 "-s"
+1 -1
pkgs/by-name/ki/kirc/package.nix
··· 40 40 - Easy customized color scheme definition. 41 41 ''; 42 42 license = licenses.mit; 43 - maintainers = with maintainers; [ AndersonTorres ]; 43 + maintainers = with maintainers; [ ]; 44 44 platforms = platforms.unix; 45 45 }; 46 46 }
+2 -2
pkgs/by-name/ko/koboldcpp/package.nix
··· 40 40 in 41 41 effectiveStdenv.mkDerivation (finalAttrs: { 42 42 pname = "koboldcpp"; 43 - version = "1.82.4"; 43 + version = "1.83.1"; 44 44 45 45 src = fetchFromGitHub { 46 46 owner = "LostRuins"; 47 47 repo = "koboldcpp"; 48 48 tag = "v${finalAttrs.version}"; 49 - hash = "sha256-ObQJS6ZRdtSCTAQCq8w3gLDa1Z8z++JgDmyedTXB1F8="; 49 + hash = "sha256-mXNPH4Fw1nJaeQpYbelN8y5R5ybyOjIDlV6dEKGgdp0="; 50 50 }; 51 51 52 52 enableParallelBuilding = true;
-1
pkgs/by-name/la/labwc-tweaks/package.nix
··· 49 49 license = lib.licenses.gpl2Only; 50 50 platforms = lib.platforms.unix; 51 51 maintainers = with lib.maintainers; [ 52 - AndersonTorres 53 52 romildo 54 53 ]; 55 54 };
+1 -1
pkgs/by-name/la/lavalauncher/package.nix
··· 69 69 changelog = "https://git.sr.ht/~leon_plickat/lavalauncher/refs/${finalAttrs.src.rev}"; 70 70 license = lib.licenses.gpl3Plus; 71 71 mainProgram = "lavalauncher"; 72 - maintainers = with lib.maintainers; [ AndersonTorres ]; 72 + maintainers = with lib.maintainers; [ ]; 73 73 inherit (wayland.meta) platforms; 74 74 # meson.build:52:23: ERROR: C shared or static library 'rt' not found 75 75 # https://logs.ofborg.org/?key=nixos/nixpkgs.340239&attempt_id=1f05cada-67d2-4cfe-b6a8-4bf4571b9375
-1
pkgs/by-name/lb/lbreakout2/package.nix
··· 49 49 license = with lib.licenses; [ gpl2Plus ]; 50 50 mainProgram = "lbreakout2"; 51 51 maintainers = with lib.maintainers; [ 52 - AndersonTorres 53 52 ciil 54 53 ]; 55 54 platforms = lib.platforms.unix;
+1 -1
pkgs/by-name/lb/lbreakouthd/package.nix
··· 38 38 description = "Widescreen Breakout clone"; 39 39 license = lib.licenses.gpl2Plus; 40 40 mainProgram = "lbreakouthd"; 41 - maintainers = with lib.maintainers; [ AndersonTorres ]; 41 + maintainers = with lib.maintainers; [ ]; 42 42 inherit (SDL2.meta) platforms; 43 43 broken = stdenv.hostPlatform.isDarwin; 44 44 };
+1 -1
pkgs/by-name/le/lefthook/package.nix
··· 43 43 changelog = "https://github.com/evilmartians/lefthook/raw/v${version}/CHANGELOG.md"; 44 44 license = lib.licenses.mit; 45 45 mainProgram = "lefthook"; 46 - maintainers = with lib.maintainers; [ AndersonTorres ]; 46 + maintainers = with lib.maintainers; [ ]; 47 47 }; 48 48 }
-1
pkgs/by-name/li/libburn/package.nix
··· 47 47 license = lib.licenses.gpl2Plus; 48 48 maintainers = with lib.maintainers; [ 49 49 abbradar 50 - AndersonTorres 51 50 ]; 52 51 mainProgram = "cdrskin"; 53 52 platforms = lib.platforms.unix;
+1 -1
pkgs/by-name/li/libbytesize/package.nix
··· 69 69 description = "Tiny library providing a C 'class' for working with arbitrary big sizes in bytes"; 70 70 license = lib.licenses.lgpl2Plus; 71 71 mainProgram = "bscalc"; 72 - maintainers = with lib.maintainers; [ AndersonTorres ]; 72 + maintainers = with lib.maintainers; [ ]; 73 73 platforms = lib.platforms.linux; 74 74 }; 75 75 })
+1 -1
pkgs/by-name/li/libcaca/package.nix
··· 82 82 Libcaca was written by Sam Hocevar and Jean-Yves Lamoureux. 83 83 ''; 84 84 license = licenses.wtfpl; 85 - maintainers = with maintainers; [ AndersonTorres ]; 85 + maintainers = with maintainers; [ ]; 86 86 platforms = platforms.unix; 87 87 }; 88 88 }
+1 -1
pkgs/by-name/li/libedit/package.nix
··· 61 61 similar to those found in GNU Readline. 62 62 ''; 63 63 license = with lib.licenses; [ bsd3 ]; 64 - maintainers = with lib.maintainers; [ AndersonTorres ]; 64 + maintainers = with lib.maintainers; [ ]; 65 65 platforms = lib.platforms.all; 66 66 }; 67 67 })
+1 -1
pkgs/by-name/li/libisoburn/package.nix
··· 67 67 changelog = "https://dev.lovelyhq.com/libburnia/libisoburn/src/tag/${finalAttrs.src.rev}/ChangeLog"; 68 68 license = lib.licenses.gpl2Plus; 69 69 mainProgram = "osirrox"; 70 - maintainers = with lib.maintainers; [ AndersonTorres ]; 70 + maintainers = with lib.maintainers; [ ]; 71 71 inherit (libisofs.meta) platforms; 72 72 }; 73 73 })
-1
pkgs/by-name/li/libisofs/package.nix
··· 51 51 license = lib.licenses.gpl2Plus; 52 52 maintainers = with lib.maintainers; [ 53 53 abbradar 54 - AndersonTorres 55 54 ]; 56 55 platforms = lib.platforms.unix; 57 56 };
+1 -1
pkgs/by-name/li/libmpdclient/package.nix
··· 32 32 homepage = "https://www.musicpd.org/libs/libmpdclient/"; 33 33 changelog = "https://raw.githubusercontent.com/MusicPlayerDaemon/libmpdclient/${finalAttrs.src.rev}/NEWS"; 34 34 license = with lib.licenses; [ bsd2 ]; 35 - maintainers = with lib.maintainers; [ AndersonTorres ]; 35 + maintainers = with lib.maintainers; [ ]; 36 36 platforms = lib.platforms.unix; 37 37 }; 38 38 })
-1
pkgs/by-name/li/libpkgconf/package.nix
··· 71 71 mainProgram = "pkgconf"; 72 72 maintainers = with lib.maintainers; [ 73 73 zaninime 74 - AndersonTorres 75 74 ]; 76 75 platforms = lib.platforms.all; 77 76 };
+1 -1
pkgs/by-name/li/libremidi/package.nix
··· 56 56 homepage = "https://github.com/jcelerier/libremidi"; 57 57 description = "Modern C++ MIDI real-time & file I/O library"; 58 58 license = lib.licenses.bsd2; 59 - maintainers = with lib.maintainers; [ AndersonTorres ]; 59 + maintainers = with lib.maintainers; [ ]; 60 60 platforms = lib.platforms.all; 61 61 }; 62 62 })
+1 -1
pkgs/by-name/li/librep/package.nix
··· 49 49 language but is also suitable for standalone scripts. 50 50 ''; 51 51 license = lib.licenses.gpl2Plus; 52 - maintainers = [ lib.maintainers.AndersonTorres ]; 52 + maintainers = [ ]; 53 53 platforms = lib.platforms.unix; 54 54 }; 55 55 })
+1 -1
pkgs/by-name/li/libtap/package.nix
··· 32 32 ''; 33 33 homepage = "https://www.shlomifish.org/open-source/projects/libtap/"; 34 34 license = licenses.bsd3; 35 - maintainers = [ maintainers.AndersonTorres ]; 35 + maintainers = [ ]; 36 36 platforms = platforms.unix; 37 37 }; 38 38 }
+1 -1
pkgs/by-name/li/libtcod/package.nix
··· 45 45 homepage = "http://roguecentral.org/doryen/libtcod/"; 46 46 license = lib.licenses.bsd3; 47 47 platforms = lib.platforms.linux; 48 - maintainers = with lib.maintainers; [ AndersonTorres ]; 48 + maintainers = with lib.maintainers; [ ]; 49 49 }; 50 50 }
+1 -1
pkgs/by-name/li/libverto/package.nix
··· 47 47 offload the choice of the main loop to the application. 48 48 ''; 49 49 license = licenses.mit; 50 - maintainers = with maintainers; [ AndersonTorres ]; 50 + maintainers = with maintainers; [ ]; 51 51 platforms = platforms.unix; 52 52 }; 53 53 })
+1 -1
pkgs/by-name/li/libz/package.nix
··· 30 30 homepage = "https://sortix.org/libz/"; 31 31 description = "Clean fork of zlib"; 32 32 license = [ lib.licenses.zlib ]; 33 - maintainers = with lib.maintainers; [ AndersonTorres ]; 33 + maintainers = with lib.maintainers; [ ]; 34 34 platforms = lib.platforms.unix; 35 35 }; 36 36 })
+1 -1
pkgs/by-name/li/lightning/package.nix
··· 48 48 it abstracts over the target CPU, as it exposes to the clients a 49 49 standardized RISC instruction set inspired by the MIPS and SPARC chips. 50 50 ''; 51 - maintainers = with lib.maintainers; [ AndersonTorres ]; 51 + maintainers = with lib.maintainers; [ ]; 52 52 license = with lib.licenses; [ lgpl3Plus ]; 53 53 platforms = lib.platforms.unix; 54 54 broken = stdenv.hostPlatform.isDarwin; # failing tests
+1 -1
pkgs/by-name/li/live555/package.nix
··· 107 107 description = "Set of C++ libraries for multimedia streaming, using open standard protocols (RTP/RTCP, RTSP, SIP)"; 108 108 changelog = "http://www.live555.com/liveMedia/public/changelog.txt"; 109 109 license = with lib.licenses; [ lgpl21Plus ]; 110 - maintainers = with lib.maintainers; [ AndersonTorres ]; 110 + maintainers = with lib.maintainers; [ ]; 111 111 platforms = lib.platforms.unix; 112 112 }; 113 113 })
+1 -1
pkgs/by-name/lo/lolcode/package.nix
··· 38 38 whose keywords are LOLspeak. 39 39 ''; 40 40 license = licenses.gpl3; 41 - maintainers = [ maintainers.AndersonTorres ]; 41 + maintainers = [ ]; 42 42 mainProgram = "lolcode-lci"; 43 43 platforms = lib.platforms.unix; 44 44 };
+47
pkgs/by-name/lo/lowfi/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + pkg-config, 6 + openssl, 7 + stdenv, 8 + darwin, 9 + alsa-lib, 10 + }: 11 + 12 + rustPlatform.buildRustPackage rec { 13 + pname = "lowfi"; 14 + version = "1.5.6"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "talwat"; 18 + repo = "lowfi"; 19 + tag = version; 20 + hash = "sha256-pfvTOoWsXukZTfev9+Ifcp3YYIqtYZgmEVPHuqD4IsM="; 21 + }; 22 + 23 + cargoHash = "sha256-TGj3xH18xanhA25r+gTtLPa7KQKS9WEyGl412pnFZdw="; 24 + 25 + buildFeatures = [ "mpris" ]; 26 + 27 + nativeBuildInputs = [ 28 + pkg-config 29 + rustPlatform.bindgenHook 30 + ]; 31 + 32 + buildInputs = 33 + [ 34 + openssl 35 + ] 36 + ++ lib.optionals stdenv.hostPlatform.isLinux [ 37 + alsa-lib 38 + ]; 39 + 40 + meta = { 41 + description = "Extremely simple lofi player"; 42 + homepage = "https://github.com/talwat/lowfi"; 43 + license = lib.licenses.mit; 44 + maintainers = with lib.maintainers; [ zsenai ]; 45 + mainProgram = "lowfi"; 46 + }; 47 + }
+1 -1
pkgs/by-name/lp/lpairs2/package.nix
··· 36 36 description = "Matching the pairs - a typical Memory Game"; 37 37 license = with lib.licenses; [ gpl2Plus ]; 38 38 mainProgram = "lpairs2"; 39 - maintainers = with lib.maintainers; [ AndersonTorres ]; 39 + maintainers = with lib.maintainers; [ ]; 40 40 platforms = lib.platforms.unix; 41 41 broken = stdenv.hostPlatform.isDarwin; 42 42 };
+1 -1
pkgs/by-name/lt/ltris/package.nix
··· 34 34 description = "Tetris clone from the LGames series"; 35 35 license = with lib.licenses; [ gpl2Plus ]; 36 36 mainProgram = "ltris"; 37 - maintainers = with lib.maintainers; [ AndersonTorres ]; 37 + maintainers = with lib.maintainers; [ ]; 38 38 inherit (SDL.meta) platforms; 39 39 broken = stdenv.hostPlatform.isDarwin; 40 40 };
+1 -1
pkgs/by-name/lu/luakit/package.nix
··· 95 95 ''; 96 96 license = lib.licenses.gpl3Only; 97 97 mainProgram = "luakit"; 98 - maintainers = with lib.maintainers; [ AndersonTorres ]; 98 + maintainers = with lib.maintainers; [ ]; 99 99 platforms = lib.platforms.unix; 100 100 }; 101 101 })
+1 -1
pkgs/by-name/lu/luckybackup/package.nix
··· 67 67 ''; 68 68 license = lib.licenses.gpl3Plus; 69 69 mainProgram = "luckybackup"; 70 - maintainers = with lib.maintainers; [ AndersonTorres ]; 70 + maintainers = with lib.maintainers; [ ]; 71 71 platforms = lib.platforms.linux; 72 72 }; 73 73 })
+1 -1
pkgs/by-name/lu/lukesmithxyz-st/package.nix
··· 51 51 homepage = "https://github.com/LukeSmithxyz/st"; 52 52 description = "Luke Smith's fork of st"; 53 53 license = licenses.mit; 54 - maintainers = with maintainers; [ AndersonTorres ]; 54 + maintainers = with maintainers; [ ]; 55 55 platforms = platforms.linux; 56 56 }; 57 57 }
+1 -1
pkgs/by-name/lw/lwm/package.nix
··· 52 52 ''; 53 53 homepage = "http://www.jfc.org.uk/software/lwm.html"; 54 54 license = licenses.gpl2; 55 - maintainers = [ maintainers.AndersonTorres ]; 55 + maintainers = [ ]; 56 56 platforms = platforms.linux; 57 57 mainProgram = "lwm"; 58 58 };
+1 -1
pkgs/by-name/lz/lzsa/package.nix
··· 30 30 description = "Byte-aligned, efficient lossless packer that is optimized for fast decompression on 8-bit micros"; 31 31 mainProgram = "lzsa"; 32 32 license = with lib.licenses; [ cc0 ]; 33 - maintainers = with lib.maintainers; [ AndersonTorres ]; 33 + maintainers = with lib.maintainers; [ ]; 34 34 platforms = lib.platforms.unix; 35 35 }; 36 36 })
+1 -1
pkgs/by-name/ma/marst/package.nix
··· 49 49 from some other representations to MARST representation. 50 50 ''; 51 51 license = licenses.gpl3Plus; 52 - maintainers = with maintainers; [ AndersonTorres ]; 52 + maintainers = with maintainers; [ ]; 53 53 platforms = platforms.unix; 54 54 }; 55 55 }
+1 -1
pkgs/by-name/mc/mcpp/package.nix
··· 30 30 description = "Matsui's C preprocessor"; 31 31 mainProgram = "mcpp"; 32 32 license = licenses.bsd2; 33 - maintainers = with maintainers; [ AndersonTorres ]; 33 + maintainers = with maintainers; [ ]; 34 34 platforms = platforms.unix; 35 35 }; 36 36 })
+1 -1
pkgs/by-name/md/md-tangle/package.nix
··· 25 25 description = "Generates (\"tangles\") source code from Markdown documents"; 26 26 mainProgram = "md-tangle"; 27 27 license = licenses.mit; 28 - maintainers = with maintainers; [ AndersonTorres ]; 28 + maintainers = with maintainers; [ ]; 29 29 }; 30 30 }
+1 -1
pkgs/by-name/md/md4c/package.nix
··· 70 70 ''; 71 71 changelog = "https://github.com/mity/md4c/blob/${finalAttrs.src.rev}/CHANGELOG.md"; 72 72 license = with lib.licenses; [ mit ]; 73 - maintainers = with lib.maintainers; [ AndersonTorres ]; 73 + maintainers = with lib.maintainers; [ ]; 74 74 mainProgram = "md2html"; 75 75 platforms = lib.platforms.all; 76 76 };
+1 -1
pkgs/by-name/md/mdds/package.nix
··· 34 34 description = "Collection of multi-dimensional data structure and indexing algorithms"; 35 35 changelog = "https://gitlab.com/mdds/mdds/-/blob/${finalAttrs.version}/CHANGELOG"; 36 36 license = licenses.mit; 37 - maintainers = [ maintainers.AndersonTorres ]; 37 + maintainers = [ ]; 38 38 platforms = platforms.unix; 39 39 }; 40 40 })
+1 -1
pkgs/by-name/me/mednafen-server/package.nix
··· 24 24 mainProgram = "mednafen-server"; 25 25 homepage = "https://mednafen.github.io/"; 26 26 license = lib.licenses.gpl2Plus; 27 - maintainers = with lib.maintainers; [ AndersonTorres ]; 27 + maintainers = with lib.maintainers; [ ]; 28 28 platforms = lib.platforms.unix; 29 29 }; 30 30 })
+1 -1
pkgs/by-name/me/mednafen/package.nix
··· 110 110 ''; 111 111 license = lib.licenses.gpl2Plus; 112 112 mainProgram = "mednafen"; 113 - maintainers = with lib.maintainers; [ AndersonTorres ]; 113 + maintainers = with lib.maintainers; [ ]; 114 114 platforms = lib.platforms.unix; 115 115 }; 116 116 })
+1 -1
pkgs/by-name/me/mednaffe/package.nix
··· 46 46 mainProgram = "mednaffe"; 47 47 homepage = "https://github.com/AmatCoder/mednaffe"; 48 48 license = lib.licenses.gpl3Plus; 49 - maintainers = with lib.maintainers; [ AndersonTorres ]; 49 + maintainers = with lib.maintainers; [ ]; 50 50 platforms = lib.platforms.unix; 51 51 }; 52 52 })
-1
pkgs/by-name/me/melonDS/package.nix
··· 103 103 license = with lib.licenses; [ gpl3Plus ]; 104 104 mainProgram = "melonDS"; 105 105 maintainers = with lib.maintainers; [ 106 - AndersonTorres 107 106 artemist 108 107 benley 109 108 shamilton
+1 -1
pkgs/by-name/mg/mgba/package.nix
··· 99 99 changelog = "https://raw.githubusercontent.com/mgba-emu/mgba/${finalAttrs.src.rev}/CHANGES"; 100 100 license = with lib.licenses; [ mpl20 ]; 101 101 mainProgram = "mgba"; 102 - maintainers = with lib.maintainers; [ AndersonTorres ]; 102 + maintainers = with lib.maintainers; [ ]; 103 103 platforms = lib.platforms.linux; 104 104 broken = enableDiscordRpc; # Some obscure `ld` error 105 105 };
+2 -2
pkgs/by-name/mi/microcode-intel/package.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "microcode-intel"; 11 - version = "20241112"; 11 + version = "20250211"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "intel"; 15 15 repo = "Intel-Linux-Processor-Microcode-Data-Files"; 16 16 rev = "microcode-${version}"; 17 - hash = "sha256-dvXt4SX/90oFM4GR9R7C2udhZ+plxnabOZpbtwN3V8Q="; 17 + hash = "sha256-XfBVygHmUAV287MyBreoAyGcffGBEY7YKyj6AOytXZ4="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+1
pkgs/by-name/mk/mkbootimage/package.nix
··· 32 32 runHook preInstall 33 33 34 34 install -Dm755 mkbootimage -t $out/bin 35 + install -Dm755 exbootimage -t $out/bin 35 36 36 37 runHook postInstall 37 38 '';
-3
pkgs/by-name/mk/mksh/package.nix
··· 61 61 unicode-dfs-2016 62 62 ]; 63 63 maintainers = with lib.maintainers; [ 64 - AndersonTorres 65 64 joachifm 66 65 ]; 67 66 platforms = lib.platforms.unix; 68 67 }; 69 68 }) 70 - # TODO [ AndersonTorres ]: lksh 71 - # TODO [ AndersonTorres ]: a more accurate licensing info
+1 -1
pkgs/by-name/mo/moe/package.nix
··· 44 44 delimiter matching, text conversion from/to UTF-8, romanization, etc. 45 45 ''; 46 46 license = lib.licenses.gpl2Plus; 47 - maintainers = with lib.maintainers; [ AndersonTorres ]; 47 + maintainers = with lib.maintainers; [ ]; 48 48 platforms = lib.platforms.unix; 49 49 mainProgram = "moe"; 50 50 };
+1 -1
pkgs/by-name/mo/monaspace/package.nix
··· 54 54 ''; 55 55 homepage = "https://monaspace.githubnext.com/"; 56 56 license = lib.licenses.ofl; 57 - maintainers = with lib.maintainers; [ AndersonTorres ]; 57 + maintainers = with lib.maintainers; [ ]; 58 58 platforms = lib.platforms.all; 59 59 }; 60 60 })
+3 -3
pkgs/by-name/mo/moonfire-nvr/package.nix
··· 15 15 16 16 let 17 17 pname = "moonfire-nvr"; 18 - version = "0.7.17"; 18 + version = "0.7.20"; 19 19 src = fetchFromGitHub { 20 20 owner = "scottlamb"; 21 21 repo = "moonfire-nvr"; 22 22 tag = "v${version}"; 23 - hash = "sha256-kh+SPM08pnVFxKSZ6Gb2LP7Wa8j0VopknZK2urMIFNk="; 23 + hash = "sha256-0EaGqZUmYGxLHcJAhlbG2wZMDiVv8U1bcTQqMx0aTo0="; 24 24 }; 25 25 ui = stdenv.mkDerivation (finalAttrs: { 26 26 inherit version src; ··· 51 51 52 52 useFetchCargoVendor = true; 53 53 54 - cargoHash = "sha256-fSzwA4R6Z/Awt52ZYhUvy2jhzrZiLU6IXTN8jvjmbTI="; 54 + cargoHash = "sha256-+L4XofUFvhJDPGv4fAGYXFNpuNd01k/P63LH2tXXHE0="; 55 55 56 56 env.VERSION = "v${version}"; 57 57
+1 -1
pkgs/by-name/mp/mpc/package.nix
··· 50 50 changelog = "https://raw.githubusercontent.com/MusicPlayerDaemon/mpc/refs/heads/master/NEWS"; 51 51 license = lib.licenses.gpl2Plus; 52 52 mainProgram = "mpc"; 53 - maintainers = with lib.maintainers; [ AndersonTorres ]; 53 + maintainers = with lib.maintainers; [ ]; 54 54 platforms = lib.platforms.unix; 55 55 }; 56 56 })
+1 -1
pkgs/by-name/mp/mpvc/package.nix
··· 48 48 description = "Mpc-like control interface for mpv"; 49 49 license = lib.licenses.mit; 50 50 mainProgram = "mpvc"; 51 - maintainers = with lib.maintainers; [ AndersonTorres ]; 51 + maintainers = with lib.maintainers; [ ]; 52 52 platforms = lib.platforms.linux; 53 53 }; 54 54 })
+1 -1
pkgs/by-name/ms/msr/package.nix
··· 36 36 description = "Linux tool to display or modify x86 model-specific registers (MSRs)"; 37 37 mainProgram = "msr"; 38 38 license = licenses.bsd0; 39 - maintainers = with maintainers; [ AndersonTorres ]; 39 + maintainers = with maintainers; [ ]; 40 40 platforms = [ 41 41 "i686-linux" 42 42 "x86_64-linux"
+1 -1
pkgs/by-name/mu/multimarkdown/package.nix
··· 61 61 ''; 62 62 license = with licenses; [ mit ]; 63 63 platforms = platforms.all; 64 - maintainers = with maintainers; [ AndersonTorres ]; 64 + maintainers = with maintainers; [ ]; 65 65 }; 66 66 }
+1 -1
pkgs/by-name/mu/muon/package.nix
··· 133 133 homepage = "https://muon.build/"; 134 134 description = "Implementation of Meson build system in C99"; 135 135 license = licenses.gpl3Only; 136 - maintainers = with maintainers; [ AndersonTorres ]; 136 + maintainers = with maintainers; [ ]; 137 137 platforms = platforms.unix; 138 138 broken = stdenv.hostPlatform.isDarwin; # typical `ar failure` 139 139 mainProgram = "muon";
+1 -1
pkgs/by-name/na/nanoflann/package.nix
··· 43 43 ''; 44 44 changelog = "https://github.com/jlblancoc/nanoflann/blob/v${finalAttrs.version}/CHANGELOG.md"; 45 45 license = lib.licenses.bsd2; 46 - maintainers = [ lib.maintainers.AndersonTorres ]; 46 + maintainers = [ ]; 47 47 platforms = lib.platforms.unix; 48 48 }; 49 49 })
-1
pkgs/by-name/na/nawk/package.nix
··· 56 56 license = lib.licenses.mit; 57 57 mainProgram = "nawk"; 58 58 maintainers = with lib.maintainers; [ 59 - AndersonTorres 60 59 konimex 61 60 ]; 62 61 platforms = lib.platforms.all;
+1 -1
pkgs/by-name/ne/nestopia-ue/package.nix
··· 73 73 changelog = "https://raw.githubusercontent.com/0ldsk00l/nestopia/${finalAttrs.src.rev}/ChangeLog"; 74 74 license = lib.licenses.gpl2Plus; 75 75 mainProgram = "nestopia"; 76 - maintainers = with lib.maintainers; [ AndersonTorres ]; 76 + maintainers = with lib.maintainers; [ ]; 77 77 platforms = lib.platforms.linux; 78 78 }; 79 79 })
+3 -3
pkgs/by-name/ne/netavark/package.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "netavark"; 13 - version = "1.13.1"; 13 + version = "1.14.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "containers"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - hash = "sha256-Vz2/Y8o6fiVdLElgytUqLfa1oK/kyu1+dks4aiDHMAY="; 19 + hash = "sha256-/95tYUqjIPoyO2+YGza9RJ88YAbsIOzEB//d2FXfNZY="; 20 20 }; 21 21 22 22 useFetchCargoVendor = true; 23 - cargoHash = "sha256-OrqhGTHd6gi6nMqvM/znQSwNoN5VSBRzcdgY3LbpYWU="; 23 + cargoHash = "sha256-6XSKuohY7gpnGmRK/Y+c3+0es/KRbkXjt5XQU/HksQ0="; 24 24 25 25 nativeBuildInputs = [ installShellFiles mandown protobuf go-md2man ]; 26 26
+1 -1
pkgs/by-name/no/notcurses/package.nix
··· 80 80 replacement for NCURSES on existing systems. 81 81 ''; 82 82 license = licenses.asl20; 83 - maintainers = with maintainers; [ AndersonTorres ]; 83 + maintainers = with maintainers; [ ]; 84 84 inherit (ncurses.meta) platforms; 85 85 }; 86 86 }
+1 -1
pkgs/by-name/no/notejot/package.nix
··· 57 57 homepage = "https://github.com/lainsce/notejot"; 58 58 description = "Stupidly-simple notes app"; 59 59 license = licenses.gpl3Plus; 60 - maintainers = with maintainers; [ AndersonTorres ]; 60 + maintainers = with maintainers; [ ]; 61 61 platforms = platforms.linux; 62 62 mainProgram = "io.github.lainsce.Notejot"; 63 63 };
+1 -1
pkgs/by-name/nu/nuweb/package.nix
··· 44 44 mainProgram = "nuweb"; 45 45 homepage = "https://nuweb.sourceforge.net"; 46 46 license = licenses.free; 47 - maintainers = [ maintainers.AndersonTorres ]; 47 + maintainers = [ ]; 48 48 platforms = platforms.unix; 49 49 }; 50 50 }
+1 -1
pkgs/by-name/nx/nxengine-evo/assets.nix
··· 31 31 license = with lib.licenses; [ 32 32 unfreeRedistributable 33 33 ]; 34 - maintainers = with lib.maintainers; [ AndersonTorres ]; 34 + maintainers = with lib.maintainers; [ ]; 35 35 platforms = lib.platforms.all; 36 36 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 37 37 };
+1 -1
pkgs/by-name/nx/nxengine-evo/package.nix
··· 89 89 gpl3Plus 90 90 ]; 91 91 mainProgram = "nx"; 92 - maintainers = with lib.maintainers; [ AndersonTorres ]; 92 + maintainers = with lib.maintainers; [ ]; 93 93 platforms = lib.platforms.linux; 94 94 }; 95 95 })
+1 -1
pkgs/by-name/of/office-code-pro/package.nix
··· 34 34 ''; 35 35 homepage = "https://github.com/nathco/Office-Code-Pro"; 36 36 license = licenses.ofl; 37 - maintainers = [ maintainers.AndersonTorres ]; 37 + maintainers = [ ]; 38 38 }; 39 39 }
+1 -1
pkgs/by-name/og/oguri/package.nix
··· 41 41 homepage = "https://github.com/vilhalmer/oguri/"; 42 42 description = "Very nice animated wallpaper daemon for Wayland compositors"; 43 43 license = licenses.mit; 44 - maintainers = with maintainers; [ AndersonTorres ]; 44 + maintainers = with maintainers; [ ]; 45 45 inherit (wayland.meta) platforms; 46 46 broken = stdenv.hostPlatform.isDarwin; # this should be enfoced by wayland platforms in the future 47 47 };
-1
pkgs/by-name/on/onedrive/package.nix
··· 86 86 license = lib.licenses.gpl3Only; 87 87 mainProgram = "onedrive"; 88 88 maintainers = with lib.maintainers; [ 89 - AndersonTorres 90 89 peterhoeg 91 90 bertof 92 91 ];
+1 -1
pkgs/by-name/op/openh264/package.nix
··· 52 52 description = "Codec library which supports H.264 encoding and decoding"; 53 53 changelog = "https://github.com/cisco/openh264/releases/tag/${finalAttrs.src.rev}"; 54 54 license = with lib.licenses; [ bsd2 ]; 55 - maintainers = with lib.maintainers; [ AndersonTorres ]; 55 + maintainers = with lib.maintainers; [ ]; 56 56 # See meson.build 57 57 platforms = 58 58 lib.platforms.windows
+1 -1
pkgs/by-name/op/openmsx/package.nix
··· 74 74 boost 75 75 gpl2Plus 76 76 ]; 77 - maintainers = with maintainers; [ AndersonTorres ]; 77 + maintainers = with maintainers; [ ]; 78 78 platforms = platforms.unix; 79 79 mainProgram = "openmsx"; 80 80 };
+2 -2
pkgs/by-name/op/openterface-qt/package.nix
··· 9 9 }: 10 10 stdenv.mkDerivation (final: { 11 11 pname = "openterface-qt"; 12 - version = "0.0.6"; 12 + version = "0.1.0"; 13 13 src = fetchFromGitHub { 14 14 owner = "TechxArtisanStudio"; 15 15 repo = "Openterface_QT"; 16 16 rev = "v${final.version}"; 17 - hash = "sha256-orSOEzyplV0d+faaaRpXeMOhwbnOFxir7DG3LdErCdI="; 17 + hash = "sha256-hjiN7iA38lt7JLO+8OcO9YesX12r0SenBxjYCiObfOU="; 18 18 }; 19 19 nativeBuildInputs = [ 20 20 copyDesktopItems
-1
pkgs/by-name/pa/paperkey/package.nix
··· 35 35 license = licenses.gpl2Plus; 36 36 platforms = platforms.unix; 37 37 maintainers = with maintainers; [ 38 - AndersonTorres 39 38 peterhoeg 40 39 ]; 41 40 };
+1 -1
pkgs/by-name/pa/passwdqc/package.nix
··· 64 64 homepage = "https://www.openwall.com/passwdqc/"; 65 65 description = "Passphrase strength checking and enforcement"; 66 66 license = with lib.licenses; [ bsd3 ]; 67 - maintainers = with lib.maintainers; [ AndersonTorres ]; 67 + maintainers = with lib.maintainers; [ ]; 68 68 mainProgram = "passwdqc"; 69 69 platforms = lib.platforms.unix; 70 70 };
-1
pkgs/by-name/pc/pcsx2/package.nix
··· 130 130 ]; 131 131 mainProgram = "pcsx2-qt"; 132 132 maintainers = with lib.maintainers; [ 133 - AndersonTorres 134 133 hrdinka 135 134 govanify 136 135 matteopacini
+1 -1
pkgs/by-name/pe/pekwm/package.nix
··· 76 76 changelog = "https://raw.githubusercontent.com/pekwm/pekwm/release-${finalAttrs.version}/NEWS.md"; 77 77 license = lib.licenses.gpl2Plus; 78 78 mainProgram = "pekwm"; 79 - maintainers = [ lib.maintainers.AndersonTorres ]; 79 + maintainers = [ ]; 80 80 platforms = lib.platforms.linux; 81 81 }; 82 82 })
-1
pkgs/by-name/pf/pforth/package.nix
··· 45 45 changelog = "https://github.com/philburk/pforth/blob/v${finalAttrs.version}/RELEASES.md"; 46 46 license = lib.licenses.bsd0; 47 47 maintainers = with lib.maintainers; [ 48 - AndersonTorres 49 48 yrashk 50 49 ]; 51 50 platforms = lib.platforms.unix;
+1 -1
pkgs/by-name/pg/pgf-pie/package.nix
··· 28 28 homepage = "https://github.com/pgf-tikz/pgf-pie"; 29 29 description = "Some LaTeX macros for pie charts using the PGF/TikZ package"; 30 30 license = licenses.gpl2Plus; 31 - maintainers = with maintainers; [ AndersonTorres ]; 31 + maintainers = with maintainers; [ ]; 32 32 platforms = platforms.unix; 33 33 }; 34 34 })
+1 -1
pkgs/by-name/pg/pgf-umlcd/package.nix
··· 28 28 homepage = "https://github.com/pgf-tikz/pgf-umlcd"; 29 29 description = "Some LaTeX macros for UML Class Diagrams"; 30 30 license = licenses.gpl2Plus; 31 - maintainers = with maintainers; [ AndersonTorres ]; 31 + maintainers = with maintainers; [ ]; 32 32 platforms = platforms.unix; 33 33 }; 34 34 })
+1 -1
pkgs/by-name/pg/pgf-umlsd/package.nix
··· 28 28 homepage = "https://github.com/pgf-tikz/pgf-umlsd"; 29 29 description = "Some LaTeX macros for UML Sequence Diagrams"; 30 30 license = licenses.gpl2Plus; 31 - maintainers = with maintainers; [ AndersonTorres ]; 31 + maintainers = with maintainers; [ ]; 32 32 platforms = platforms.unix; 33 33 }; 34 34 }
+1 -1
pkgs/by-name/pg/pgf1/package.nix
··· 32 32 description = "Portable Graphic Format for TeX - version ${finalAttrs.version}"; 33 33 branch = lib.versions.major version; 34 34 license = licenses.gpl2Plus; 35 - maintainers = with maintainers; [ AndersonTorres ]; 35 + maintainers = with maintainers; [ ]; 36 36 platforms = platforms.unix; 37 37 }; 38 38 })
+1 -1
pkgs/by-name/pg/pgf2/package.nix
··· 32 32 description = "Portable Graphic Format for TeX"; 33 33 branch = lib.versions.major version; 34 34 license = licenses.gpl2Plus; 35 - maintainers = with maintainers; [ AndersonTorres ]; 35 + maintainers = with maintainers; [ ]; 36 36 platforms = platforms.unix; 37 37 }; 38 38 })
+1 -1
pkgs/by-name/pg/pgf3/package.nix
··· 32 32 description = "Portable Graphic Format for TeX - version ${finalAttrs.version}"; 33 33 branch = lib.versions.major version; 34 34 license = licenses.gpl2Plus; 35 - maintainers = with maintainers; [ AndersonTorres ]; 35 + maintainers = with maintainers; [ ]; 36 36 platforms = platforms.unix; 37 37 }; 38 38 })
+1 -1
pkgs/by-name/pg/pgfplots/package.nix
··· 28 28 homepage = "https://pgfplots.sourceforge.net"; 29 29 description = "TeX package to draw plots directly in TeX in two and three dimensions"; 30 30 license = licenses.gpl3Plus; 31 - maintainers = with maintainers; [ AndersonTorres ]; 31 + maintainers = with maintainers; [ ]; 32 32 platforms = platforms.unix; 33 33 }; 34 34 })
+1 -1
pkgs/by-name/pi/pipeworld/package.nix
··· 45 45 terminal emulator. 46 46 ''; 47 47 license = with lib.licenses; [ bsd3 ]; 48 - maintainers = with lib.maintainers; [ AndersonTorres ]; 48 + maintainers = with lib.maintainers; [ ]; 49 49 platforms = lib.platforms.all; 50 50 }; 51 51 })
+1 -1
pkgs/by-name/pp/ppsspp/package.nix
··· 172 172 not run those. 173 173 ''; 174 174 license = lib.licenses.gpl2Plus; 175 - maintainers = [ lib.maintainers.AndersonTorres ]; 175 + maintainers = [ ]; 176 176 mainProgram = "ppsspp"; 177 177 platforms = lib.platforms.linux; 178 178 };
+1
pkgs/by-name/pr/pretix/package.nix
··· 83 83 pythonRelaxDeps = [ 84 84 "django-phonenumber-field" 85 85 "dnspython" 86 + "drf_ujson2" 86 87 "importlib-metadata" 87 88 "kombu" 88 89 "markdown"
+1 -1
pkgs/by-name/pr/previewqt/package.nix
··· 92 92 changelog = "https://gitlab.com/lspies/previewqt/-/blob/v${finalAttrs.version}/CHANGELOG"; 93 93 license = lib.licenses.gpl2Plus; 94 94 mainProgram = "previewqt"; 95 - maintainers = with lib.maintainers; [ AndersonTorres ]; 95 + maintainers = with lib.maintainers; [ ]; 96 96 platforms = lib.platforms.linux; 97 97 }; 98 98 })
+1 -1
pkgs/by-name/pr/prio/package.nix
··· 32 32 homepage = "https://github.com/letoram/prio"; 33 33 description = "Plan9- Rio like Window Manager for Arcan"; 34 34 license = with lib.licenses; [ bsd3 ]; 35 - maintainers = with lib.maintainers; [ AndersonTorres ]; 35 + maintainers = with lib.maintainers; [ ]; 36 36 platforms = lib.platforms.all; 37 37 }; 38 38 })
+1 -1
pkgs/by-name/pr/pru/package.nix
··· 18 18 grep etc.). 19 19 ''; 20 20 license = lib.licenses.mit; 21 - maintainers = with lib.maintainers; [ AndersonTorres ]; 21 + maintainers = with lib.maintainers; [ ]; 22 22 }; 23 23 24 24 passthru.updateScript = bundlerUpdateScript "pru";
-1
pkgs/by-name/py/pyp/package.nix
··· 58 58 mainProgram = "pyp"; 59 59 maintainers = with lib.maintainers; [ 60 60 rmcgibbo 61 - AndersonTorres 62 61 ]; 63 62 }; 64 63 };
+1 -1
pkgs/by-name/py/pyspread/package.nix
··· 83 83 ''; 84 84 license = with lib.licenses; [ gpl3Plus ]; 85 85 mainProgram = "pyspread"; 86 - maintainers = with lib.maintainers; [ AndersonTorres ]; 86 + maintainers = with lib.maintainers; [ ]; 87 87 }; 88 88 }
-1
pkgs/by-name/qm/qmplay2/package.nix
··· 108 108 license = lib.licenses.lgpl3Plus; 109 109 mainProgram = "qmplay2"; 110 110 maintainers = with lib.maintainers; [ 111 - AndersonTorres 112 111 kashw2 113 112 ]; 114 113 platforms = lib.platforms.linux;
+1 -1
pkgs/by-name/qn/qnial/package.nix
··· 47 47 homepage = "https://bitbucket.com/museoa/qnial"; 48 48 license = lib.licenses.artistic1; 49 49 mainProgram = "nial"; 50 - maintainers = [ lib.maintainers.AndersonTorres ]; 50 + maintainers = [ ]; 51 51 platforms = lib.platforms.linux; 52 52 }; 53 53 })
+1 -1
pkgs/by-name/qr/qrcodegen/package.nix
··· 45 45 homepage = "https://www.nayuki.io/page/qr-code-generator-library"; 46 46 description = "High-quality QR Code generator library in many languages"; 47 47 license = lib.licenses.mit; 48 - maintainers = with lib.maintainers; [ AndersonTorres ]; 48 + maintainers = with lib.maintainers; [ ]; 49 49 platforms = lib.platforms.unix; 50 50 }; 51 51 })
+1 -1
pkgs/by-name/qu/quickjs-ng/package.nix
··· 68 68 description = "Mighty JavaScript engine"; 69 69 license = lib.licenses.mit; 70 70 mainProgram = "qjs"; 71 - maintainers = with lib.maintainers; [ AndersonTorres ]; 71 + maintainers = with lib.maintainers; [ ]; 72 72 platforms = lib.platforms.all; 73 73 }; 74 74 })
-1
pkgs/by-name/qu/quickjs/package.nix
··· 122 122 license = lib.licenses.mit; 123 123 maintainers = with lib.maintainers; [ 124 124 stesie 125 - AndersonTorres 126 125 ]; 127 126 mainProgram = "qjs"; 128 127 platforms = lib.platforms.all;
+1 -1
pkgs/by-name/ra/ratpoison/package.nix
··· 89 89 ''; 90 90 license = lib.licenses.gpl2Plus; 91 91 mainProgram = "ratpoison"; 92 - maintainers = with lib.maintainers; [ AndersonTorres ]; 92 + maintainers = with lib.maintainers; [ ]; 93 93 inherit (libX11.meta) platforms; 94 94 }; 95 95 })
-1
pkgs/by-name/rc/rcm/package.nix
··· 27 27 license = licenses.bsd3; 28 28 maintainers = with maintainers; [ 29 29 malyn 30 - AndersonTorres 31 30 ]; 32 31 platforms = with platforms; unix; 33 32 };
+1 -1
pkgs/by-name/re/recutils/package.nix
··· 82 82 records, each record containing an arbitrary number of named fields. 83 83 ''; 84 84 license = licenses.gpl3Plus; 85 - maintainers = with maintainers; [ AndersonTorres ]; 85 + maintainers = with maintainers; [ ]; 86 86 platforms = platforms.all; 87 87 }; 88 88 }
+1 -1
pkgs/by-name/re/renderdoc/package.nix
··· 137 137 ''; 138 138 license = lib.licenses.mit; 139 139 mainProgram = "renderdoccmd"; 140 - maintainers = with lib.maintainers; [ AndersonTorres ]; 140 + maintainers = with lib.maintainers; [ ]; 141 141 platforms = lib.intersectLists lib.platforms.linux (lib.platforms.x86_64 ++ lib.platforms.i686); 142 142 }; 143 143 })
+48 -49
pkgs/by-name/re/renpy/package.nix
··· 1 1 { 2 - lib, 3 - stdenv, 4 2 fetchFromGitHub, 5 - fetchpatch, 6 - python311, 7 - pkg-config, 8 - SDL2, 9 - libpng, 10 3 ffmpeg, 11 4 freetype, 5 + fribidi, 12 6 glew, 7 + harfbuzz, 8 + lib, 13 9 libGL, 14 10 libGLU, 15 - fribidi, 16 - zlib, 17 - harfbuzz, 11 + libpng, 18 12 makeWrapper, 13 + nix-update-script, 14 + pkg-config, 15 + python311, 16 + SDL2, 17 + stdenv, 18 + versionCheckHook, 19 19 withoutSteam ? true, 20 + zlib, 20 21 }: 21 22 22 23 let 23 - # https://renpy.org/doc/html/changelog.html#versioning 24 - # base_version is of the form major.minor.patch 25 - # vc_version is of the form YYMMDDCC 26 - # version corresponds to the tag on GitHub 27 - base_version = "8.3.1"; 28 - vc_version = "24090601"; 29 - version = "${base_version}.${vc_version}"; 24 + python = python311; 30 25 in 31 - stdenv.mkDerivation { 26 + stdenv.mkDerivation (finalAttrs: { 32 27 pname = "renpy"; 33 - inherit version; 28 + version = "8.3.4.24120703"; 34 29 35 30 src = fetchFromGitHub { 36 31 owner = "renpy"; 37 32 repo = "renpy"; 38 - rev = version; 39 - hash = "sha256-k8mcDzaFngRF3Xl9cinUFU0T9sjxNIVrECUguARJVZ4="; 33 + tag = finalAttrs.version; 34 + hash = "sha256-9f1ptw+6OQ2rMytwPZPtUd+K/ihnVKHUiELs22iTTqE="; 40 35 }; 41 36 42 37 nativeBuildInputs = [ 43 - pkg-config 44 38 makeWrapper 39 + pkg-config 45 40 # Ren'Py currently does not compile on Cython 3.x. 46 41 # See https://github.com/renpy/renpy/issues/5359 47 - python311.pkgs.cython_0 48 - python311.pkgs.setuptools 42 + python.pkgs.cython_0 43 + python.pkgs.setuptools 49 44 ]; 50 45 51 46 buildInputs = 52 47 [ 53 - SDL2 54 - libpng 55 48 ffmpeg 56 49 freetype 50 + fribidi 57 51 glew 52 + harfbuzz 53 + libGL 58 54 libGLU 59 - libGL 60 - fribidi 55 + libpng 56 + SDL2 61 57 zlib 62 - harfbuzz 63 58 ] 64 - ++ (with python311.pkgs; [ 65 - python 66 - pygame-sdl2 67 - tkinter 59 + ++ (with python.pkgs; [ 60 + ecdsa 68 61 future 69 - six 70 62 pefile 63 + pygame-sdl2 64 + python 71 65 requests 72 - ecdsa 66 + six 67 + tkinter 73 68 ]); 74 69 75 70 RENPY_DEPS_INSTALL = lib.concatStringsSep "::" [ 76 - SDL2 77 - SDL2.dev 78 - libpng 79 71 ffmpeg.lib 80 72 freetype 73 + fribidi 81 74 glew.dev 82 - libGLU 75 + harfbuzz.dev 83 76 libGL 84 - fribidi 77 + libGLU 78 + libpng 79 + SDL2 80 + SDL2.dev 85 81 zlib 86 - harfbuzz.dev 87 82 ]; 88 83 89 84 enableParallelBuilding = true; ··· 97 92 cp tutorial/game/tutorial_director.rpy{m,} 98 93 99 94 cat > renpy/vc_version.py << EOF 100 - version = '${version}' 95 + version = '${finalAttrs.version}' 101 96 official = False 102 97 nightly = False 103 98 # Look at https://renpy.org/latest.html for what to put. ··· 105 100 EOF 106 101 ''; 107 102 108 - buildPhase = with python311.pkgs; '' 103 + buildPhase = '' 109 104 runHook preBuild 110 105 ${python.pythonOnBuildForHost.interpreter} module/setup.py build --parallel=$NIX_BUILD_CORES 111 106 runHook postBuild 112 107 ''; 113 108 114 - installPhase = with python311.pkgs; '' 109 + installPhase = '' 115 110 runHook preInstall 116 111 117 112 ${python.pythonOnBuildForHost.interpreter} module/setup.py install_lib -d $out/${python.sitePackages} ··· 125 120 runHook postInstall 126 121 ''; 127 122 128 - env.NIX_CFLAGS_COMPILE = with python311.pkgs; "-I${pygame-sdl2}/include/${python.libPrefix}"; 123 + env.NIX_CFLAGS_COMPILE = "-I${python.pkgs.pygame-sdl2}/include/${python.libPrefix}"; 124 + 125 + nativeInstallCheckInputs = [ versionCheckHook ]; 126 + doInstallCheck = true; 127 + versionCheckProgramArg = "--version"; 128 + 129 + passthru.updateScript = nix-update-script { }; 129 130 130 131 meta = { 131 132 description = "Visual Novel Engine"; ··· 133 134 homepage = "https://renpy.org/"; 134 135 changelog = "https://renpy.org/doc/html/changelog.html"; 135 136 license = lib.licenses.mit; 136 - platforms = lib.platforms.linux; 137 + platforms = lib.platforms.unix; 137 138 maintainers = with lib.maintainers; [ shadowrz ]; 138 139 }; 139 - 140 - passthru = { inherit base_version vc_version; }; 141 - } 140 + })
+1 -1
pkgs/by-name/re/rep-gtk/package.nix
··· 45 45 homepage = "http://sawfish.tuxfamily.org"; 46 46 description = "GTK bindings for librep"; 47 47 license = lib.licenses.gpl2Plus; 48 - maintainers = [ lib.maintainers.AndersonTorres ]; 48 + maintainers = [ ]; 49 49 platforms = lib.platforms.unix; 50 50 }; 51 51 })
+1 -1
pkgs/by-name/ro/robotfindskitten/package.nix
··· 48 48 homepage = "http://robotfindskitten.org/"; 49 49 license = lib.licenses.gpl2Plus; 50 50 mainProgram = "robotfindskitten"; 51 - maintainers = [ lib.maintainers.AndersonTorres ]; 51 + maintainers = [ ]; 52 52 platforms = lib.platforms.unix; 53 53 }; 54 54 })
+1 -1
pkgs/by-name/ro/rockbox-utility/package.nix
··· 73 73 homepage = "https://www.rockbox.org"; 74 74 description = "Open source firmware for digital music players"; 75 75 license = licenses.gpl2Plus; 76 - maintainers = with maintainers; [ AndersonTorres ]; 76 + maintainers = with maintainers; [ ]; 77 77 mainProgram = "RockboxUtility"; 78 78 platforms = platforms.linux; 79 79 };
+1 -1
pkgs/by-name/ro/rootbar/package.nix
··· 45 45 was designed to address the lack of good bars for wayland. 46 46 ''; 47 47 license = licenses.gpl3Plus; 48 - maintainers = with maintainers; [ AndersonTorres ]; 48 + maintainers = with maintainers; [ ]; 49 49 platforms = platforms.unix; 50 50 broken = stdenv.hostPlatform.isDarwin; 51 51 };
+1 -1
pkgs/by-name/ro/roxterm/package.nix
··· 96 96 lgpl3Plus 97 97 ]; 98 98 mainProgram = "roxterm"; 99 - maintainers = with lib.maintainers; [ AndersonTorres ]; 99 + maintainers = with lib.maintainers; [ ]; 100 100 platforms = lib.platforms.linux; 101 101 }; 102 102 })
+1 -1
pkgs/by-name/rp/rpcemu/package.nix
··· 60 60 ''; 61 61 license = lib.licenses.gpl2Plus; 62 62 maintainers = builtins.attrValues { 63 - inherit (lib.maintainers) AndersonTorres; 63 + inherit (lib.maintainers) ; 64 64 }; 65 65 platforms = lib.platforms.linux; 66 66 };
+1 -1
pkgs/by-name/rs/rs/package.nix
··· 67 67 the rows and columns. 68 68 ''; 69 69 license = licenses.bsd3; 70 - maintainers = with maintainers; [ AndersonTorres ]; 70 + maintainers = with maintainers; [ ]; 71 71 platforms = platforms.unix; 72 72 }; 73 73 }
+1 -1
pkgs/by-name/rs/rst2html5/package.nix
··· 32 32 description = "Converts ReSTructuredText to (X)HTML5"; 33 33 homepage = "https://rst2html5.readthedocs.io/"; 34 34 license = licenses.mit; 35 - maintainers = with maintainers; [ AndersonTorres ]; 35 + maintainers = with maintainers; [ ]; 36 36 mainProgram = "rst2html5"; 37 37 }; 38 38 }
+1 -1
pkgs/by-name/rx/rxvt/package.nix
··· 44 44 omitting some of its little-used features, like Tektronix 4014 45 45 emulation and toolkit-style configurability. 46 46 ''; 47 - maintainers = with maintainers; [ AndersonTorres ]; 47 + maintainers = with maintainers; [ ]; 48 48 license = licenses.gpl2; 49 49 platforms = platforms.linux; 50 50 knownVulnerabilities = [
+1 -1
pkgs/by-name/sa/sawfish/package.nix
··· 84 84 extensibility or redefinition. 85 85 ''; 86 86 license = lib.licenses.gpl2Plus; 87 - maintainers = with lib.maintainers; [ AndersonTorres ]; 87 + maintainers = with lib.maintainers; [ ]; 88 88 platforms = lib.platforms.unix; 89 89 }; 90 90 })
-1
pkgs/by-name/sc/scdoc/package.nix
··· 45 45 mainProgram = "scdoc"; 46 46 maintainers = with lib.maintainers; [ 47 47 primeos 48 - AndersonTorres 49 48 ]; 50 49 platforms = lib.platforms.unix; 51 50 };
+1 -2
pkgs/by-name/sc/scimark/package.nix
··· 34 34 downloadPage = "https://math.nist.gov/scimark2/download_c.html"; 35 35 license = lib.licenses.publicDomain; 36 36 mainProgram = "scimark4"; 37 - maintainers = with lib.maintainers; [ AndersonTorres ]; 37 + maintainers = with lib.maintainers; [ ]; 38 38 platforms = lib.platforms.all; 39 39 }; 40 40 }) 41 - # TODO [ AndersonTorres ]: Java version
+1 -1
pkgs/by-name/se/setconf/package.nix
··· 25 25 description = "Small utility for changing settings in configuration textfiles"; 26 26 changelog = "https://github.com/xyproto/setconf/releases/tag/${self.src.rev}"; 27 27 mainProgram = "setconf"; 28 - maintainers = with lib.maintainers; [ AndersonTorres ]; 28 + maintainers = with lib.maintainers; [ ]; 29 29 }; 30 30 }; 31 31 in
+1 -1
pkgs/by-name/sh/shfm/package.nix
··· 33 33 homepage = "https://github.com/dylanaraps/shfm"; 34 34 description = "POSIX-shell based file manager"; 35 35 license = licenses.mit; 36 - maintainers = with maintainers; [ AndersonTorres ]; 36 + maintainers = with maintainers; [ ]; 37 37 platforms = platforms.all; 38 38 mainProgram = "shfm"; 39 39 };
+1 -1
pkgs/by-name/si/simh/package.nix
··· 72 72 available copies of significant or representative software. 73 73 ''; 74 74 license = with licenses; mit; 75 - maintainers = with maintainers; [ AndersonTorres ]; 75 + maintainers = with maintainers; [ ]; 76 76 platforms = with platforms; unix; 77 77 }; 78 78 }
-1
pkgs/by-name/si/simpleini/package.nix
··· 46 46 license = lib.licenses.mit; 47 47 maintainers = with lib.maintainers; [ 48 48 HeitorAugustoLN 49 - AndersonTorres 50 49 ]; 51 50 platforms = lib.platforms.all; 52 51 };
+1 -1
pkgs/by-name/sk/skribilo/package.nix
··· 75 75 conventions used in emails, Usenet and text. 76 76 ''; 77 77 license = lib.licenses.gpl3Plus; 78 - maintainers = with lib.maintainers; [ AndersonTorres ]; 78 + maintainers = with lib.maintainers; [ ]; 79 79 platforms = lib.platforms.unix; 80 80 }; 81 81 })
+1 -1
pkgs/by-name/sl/slang/package.nix
··· 103 103 ''; 104 104 homepage = "http://www.jedsoft.org/slang/"; 105 105 license = licenses.gpl2Plus; 106 - maintainers = with maintainers; [ AndersonTorres ]; 106 + maintainers = with maintainers; [ ]; 107 107 mainProgram = "slsh"; 108 108 platforms = platforms.unix; 109 109 };
+1 -1
pkgs/by-name/sm/smallwm/package.nix
··· 58 58 homepage = "https://github.com/adamnew123456/SmallWM"; 59 59 license = lib.licenses.bsd2; 60 60 mainProgram = "smallwm"; 61 - maintainers = with lib.maintainers; [ AndersonTorres ]; 61 + maintainers = with lib.maintainers; [ ]; 62 62 inherit (libX11.meta) platforms; 63 63 }; 64 64 })
+2 -2
pkgs/by-name/sm/smplayer/package.nix
··· 53 53 ''; 54 54 changelog = "https://github.com/smplayer-dev/smplayer/releases/tag/${finalAttrs.src.rev}"; 55 55 license = lib.licenses.gpl3Plus; 56 - maintainers = with lib.maintainers; [ AndersonTorres ]; 56 + maintainers = with lib.maintainers; [ ]; 57 57 platforms = lib.platforms.linux; 58 58 }; 59 59 }) 60 - # TODO [ AndersonTorres ]: create a wrapper including mplayer/mpv 60 + # TODO [ ]: create a wrapper including mplayer/mpv
-1
pkgs/by-name/sn/snes9x/package.nix
··· 135 135 }; 136 136 mainProgram = "snes9x"; 137 137 maintainers = with lib.maintainers; [ 138 - AndersonTorres 139 138 qknight 140 139 thiagokokada 141 140 sugar700
-1
pkgs/by-name/sn/sng/package.nix
··· 40 40 mainProgram = "sng"; 41 41 maintainers = with lib.maintainers; [ 42 42 dezgeg 43 - AndersonTorres 44 43 ]; 45 44 platforms = lib.platforms.unix; 46 45 };
+1 -1
pkgs/by-name/so/sound-of-sorting/package.nix
··· 51 51 homepage = "https://panthema.net/2013/sound-of-sorting/"; 52 52 license = lib.licenses.gpl3Plus; 53 53 mainProgram = "sound-of-sorting"; 54 - maintainers = with lib.maintainers; [ AndersonTorres ]; 54 + maintainers = with lib.maintainers; [ ]; 55 55 inherit (SDL2.meta) platforms; 56 56 }; 57 57 })
+11 -3
pkgs/by-name/so/soupault/package.nix
··· 3 3 darwin, 4 4 fetchzip, 5 5 ocamlPackages, 6 + ocaml, 7 + removeReferencesTo, 6 8 soupault, 7 9 stdenv, 8 10 testers, ··· 22 24 hash = "sha256-UABbrNNcNaN9NgtAjCs4HUoNXMaK4QvCuWERuEnMG6I="; 23 25 }; 24 26 25 - nativeBuildInputs = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ 26 - darwin.sigtool 27 - ]; 27 + nativeBuildInputs = 28 + [ removeReferencesTo ] 29 + ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ 30 + darwin.sigtool 31 + ]; 28 32 29 33 buildInputs = with ocamlPackages; [ 30 34 base64 ··· 47 51 tsort 48 52 yaml 49 53 ]; 54 + 55 + postFixup = '' 56 + find "$out" -type f -exec remove-references-to -t ${ocaml} '{}' + 57 + ''; 50 58 51 59 passthru.tests.version = testers.testVersion { 52 60 package = soupault;
+1 -1
pkgs/by-name/sp/spigot/package.nix
··· 48 48 description = "Command-line exact real calculator"; 49 49 mainProgram = "spigot"; 50 50 license = lib.licenses.mit; 51 - maintainers = with lib.maintainers; [ AndersonTorres ]; 51 + maintainers = with lib.maintainers; [ ]; 52 52 platforms = lib.platforms.unix; 53 53 }; 54 54 })
+1 -1
pkgs/by-name/sr/src/package.nix
··· 60 60 changelog = "https://gitlab.com/esr/src/-/raw/${finalAttrs.version}/NEWS.adoc"; 61 61 license = licenses.bsd2; 62 62 mainProgram = "src"; 63 - maintainers = with maintainers; [ AndersonTorres ]; 63 + maintainers = with maintainers; [ ]; 64 64 inherit (python3.meta) platforms; 65 65 }; 66 66 })
+1 -1
pkgs/by-name/ss/ssh-askpass-fullscreen/package.nix
··· 37 37 description = "Small, fullscreen SSH askpass GUI using GTK+2"; 38 38 license = with lib.licenses; [ gpl2Plus ]; 39 39 mainProgram = "ssh-askpass-fullscreen"; 40 - maintainers = with lib.maintainers; [ AndersonTorres ]; 40 + maintainers = with lib.maintainers; [ ]; 41 41 platforms = lib.platforms.unix; 42 42 }; 43 43 })
+1 -1
pkgs/by-name/st/stacktile/package.nix
··· 42 42 description = "Layout generator for the river Wayland compositor"; 43 43 license = with lib.licenses; [ gpl3Plus ]; 44 44 mainProgram = "stacktile"; 45 - maintainers = with lib.maintainers; [ AndersonTorres ]; 45 + maintainers = with lib.maintainers; [ ]; 46 46 platforms = lib.platforms.linux; 47 47 }; 48 48 })
+1 -1
pkgs/by-name/st/steghide/package.nix
··· 44 44 homepage = "https://github.com/museoa/steghide"; 45 45 description = "Open source steganography program"; 46 46 license = licenses.gpl3Plus; 47 - maintainers = with maintainers; [ AndersonTorres ]; 47 + maintainers = with maintainers; [ ]; 48 48 platforms = with platforms; unix; 49 49 mainProgram = "steghide"; 50 50 };
+1 -1
pkgs/by-name/st/stella/package.nix
··· 47 47 changelog = "https://github.com/stella-emu/stella/releases/tag/${finalAttrs.src.rev}"; 48 48 license = with lib.licenses; [ gpl2Plus ]; 49 49 mainProgram = "stella"; 50 - maintainers = with lib.maintainers; [ AndersonTorres ]; 50 + maintainers = with lib.maintainers; [ ]; 51 51 platforms = lib.platforms.unix; 52 52 }; 53 53 })
+2 -2
pkgs/by-name/sy/symfony-cli/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "symfony-cli"; 14 - version = "5.10.6"; 14 + version = "5.10.7"; 15 15 vendorHash = "sha256-UqaRZPCgjiexeeylfP8p0rye6oc+rWac87p8KbVKrdc="; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "symfony-cli"; 19 19 repo = "symfony-cli"; 20 20 rev = "v${version}"; 21 - hash = "sha256-II8dPbvi8Ys+7JzzLDPipKHMJDxZOFib3Lv/9qLTjg0="; 21 + hash = "sha256-l4atQdFRA2nwh2OXlF6a24Xe2WCAKbOdySu+r+rcTXQ="; 22 22 leaveDotGit = true; 23 23 postFetch = '' 24 24 git --git-dir $out/.git log -1 --pretty=%cd --date=format:'%Y-%m-%dT%H:%M:%SZ' > $out/SOURCE_DATE
+1 -1
pkgs/by-name/ta/tap-plugins/package.nix
··· 36 36 TubeWarmth, TAP Vibrato. 37 37 ''; 38 38 license = lib.licenses.gpl3Plus; 39 - maintainers = [ lib.maintainers.AndersonTorres ]; 39 + maintainers = [ ]; 40 40 platforms = lib.platforms.unix; 41 41 }; 42 42 })
+1
pkgs/by-name/te/teamspeak6-client/package.nix
··· 101 101 lib.makeLibraryPath [ 102 102 udev 103 103 libGL 104 + libpulseaudio 104 105 ] 105 106 }" 106 107
+1 -1
pkgs/by-name/te/teapot/package.nix
··· 72 72 systems. 73 73 ''; 74 74 license = licenses.gpl3Plus; 75 - maintainers = with maintainers; [ AndersonTorres ]; 75 + maintainers = with maintainers; [ ]; 76 76 platforms = platforms.unix; 77 77 mainProgram = "teapot"; 78 78 };
+1 -1
pkgs/by-name/te/tecla/package.nix
··· 56 56 changelog = "https://sites.astro.caltech.edu/~mcs/tecla/release.html"; 57 57 license = with lib.licenses; [ mit ]; 58 58 mainProgram = "enhance"; 59 - maintainers = with lib.maintainers; [ AndersonTorres ]; 59 + maintainers = with lib.maintainers; [ ]; 60 60 platforms = lib.platforms.unix; 61 61 }; 62 62 })
+1 -1
pkgs/by-name/th/the-legend-of-edgar/package.nix
··· 75 75 ''; 76 76 license = lib.licenses.gpl1Plus; 77 77 mainProgram = "edgar"; 78 - maintainers = with lib.maintainers; [ AndersonTorres ]; 78 + maintainers = with lib.maintainers; [ ]; 79 79 platforms = lib.platforms.unix; 80 80 broken = stdenv.hostPlatform.isDarwin; 81 81 };
+1 -1
pkgs/by-name/ti/tilda/package.nix
··· 58 58 description = "Gtk based drop down terminal for Linux and Unix"; 59 59 mainProgram = "tilda"; 60 60 license = lib.licenses.gpl3Plus; 61 - maintainers = [ lib.maintainers.AndersonTorres ]; 61 + maintainers = [ ]; 62 62 platforms = lib.platforms.linux; 63 63 }; 64 64 })
+1 -1
pkgs/by-name/ti/tiny8086/package.nix
··· 62 62 "unobfuscated" version :) 63 63 ''; 64 64 license = licenses.mit; 65 - maintainers = [ maintainers.AndersonTorres ]; 65 + maintainers = [ ]; 66 66 platforms = platforms.linux; 67 67 mainProgram = "8086tiny"; 68 68 };
+1 -1
pkgs/by-name/ti/tinyemu/package.nix
··· 63 63 mit 64 64 bsd2 65 65 ]; 66 - maintainers = with lib.maintainers; [ AndersonTorres ]; 66 + maintainers = with lib.maintainers; [ ]; 67 67 platforms = lib.platforms.unix; 68 68 broken = stdenv.hostPlatform.isDarwin; 69 69 };
+1 -1
pkgs/by-name/ti/tinywm/package.nix
··· 60 60 ''; 61 61 license = lib.licenses.publicDomain; 62 62 mainProgram = "tinywm"; 63 - maintainers = with lib.maintainers; [ AndersonTorres ]; 63 + maintainers = with lib.maintainers; [ ]; 64 64 inherit (libX11.meta) platforms; 65 65 }; 66 66 })
+1 -1
pkgs/by-name/ti/tinyxml-2/package.nix
··· 32 32 homepage = "https://github.com/leethomason/tinyxml2"; 33 33 changelog = "https://github.com/leethomason/tinyxml2/releases/tag/${finalAttrs.src.rev}"; 34 34 license = with lib.licenses; [ zlib ]; 35 - maintainers = with lib.maintainers; [ AndersonTorres ]; 35 + maintainers = with lib.maintainers; [ ]; 36 36 platforms = lib.platforms.unix; 37 37 }; 38 38 })
+1 -1
pkgs/by-name/to/tomato-c/package.nix
··· 70 70 homepage = "https://github.com/gabrielzschmitz/Tomato.C"; 71 71 description = " A pomodoro timer written in pure C"; 72 72 license = with lib.licenses; [ gpl3Plus ]; 73 - maintainers = with lib.maintainers; [ AndersonTorres ]; 73 + maintainers = with lib.maintainers; [ ]; 74 74 mainProgram = "tomato"; 75 75 platforms = lib.platforms.unix; 76 76 };
+1 -1
pkgs/by-name/to/tomlcpp/package.nix
··· 35 35 homepage = "https://github.com/cktan/tomlcpp"; 36 36 description = "No fanfare TOML C++ Library"; 37 37 license = lib.licenses.mit; 38 - maintainers = with lib.maintainers; [ AndersonTorres ]; 38 + maintainers = with lib.maintainers; [ ]; 39 39 platforms = with lib.platforms; unix; 40 40 }; 41 41 }
-1
pkgs/by-name/tr/trealla/package.nix
··· 96 96 license = lib.licenses.mit; 97 97 maintainers = with lib.maintainers; [ 98 98 siraben 99 - AndersonTorres 100 99 ]; 101 100 mainProgram = "tpl"; 102 101 platforms = lib.platforms.all;
+1 -1
pkgs/by-name/tr/triehash/package.nix
··· 43 43 homepage = "https://github.com/julian-klode/triehash"; 44 44 description = "Order-preserving minimal perfect hash function generator"; 45 45 license = with licenses; mit; 46 - maintainers = with maintainers; [ AndersonTorres ]; 46 + maintainers = with maintainers; [ ]; 47 47 platforms = perlPackages.perl.meta.platforms; 48 48 mainProgram = "triehash"; 49 49 };
+1 -1
pkgs/by-name/tt/tty-solitaire/package.nix
··· 43 43 license = licenses.mit; 44 44 homepage = "https://github.com/mpereira/tty-solitaire"; 45 45 platforms = ncurses.meta.platforms; 46 - maintainers = [ maintainers.AndersonTorres ]; 46 + maintainers = [ ]; 47 47 mainProgram = "ttysolitaire"; 48 48 }; 49 49 }
+1 -1
pkgs/by-name/tw/twolame/package.nix
··· 38 38 homepage = "https://www.twolame.org/"; 39 39 license = with licenses; [ lgpl2Plus ]; 40 40 platforms = with platforms; unix; 41 - maintainers = with maintainers; [ AndersonTorres ]; 41 + maintainers = with maintainers; [ ]; 42 42 }; 43 43 }
-1
pkgs/by-name/tx/txr/package.nix
··· 71 71 changelog = "https://www.kylheku.com/cgit/txr/tree/RELNOTES?h=txr-${finalAttrs.version}"; 72 72 license = lib.licenses.bsd2; 73 73 maintainers = with lib.maintainers; [ 74 - AndersonTorres 75 74 dtzWill 76 75 ]; 77 76 platforms = lib.platforms.all;
+1 -1
pkgs/by-name/uc/ucg/package.nix
··· 50 50 ''; 51 51 license = lib.licenses.gpl3Plus; 52 52 mainProgram = "ucg"; 53 - maintainers = with lib.maintainers; [ AndersonTorres ]; 53 + maintainers = with lib.maintainers; [ ]; 54 54 platforms = lib.platforms.unix; 55 55 broken = stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isDarwin; 56 56 };
-1
pkgs/by-name/uc/uclibc-ng/package.nix
··· 148 148 license = lib.licenses.lgpl2Plus; 149 149 maintainers = with lib.maintainers; [ 150 150 rasendubi 151 - AndersonTorres 152 151 ]; 153 152 platforms = lib.platforms.linux; 154 153 badPlatforms = lib.platforms.aarch64;
+1 -1
pkgs/by-name/un/units/package.nix
··· 72 72 ''; 73 73 license = with lib.licenses; [ gpl3Plus ]; 74 74 mainProgram = "units"; 75 - maintainers = with lib.maintainers; [ AndersonTorres ]; 75 + maintainers = with lib.maintainers; [ ]; 76 76 platforms = lib.platforms.all; 77 77 }; 78 78 })
+1 -1
pkgs/by-name/un/universal-ctags/package.nix
··· 87 87 editors and other tools to locate the indexed items. 88 88 ''; 89 89 license = licenses.gpl2Plus; 90 - maintainers = [ maintainers.AndersonTorres ]; 90 + maintainers = [ ]; 91 91 platforms = platforms.all; 92 92 mainProgram = "ctags"; 93 93 priority = 1; # over the emacs implementation
+1 -1
pkgs/by-name/un/unzoo/package.nix
··· 42 42 homepage = "https://github.com/museoa/unzoo/"; 43 43 description = "Manipulate archives of files in Zoo compressed form"; 44 44 license = licenses.publicDomain; 45 - maintainers = with maintainers; [ AndersonTorres ]; 45 + maintainers = with maintainers; [ ]; 46 46 platforms = platforms.all; 47 47 mainProgram = "unzoo"; 48 48 };
+1 -1
pkgs/by-name/ur/urjtag/package.nix
··· 52 52 gpl2Plus 53 53 lgpl21Plus 54 54 ]; 55 - maintainers = with maintainers; [ AndersonTorres ]; 55 + maintainers = with maintainers; [ ]; 56 56 platforms = platforms.linux; 57 57 }; 58 58 }
+1 -1
pkgs/by-name/ux/uxn/package.nix
··· 65 65 homepage = "https://wiki.xxiivv.com/site/uxn.html"; 66 66 description = "Assembler and emulator for the Uxn stack machine"; 67 67 license = lib.licenses.mit; 68 - maintainers = with lib.maintainers; [ AndersonTorres ]; 68 + maintainers = with lib.maintainers; [ ]; 69 69 mainProgram = "uxnemu"; 70 70 inherit (SDL2.meta) platforms; 71 71 broken = stdenv.hostPlatform.isDarwin;
+1 -1
pkgs/by-name/ve/ventoy/package.nix
··· 211 211 changelog = "https://www.ventoy.net/doc_news.html"; 212 212 license = lib.licenses.gpl3Plus; 213 213 mainProgram = "ventoy"; 214 - maintainers = with lib.maintainers; [ AndersonTorres ]; 214 + maintainers = with lib.maintainers; [ ]; 215 215 platforms = [ 216 216 "x86_64-linux" 217 217 "i686-linux"
+1 -1
pkgs/by-name/vi/viw/package.nix
··· 34 34 description = "VI Worsened, a fun and light clone of VI"; 35 35 homepage = "https://github.com/lpan/viw"; 36 36 license = licenses.gpl3Only; 37 - maintainers = with maintainers; [ AndersonTorres ]; 37 + maintainers = with maintainers; [ ]; 38 38 mainProgram = "viw"; 39 39 }; 40 40 }
+1 -1
pkgs/by-name/vm/vms-empire/package.nix
··· 66 66 ''; 67 67 license = lib.licenses.gpl2Only; 68 68 mainProgram = "vms-empire"; 69 - maintainers = with lib.maintainers; [ AndersonTorres ]; 69 + maintainers = with lib.maintainers; [ ]; 70 70 platforms = lib.platforms.unix; 71 71 }; 72 72 })
+1 -1
pkgs/by-name/vn/vnote/package.nix
··· 38 38 mainProgram = "vnote"; 39 39 changelog = "https://github.com/vnotex/vnote/releases/tag/${finalAttrs.src.rev}"; 40 40 license = lib.licenses.lgpl3Plus; 41 - maintainers = with lib.maintainers; [ AndersonTorres ]; 41 + maintainers = with lib.maintainers; [ ]; 42 42 platforms = lib.platforms.linux; 43 43 }; 44 44 })
+1 -1
pkgs/by-name/vp/vp/package.nix
··· 45 45 description = "SDL based picture viewer/slideshow"; 46 46 license = lib.licenses.gpl3Plus; 47 47 mainProgram = "vp"; 48 - maintainers = with lib.maintainers; [ AndersonTorres ]; 48 + maintainers = with lib.maintainers; [ ]; 49 49 inherit (SDL.meta) platforms; 50 50 hydraPlatforms = lib.platforms.linux; # build hangs on both Darwin platforms, needs investigation 51 51 };
+1 -1
pkgs/by-name/vy/vym/package.nix
··· 80 80 ''; 81 81 license = with lib.licenses; [ gpl2Plus ]; 82 82 mainProgram = "vym"; 83 - maintainers = with lib.maintainers; [ AndersonTorres ]; 83 + maintainers = with lib.maintainers; [ ]; 84 84 platforms = lib.platforms.linux; 85 85 }; 86 86 })
+6 -3
pkgs/by-name/wa/wakatime-cli/package.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildGoModule, 4 5 fetchFromGitHub, 5 6 testers, ··· 25 26 "-w" 26 27 "-X github.com/wakatime/wakatime-cli/pkg/version.Version=${version}" 27 28 ]; 29 + 30 + # dial tcp 127.0.0.1:51272: connect: operation not permitted 31 + # and goroutine 33 [IO wait, 10 minutes] on darwin 32 + doCheck = !stdenv.hostPlatform.isDarwin; 33 + 28 34 nativeCheckInputs = [ writableTmpDirAsHomeHook ]; 29 35 30 36 checkFlags = ··· 38 44 "TestSendHeartbeats_NonExistingExtraHeartbeatsEntity" 39 45 "TestSendHeartbeats_ExtraHeartbeatsIsUnsavedEntity" 40 46 "TestFileExperts_Err(Auth|Api|BadRequest)" 41 - 42 - # Flaky tests 43 - "TestLoadParams_ApiKey_FromVault_Err_Darwin" 44 47 ]; 45 48 in 46 49 [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];
+1 -1
pkgs/by-name/wa/wallutils/package.nix
··· 70 70 description = "Utilities for handling monitors, resolutions, and (timed) wallpapers"; 71 71 inherit (src.meta) homepage; 72 72 license = lib.licenses.bsd3; 73 - maintainers = [ lib.maintainers.AndersonTorres ]; 73 + maintainers = [ ]; 74 74 inherit (wayland.meta) platforms; 75 75 badPlatforms = lib.platforms.darwin; 76 76 };
+1 -1
pkgs/by-name/wa/waybox/package.nix
··· 64 64 description = "Openbox clone on Wayland"; 65 65 license = lib.licenses.mit; 66 66 mainProgram = "waybox"; 67 - maintainers = with lib.maintainers; [ AndersonTorres ]; 67 + maintainers = with lib.maintainers; [ ]; 68 68 inherit (wayland.meta) platforms; 69 69 }; 70 70 })
+1 -1
pkgs/by-name/wi/wifish/package.nix
··· 51 51 description = "Simple wifi shell script for linux"; 52 52 mainProgram = "wifish"; 53 53 license = licenses.wtfpl; 54 - maintainers = with maintainers; [ AndersonTorres ]; 54 + maintainers = with maintainers; [ ]; 55 55 platforms = with platforms; linux; 56 56 }; 57 57 }
+1 -1
pkgs/by-name/wi/windowmaker/package.nix
··· 82 82 changelog = "https://www.windowmaker.org/news/"; 83 83 license = lib.licenses.gpl2Plus; 84 84 mainProgram = "wmaker"; 85 - maintainers = [ lib.maintainers.AndersonTorres ]; 85 + maintainers = [ ]; 86 86 platforms = lib.platforms.linux; 87 87 }; 88 88 })
+1 -1
pkgs/by-name/wi/wio/package.nix
··· 78 78 ''; 79 79 license = with lib.licenses; [ bsd3 ]; 80 80 mainProgram = "wio"; 81 - maintainers = with lib.maintainers; [ AndersonTorres ]; 81 + maintainers = with lib.maintainers; [ ]; 82 82 inherit (wayland.meta) platforms; 83 83 }; 84 84 })
+1 -1
pkgs/by-name/wi/with-shell/package.nix
··· 71 71 To exit use either :q or :exit. 72 72 ''; 73 73 license = licenses.asl20; 74 - maintainers = with maintainers; [ AndersonTorres ]; 74 + maintainers = with maintainers; [ ]; 75 75 platforms = platforms.unix; 76 76 mainProgram = "with"; 77 77 };
+39 -26
pkgs/by-name/wi/wivrn/package.nix
··· 29 29 gst_all_1, 30 30 harfbuzz, 31 31 hidapi, 32 + kdePackages, 32 33 # leapsdk 33 34 # leapv2 34 35 libGL, ··· 75 76 }: 76 77 stdenv.mkDerivation (finalAttrs: { 77 78 pname = "wivrn"; 78 - version = "0.22"; 79 + version = "0.23"; 79 80 80 81 src = fetchFromGitHub { 81 82 owner = "wivrn"; 82 83 repo = "wivrn"; 83 84 rev = "v${finalAttrs.version}"; 84 - hash = "sha256-i/CG+zD64cwnu0z1BRkRn7Wm67KszE+wZ5geeAvrvMY="; 85 + hash = "sha256-Ae25yLlkZ958gXr8nyWPv27leVLF5enljXAkCx+fDSk="; 85 86 }; 86 87 87 88 monado = applyPatches { ··· 89 90 domain = "gitlab.freedesktop.org"; 90 91 owner = "monado"; 91 92 repo = "monado"; 92 - rev = "aa2b0f9f1d638becd6bb9ca3c357ac2561a36b07"; 93 - hash = "sha256-yfHtkMvX/gyVG0UgpSB6KjSDdCym6Reb9LRb3OortaI="; 93 + rev = "848a24aa106758fd6c7afcab6d95880c57dbe450"; 94 + hash = "sha256-+rax9/CG/3y8rLYwGqoWJa4FxH+Z3eREiwhuxDOUzLs="; 94 95 }; 95 96 96 97 patches = [ ··· 107 108 postUnpack = '' 108 109 # Let's make sure our monado source revision matches what is used by WiVRn upstream 109 110 ourMonadoRev="${finalAttrs.monado.src.rev}" 110 - theirMonadoRev=$(grep "GIT_TAG" ${finalAttrs.src.name}/CMakeLists.txt | awk '{print $2}') 111 + theirMonadoRev=$(sed -n '/FetchContent_Declare(monado/,/)/p' ${finalAttrs.src.name}/CMakeLists.txt | grep "GIT_TAG" | awk '{print $2}') 111 112 if [ ! "$theirMonadoRev" == "$ourMonadoRev" ]; then 112 113 echo "Our Monado source revision doesn't match CMakeLists.txt." >&2 113 114 echo " theirs: $theirMonadoRev" >&2 ··· 150 151 gst_all_1.gstreamer 151 152 harfbuzz 152 153 hidapi 154 + kdePackages.kcoreaddons 155 + kdePackages.ki18n 156 + kdePackages.kiconthemes 157 + kdePackages.kirigami 158 + kdePackages.qcoro 159 + kdePackages.qqc2-desktop-style 153 160 libbsd 154 161 libdrm 155 162 libGL ··· 174 181 orc 175 182 pipewire 176 183 qt6.qtbase 184 + qt6.qtsvg 177 185 qt6.qttools 178 186 SDL2 179 187 shaderc ··· 191 199 cudaPackages.cudatoolkit 192 200 ]; 193 201 194 - cmakeFlags = [ 195 - (lib.cmakeBool "WIVRN_USE_NVENC" cudaSupport) 196 - (lib.cmakeBool "WIVRN_USE_VAAPI" true) 197 - (lib.cmakeBool "WIVRN_USE_VULKAN" true) 198 - (lib.cmakeBool "WIVRN_USE_X264" true) 199 - (lib.cmakeBool "WIVRN_USE_PIPEWIRE" true) 200 - (lib.cmakeBool "WIVRN_USE_PULSEAUDIO" true) 201 - (lib.cmakeBool "WIVRN_FEATURE_STEAMVR_LIGHTHOUSE" true) 202 - (lib.cmakeBool "WIVRN_BUILD_CLIENT" false) 203 - (lib.cmakeBool "WIVRN_BUILD_DASHBOARD" true) 204 - (lib.cmakeBool "WIVRN_CHECK_CAPSYSNICE" false) 205 - (lib.cmakeBool "FETCHCONTENT_FULLY_DISCONNECTED" true) 206 - (lib.cmakeFeature "WIVRN_OPENXR_MANIFEST_TYPE" "absolute") 207 - (lib.cmakeFeature "GIT_DESC" "${finalAttrs.version}") 208 - (lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_MONADO" "${finalAttrs.monado}") 209 - (lib.cmakeFeature "CUDA_TOOLKIT_ROOT_DIR" "${cudaPackages.cudatoolkit}") 210 - ]; 202 + cmakeFlags = 203 + [ 204 + (lib.cmakeBool "WIVRN_USE_NVENC" cudaSupport) 205 + (lib.cmakeBool "WIVRN_USE_VAAPI" true) 206 + (lib.cmakeBool "WIVRN_USE_VULKAN_ENCODE" true) 207 + (lib.cmakeBool "WIVRN_USE_X264" true) 208 + (lib.cmakeBool "WIVRN_USE_PIPEWIRE" true) 209 + (lib.cmakeBool "WIVRN_USE_PULSEAUDIO" true) 210 + (lib.cmakeBool "WIVRN_FEATURE_STEAMVR_LIGHTHOUSE" true) 211 + (lib.cmakeBool "WIVRN_BUILD_CLIENT" false) 212 + (lib.cmakeBool "WIVRN_BUILD_DASHBOARD" true) 213 + (lib.cmakeBool "WIVRN_CHECK_CAPSYSNICE" false) 214 + (lib.cmakeBool "FETCHCONTENT_FULLY_DISCONNECTED" true) 215 + (lib.cmakeFeature "WIVRN_OPENXR_MANIFEST_TYPE" "absolute") 216 + (lib.cmakeFeature "GIT_DESC" "v${finalAttrs.version}") 217 + (lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_MONADO" "${finalAttrs.monado}") 218 + ] 219 + ++ lib.optionals cudaSupport [ 220 + (lib.cmakeFeature "CUDA_TOOLKIT_ROOT_DIR" "${cudaPackages.cudatoolkit}") 221 + ]; 222 + 223 + postFixup = '' 224 + wrapProgram $out/bin/wivrn-dashboard \ 225 + --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]} 226 + ''; 211 227 212 228 desktopItems = [ 213 229 (makeDesktopItem { ··· 218 234 icon = "io.github.wivrn.wivrn"; 219 235 exec = "wivrn-dashboard"; 220 236 type = "Application"; 221 - categories = [ 222 - "Network" 223 - "Game" 224 - ]; 237 + categories = [ "Network" ]; 225 238 }) 226 239 ]; 227 240
+1 -1
pkgs/by-name/wl/wlay/package.nix
··· 52 52 homepage = "https://github.com/atx/wlay"; 53 53 description = "Graphical output management for Wayland"; 54 54 license = lib.licenses.mit; 55 - maintainers = with lib.maintainers; [ AndersonTorres ]; 55 + maintainers = with lib.maintainers; [ ]; 56 56 inherit (wayland.meta) platforms; 57 57 mainProgram = "wlay"; 58 58 };
+1 -1
pkgs/by-name/wl/wlogout/package.nix
··· 82 82 changelog = "https://github.com/ArtsyMacaw/wlogout/releases/tag/${finalAttrs.src.rev}"; 83 83 license = with lib.licenses; [ mit ]; 84 84 mainProgram = "wlogout"; 85 - maintainers = with lib.maintainers; [ AndersonTorres ]; 85 + maintainers = with lib.maintainers; [ ]; 86 86 inherit (wayland.meta) platforms; 87 87 }; 88 88 })
+1 -1
pkgs/by-name/wo/worker/package.nix
··· 36 36 ''; 37 37 license = with lib.licenses; [ gpl2Plus ]; 38 38 mainProgram = "worker"; 39 - maintainers = with lib.maintainers; [ AndersonTorres ]; 39 + maintainers = with lib.maintainers; [ ]; 40 40 inherit (libX11.meta) platforms; 41 41 }; 42 42 })
+1 -1
pkgs/by-name/x1/x16/package.nix
··· 55 55 description = "Official emulator of CommanderX16 8-bit computer"; 56 56 changelog = "https://github.com/X16Community/x16-emulator/blob/r${finalAttrs.version}/RELEASES.md"; 57 57 license = lib.licenses.bsd2; 58 - maintainers = with lib.maintainers; [ AndersonTorres ]; 58 + maintainers = with lib.maintainers; [ ]; 59 59 mainProgram = "x16emu"; 60 60 inherit (SDL2.meta) platforms; 61 61 broken = stdenv.hostPlatform.isAarch64; # ofborg fails to compile it
+1 -1
pkgs/by-name/x1/x16/rom.nix
··· 53 53 homepage = "https://github.com/X16Community/x16-rom"; 54 54 description = "ROM file for CommanderX16 8-bit computer"; 55 55 license = lib.licenses.bsd2; 56 - maintainers = with lib.maintainers; [ AndersonTorres ]; 56 + maintainers = with lib.maintainers; [ ]; 57 57 inherit (cc65.meta) platforms; 58 58 broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; 59 59 };
-6
pkgs/by-name/x1/x16/run.nix
··· 32 32 runScript 33 33 ]; 34 34 } 35 - # TODO [ AndersonTorres ]: 36 - 37 - # 1. Parse the command line in order to allow the user to set an optional 38 - # rom-file 39 - # 2. generate runScript based on symlinkJoin (maybe a postBuild?) 40 - # 3. a NixOS module to abstract the runner
+1 -1
pkgs/by-name/xa/xa/package.nix
··· 64 64 - block structure for label scoping 65 65 ''; 66 66 license = lib.licenses.gpl2Plus; 67 - maintainers = with lib.maintainers; [ AndersonTorres ]; 67 + maintainers = with lib.maintainers; [ ]; 68 68 platforms = with lib.platforms; unix; 69 69 }; 70 70 })
+1 -1
pkgs/by-name/xa/xarcan/package.nix
··· 121 121 allows running an X session as a window under Arcan. 122 122 ''; 123 123 license = with lib.licenses; [ mit ]; 124 - maintainers = with lib.maintainers; [ AndersonTorres ]; 124 + maintainers = with lib.maintainers; [ ]; 125 125 platforms = lib.platforms.unix; 126 126 }; 127 127 })
+1 -1
pkgs/by-name/xe/xemu/package.nix
··· 147 147 changelog = "https://github.com/xemu-project/xemu/releases/tag/v${finalAttrs.version}"; 148 148 license = lib.licenses.gpl2Plus; 149 149 mainProgram = "xemu"; 150 - maintainers = with lib.maintainers; [ AndersonTorres ]; 150 + maintainers = with lib.maintainers; [ ]; 151 151 platforms = lib.platforms.linux; 152 152 }; 153 153 })
+16
pkgs/by-name/xf/xfsprogs/package.nix
··· 3 3 stdenv, 4 4 buildPackages, 5 5 fetchurl, 6 + autoreconfHook, 6 7 gettext, 7 8 pkg-config, 8 9 icu, ··· 22 23 hash = "sha256-CDJAckfbeRzHDe+W5+JUvW7fBD3ISoCmLzzNbj3/0yk="; 23 24 }; 24 25 26 + patches = [ 27 + (fetchurl { 28 + name = "icu76.patch"; 29 + url = "https://lore.kernel.org/linux-xfs/20250212081649.3502717-1-hi@alyssa.is/raw"; 30 + hash = "sha256-Z7BW0B+/5eHWXdHre++wRtdbU/P6XZqudYx6EK5msIU="; 31 + }) 32 + ]; 33 + 25 34 outputs = [ 26 35 "bin" 27 36 "dev" ··· 31 40 32 41 depsBuildBuild = [ buildPackages.stdenv.cc ]; 33 42 nativeBuildInputs = [ 43 + autoreconfHook 34 44 gettext 35 45 pkg-config 36 46 libuuid # codegen tool uses libuuid ··· 60 70 done 61 71 patchShebangs ./install-sh 62 72 ''; 73 + 74 + # The default --force would replace xfsprogs' custom install-sh. 75 + autoreconfFlags = [ 76 + "--install" 77 + "--verbose" 78 + ]; 63 79 64 80 configureFlags = [ 65 81 "--disable-lib64"
+1 -1
pkgs/by-name/xi/xine-lib/package.nix
··· 98 98 lgpl2Plus 99 99 ]; 100 100 # No useful mainProgram 101 - maintainers = with lib.maintainers; [ AndersonTorres ]; 101 + maintainers = with lib.maintainers; [ ]; 102 102 platforms = lib.platforms.linux; 103 103 }; 104 104 })
+1 -1
pkgs/by-name/xi/xine-ui/package.nix
··· 79 79 description = "Xlib-based frontend for Xine video player"; 80 80 license = lib.licenses.gpl2Plus; 81 81 mainProgram = "xine"; 82 - maintainers = with lib.maintainers; [ AndersonTorres ]; 82 + maintainers = with lib.maintainers; [ ]; 83 83 platforms = lib.platforms.linux; 84 84 }; 85 85 })
+1 -1
pkgs/by-name/xi/xiphos/package.nix
··· 107 107 ''; 108 108 homepage = "https://www.xiphos.org/"; 109 109 license = licenses.gpl2Plus; 110 - maintainers = [ maintainers.AndersonTorres ]; 110 + maintainers = [ ]; 111 111 platforms = platforms.linux; 112 112 }; 113 113 }
+1 -1
pkgs/by-name/xo/xosview/package.nix
··· 39 39 description = "Classic system monitoring tool"; 40 40 license = lib.licenses.gpl2Plus; 41 41 mainProgram = "xosview"; 42 - maintainers = with lib.maintainers; [ AndersonTorres ]; 42 + maintainers = with lib.maintainers; [ ]; 43 43 platforms = with lib.platforms; linux; 44 44 }; 45 45 })
+1 -1
pkgs/by-name/xo/xosview2/package.nix
··· 46 46 bsdOriginal 47 47 ]; 48 48 mainProgram = "xosview2"; 49 - maintainers = with lib.maintainers; [ AndersonTorres ]; 49 + maintainers = with lib.maintainers; [ ]; 50 50 inherit (libX11.meta) platforms; 51 51 }; 52 52 })
-1
pkgs/by-name/xs/xscreensaver/package.nix
··· 136 136 license = lib.licenses.mit; 137 137 maintainers = with lib.maintainers; [ 138 138 raskin 139 - AndersonTorres 140 139 ]; 141 140 platforms = lib.platforms.unix; 142 141 };
+1 -1
pkgs/by-name/ya/yabasic/package.nix
··· 40 40 ''; 41 41 changelog = "https://2484.de/yabasic/whatsnew.html"; 42 42 license = lib.licenses.mit; 43 - maintainers = with lib.maintainers; [ AndersonTorres ]; 43 + maintainers = with lib.maintainers; [ ]; 44 44 platforms = lib.platforms.all; 45 45 }; 46 46 })
+1 -1
pkgs/by-name/ya/yambar/package.nix
··· 123 123 ''; 124 124 changelog = "https://codeberg.org/dnkl/yambar/releases/tag/${finalAttrs.version}"; 125 125 license = lib.licenses.mit; 126 - maintainers = with lib.maintainers; [ AndersonTorres ]; 126 + maintainers = with lib.maintainers; [ ]; 127 127 platforms = lib.platforms.linux; 128 128 mainProgram = "yambar"; 129 129 };
+1 -1
pkgs/by-name/ya/yapesdl/package.nix
··· 48 48 changelog = "https://github.com/calmopyrin/yapesdl/releases/tag/${finalAttrs.src.rev}"; 49 49 license = lib.licenses.gpl2Plus; 50 50 mainProgram = "yapesdl"; 51 - maintainers = with lib.maintainers; [ AndersonTorres ]; 51 + maintainers = with lib.maintainers; [ ]; 52 52 platforms = lib.platforms.unix; 53 53 broken = stdenv.hostPlatform.isDarwin; 54 54 };
+1 -1
pkgs/by-name/ye/yeahwm/package.nix
··· 84 84 changelog = "http://phrat.de/README"; 85 85 license = lib.licenses.isc; 86 86 mainProgram = "yeahwm"; 87 - maintainers = with lib.maintainers; [ AndersonTorres ]; 87 + maintainers = with lib.maintainers; [ ]; 88 88 inherit (libX11.meta) platforms; 89 89 }; 90 90 })
+1 -1
pkgs/by-name/ye/yex-lang/package.nix
··· 22 22 homepage = "https://github.com/nonamescm/yex-lang"; 23 23 description = "Functional scripting language written in rust"; 24 24 license = licenses.mit; 25 - maintainers = with maintainers; [ AndersonTorres ]; 25 + maintainers = with maintainers; [ ]; 26 26 mainProgram = "yex"; 27 27 platforms = platforms.unix; 28 28 };
+1 -1
pkgs/by-name/yt/ytree/package.nix
··· 40 40 description = "Curses-based file manager similar to DOS Xtree(TM)"; 41 41 license = with lib.licenses; [ gpl2Plus ]; 42 42 mainProgram = "ytree"; 43 - maintainers = with lib.maintainers; [ AndersonTorres ]; 43 + maintainers = with lib.maintainers; [ ]; 44 44 platforms = lib.platforms.unix; 45 45 }; 46 46 })
+1 -1
pkgs/by-name/zc/zchunk/package.nix
··· 64 64 ''; 65 65 license = lib.licenses.bsd2; 66 66 mainProgram = "zck"; 67 - maintainers = with lib.maintainers; [ AndersonTorres ]; 67 + maintainers = with lib.maintainers; [ ]; 68 68 platforms = lib.platforms.unix; 69 69 }; 70 70 })
+1 -1
pkgs/by-name/ze/zegrapher/package.nix
··· 40 40 ''; 41 41 license = lib.licenses.gpl3Plus; 42 42 mainProgram = "ZeGrapher"; 43 - maintainers = with lib.maintainers; [ AndersonTorres ]; 43 + maintainers = with lib.maintainers; [ ]; 44 44 platforms = lib.platforms.unix; 45 45 }; 46 46 })
+1 -1
pkgs/by-name/ze/zesarux/package.nix
··· 77 77 description = "ZX Second-Emulator And Released for UniX"; 78 78 mainProgram = "zesarux"; 79 79 license = with lib.licenses; [ gpl3Plus ]; 80 - maintainers = with lib.maintainers; [ AndersonTorres ]; 80 + maintainers = with lib.maintainers; [ ]; 81 81 platforms = lib.platforms.unix; 82 82 }; 83 83 })
+1 -1
pkgs/by-name/zo/zoekt/package.nix
··· 39 39 description = "Fast trigram based code search"; 40 40 homepage = "https://github.com/sourcegraph/zoekt"; 41 41 license = lib.licenses.asl20; 42 - maintainers = with lib.maintainers; [ AndersonTorres ]; 42 + maintainers = with lib.maintainers; [ ]; 43 43 mainProgram = "zoekt"; 44 44 }; 45 45 }
-1
pkgs/by-name/zy/zydis/package.nix
··· 41 41 license = licenses.mit; 42 42 maintainers = with maintainers; [ 43 43 jbcrail 44 - AndersonTorres 45 44 athre0z 46 45 ]; 47 46 platforms = platforms.all;
+1 -1
pkgs/by-name/zz/zziplib/package.nix
··· 63 63 lgpl2Plus 64 64 mpl11 65 65 ]; 66 - maintainers = with maintainers; [ AndersonTorres ]; 66 + maintainers = with maintainers; [ ]; 67 67 platforms = platforms.unix; 68 68 }; 69 69 }
-1
pkgs/data/documentation/zeal/default.nix
··· 65 65 license = lib.licenses.gpl3Plus; 66 66 maintainers = with lib.maintainers; [ 67 67 peterhoeg 68 - AndersonTorres 69 68 ]; 70 69 mainProgram = "zeal"; 71 70 inherit (qtbase.meta) platforms;
+1 -1
pkgs/development/coq-modules/ElmExtraction/default.nix
··· 25 25 [ 26 26 { 27 27 cases = [ 28 - (range "8.17" "9.0") 28 + (range "8.17" "8.20") 29 29 (range "1.3.1" "1.3.4") 30 30 ]; 31 31 out = "0.1.0";
+6 -1
pkgs/development/coq-modules/VST/default.nix
··· 37 37 with lib.versions; 38 38 lib.switch coq.coq-version [ 39 39 { 40 + case = range "8.19" "8.20"; 41 + out = "2.15"; 42 + } 43 + { 40 44 case = range "8.15" "8.19"; 41 45 out = "2.14"; 42 46 } ··· 57 61 out = "2.8"; 58 62 } 59 63 ] null; 64 + release."2.15".sha256 = "sha256-51k2W4efMaEO4nZ0rdkRT9rA8ZJLpot1YpFmd6RIAXw="; 60 65 release."2.14".sha256 = "sha256-NHc1ZQ2VmXZy4lK2+mtyeNz1Qr9Nhj2QLxkPhhQB7Iw="; 61 66 release."2.13".sha256 = "sha256-i6rvP3cpayBln5KHZOpeNfraYU5h0O9uciBQ4jRH4XA="; 62 67 release."2.12".sha256 = "sha256-4HL0U4HA5/usKNXC0Dis1UZY/Hb/LRd2IGOrqrvdWkw="; ··· 71 76 preConfigure = '' 72 77 patchShebangs util 73 78 substituteInPlace Makefile \ 74 - --replace 'COQVERSION= ' 'COQVERSION= 8.19.2 or-else 8.17.1 or-else 8.16.1 or-else 8.16.0 or-else 8.15.2 or-else 8.15.1 or-else '\ 79 + --replace 'COQVERSION= ' 'COQVERSION= 8.20.1 or-else 8.19.2 or-else 8.17.1 or-else 8.16.1 or-else 8.16.0 or-else 8.15.2 or-else 8.15.1 or-else '\ 75 80 --replace 'FLOYD_FILES=' 'FLOYD_FILES= ${toString extra_floyd_files}' 76 81 ''; 77 82
+5
pkgs/development/coq-modules/autosubst-ocaml/default.nix
··· 9 9 pname = "autosubst-ocaml"; 10 10 owner = "uds-psl"; 11 11 12 + release."1.1+8.20".sha256 = "sha256-S3uKkwbGFsvauP9lKc3UsdszHahbZQhlOOK3fCBXlSE="; 12 13 release."1.1+8.19".sha256 = "sha256-AGbhw/6lg4GpDE6hZBhau9DLW7HVXa0UzGvJfSV8oHE="; 13 14 14 15 inherit version; 15 16 defaultVersion = 16 17 with lib.versions; 17 18 lib.switch coq.coq-version [ 19 + { 20 + case = isEq "8.20"; 21 + out = "1.1+8.20"; 22 + } 18 23 { 19 24 case = isEq "8.19"; 20 25 out = "1.1+8.19";
+5
pkgs/development/coq-modules/coquelicot/default.nix
··· 16 16 with lib.versions; 17 17 lib.switch coq.coq-version [ 18 18 { 19 + case = range "8.12" "9.0"; 20 + out = "3.4.3"; 21 + } 22 + { 19 23 case = range "8.12" "8.20"; 20 24 out = "3.4.2"; 21 25 } ··· 40 44 out = "3.0.2"; 41 45 } 42 46 ] null; 47 + release."3.4.3".sha256 = "sha256-bzzAIENU2OYTtmdBU9Xw8zyBvz9vqTiqjWSm7RnXXRA="; 43 48 release."3.4.2".sha256 = "sha256-aBTF8ZKu67Rb3ryCqFyejUXf/65KgG8i5je/ZMFSrj4="; 44 49 release."3.4.1".sha256 = "sha256-REhvIBl3EaL8CQqI34Gn7Xjf9NhPI3nrUAO26pSLbm0="; 45 50 release."3.4.0".sha256 = "sha256-LIj2SwTvVBxSAO58VYCQix/uxQQe8ey6hqFOSh3PNcg=";
+5
pkgs/development/coq-modules/corn/default.nix
··· 15 15 with lib.versions; 16 16 lib.switch coq.coq-version [ 17 17 { 18 + case = (range "8.18" "8.20"); 19 + out = "8.20.0"; 20 + } 21 + { 18 22 case = (range "8.17" "8.20"); 19 23 out = "8.19.0"; 20 24 } ··· 42 46 "8.16.0".sha256 = "sha256-ZE/EEIndxHfo/9Me5NX4ZfcH0ZAQ4sRfZY7LRZfLXBQ="; 43 47 "8.18.0".sha256 = "sha256-ow3mfarZ1PvBGf5WLnI8LdF3E+8A6fN7cOcXHrZJLo0="; 44 48 "8.19.0".sha256 = "sha256-h5MlfRuv2hTbxGmpLUEGQO1YqQTwUNEHZzCfvdOU1TA="; 49 + "8.20.0".sha256 = "sha256-tl68REU6xTbSOzhPucQPd9A3YnnaMNbSY8gl4Seyp10="; 45 50 }; 46 51 47 52 configureScript = "./configure.sh";
+5
pkgs/development/coq-modules/flocq/default.nix
··· 17 17 with lib.versions; 18 18 lib.switch coq.coq-version [ 19 19 { 20 + case = range "8.15" "9.0"; 21 + out = "4.2.1"; 22 + } 23 + { 20 24 case = range "8.14" "8.20"; 21 25 out = "4.2.0"; 22 26 } ··· 41 45 out = "2.6.1"; 42 46 } 43 47 ] null; 48 + release."4.2.1".sha256 = "sha256-W5hcAm0GGmNsvre79/iGNcoBwFzStC4G177hZ3ds/4E="; 44 49 release."4.2.0".sha256 = "sha256-uTeo4GCs6wTLN3sLKsj0xLlt1fUDYfozXtq6iooLUgM="; 45 50 release."4.1.4".sha256 = "sha256-Use6Mlx79yef1CkCPyGoOItsD69B9KR+mQArCtmre4s="; 46 51 release."4.1.3".sha256 = "sha256-os3cI885xNpxI+1p5rb8fSNnxKr7SFxqh83+3AM3t4I=";
+2 -1
pkgs/development/coq-modules/gappalib/default.nix
··· 13 13 owner = "gappa"; 14 14 domain = "gitlab.inria.fr"; 15 15 inherit version; 16 - defaultVersion = if lib.versions.range "8.8" "8.20" coq.coq-version then "1.5.5" else null; 16 + defaultVersion = if lib.versions.range "8.8" "8.20" coq.coq-version then "1.6.0" else null; 17 + release."1.6.0".sha256 = "sha256-GQls31TT4y3h18RUxAX+LpHIKon5UvDfW1GuURRKeKA="; 17 18 release."1.5.5".sha256 = "sha256-qxi2Kg3N3o6+ncq7aPNEg98dBmQC5WCa86zROPJSDdo="; 18 19 release."1.5.4".sha256 = "sha256-9PlkXqCu4rbFD7qnMF1GSpPCVmwJ3r593RfAvkJbbdA="; 19 20 release."1.5.3".sha256 = "sha256-SuMopX5sm4jh2uBuE7zr6vhWhHYZYnab+epjqYJqg+s=";
+5
pkgs/development/coq-modules/metacoq/default.nix
··· 49 49 case = "8.20"; 50 50 out = "1.3.4-8.20"; 51 51 } 52 + { 53 + case = "9.0"; 54 + out = "1.3.4-9.0"; 55 + } 52 56 ] null; 53 57 release = { 54 58 "1.0-beta2-8.11".sha256 = "sha256-I9YNk5Di6Udvq5/xpLSNflfjRyRH8fMnRzbo3uhpXNs="; ··· 69 73 "1.3.2-8.20".sha256 = "sha256-4J7Ly4Fc2E/I6YqvzTLntVVls5t94OUOjVMKJyyJdw8="; 70 74 "1.3.3-8.19".sha256 = "sha256-SBTv49zQXZ+oGvIqWM53hjBKru9prFgZRv8gVgls40k="; 71 75 "1.3.4-8.20".sha256 = "sha256-ofRP0Uo48G2LBuIy/5ZLyK+iVZXleKiwfMEBD0rX9fQ="; 76 + "1.3.4-9.0".sha256 = "sha256-BiAeuwL6WvDNs+ZGzPWj59kTS69J4kjrS3XIZyzpLOQ="; 72 77 }; 73 78 releaseRev = v: "v${v}"; 74 79
+1 -1
pkgs/development/coq-modules/multinomials/default.nix
··· 26 26 [ 27 27 { 28 28 cases = [ 29 - (range "8.17" "8.20") 29 + (range "8.17" "9.0") 30 30 (isGe "2.1.0") 31 31 ]; 32 32 out = "2.3.0";
+5
pkgs/development/coq-modules/vcfloat/default.nix
··· 22 22 with lib.versions; 23 23 lib.switch coq.coq-version [ 24 24 { 25 + case = isEq "8.20"; 26 + out = "2.3"; 27 + } 28 + { 25 29 case = isEq "8.19"; 26 30 out = "2.2"; 27 31 } ··· 30 34 out = "2.1.1"; 31 35 } 32 36 ] null; 37 + release."2.3".sha256 = "sha256-fV7w/kYTpcBxrHFzEvx+eydDHbGH05/seucrgSjKK3w="; 33 38 release."2.2".sha256 = "sha256-PyMm84ZYh+dOnl8Kk2wlYsQ+S/d1Hsp6uv2twTedEPg="; 34 39 release."2.1.1".sha256 = "sha256-bd/XSQhyFUAnSm2bhZEZBWB6l4/Ptlm9JrWu6w9BOpw="; 35 40 releaseRev = v: "v${v}";
+8
pkgs/development/haskell-modules/configuration-common.nix
··· 206 206 # Too strict lower bound on lens, drop with LTS 23 207 207 provide = doJailbreak super.provide; 208 208 # Too strict bounds on quickcheck-instances/tasty-qickcheck, drop with LTS 23 209 + 210 + # make gtk build with pango >= 1.56: https://github.com/gtk2hs/gtk2hs/issues/337 211 + pango = appendPatch (pkgs.fetchpatch { 212 + url = "https://github.com/gtk2hs/gtk2hs/pull/336/commits/ca7f98bd3e9462deac3661244dc76004a36fc8c3.patch"; 213 + hash = "sha256-fsZIwh4MY3Jnr3Gv4vZKl/LwUsJ+H+7KJ8unARQBifE="; 214 + stripLen = 1; 215 + }) super.pango; 216 + 209 217 lawful-conversions = doJailbreak super.lawful-conversions; 210 218 211 219 # Out of date test data: https://github.com/ocharles/weeder/issues/176
+3
pkgs/development/python-modules/arelle/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 + pythonAtLeast, 4 5 fetchFromGitHub, 5 6 6 7 setuptools, ··· 46 47 pname = "arelle${lib.optionalString (!gui) "-headless"}"; 47 48 version = "2.30.25"; 48 49 pyproject = true; 50 + 51 + disabled = pythonAtLeast "3.13"; # Note: when updating, check if this is still needed 49 52 50 53 src = fetchFromGitHub { 51 54 owner = "Arelle";
+3 -3
pkgs/development/python-modules/ariadne/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "ariadne"; 22 - version = "0.24"; 22 + version = "0.25.2"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.8"; ··· 28 28 owner = "mirumee"; 29 29 repo = "ariadne"; 30 30 tag = version; 31 - hash = "sha256-QLMPmep/mtw/ZDto3kK1y/9N+7aZwAke8ZHC6dzwUuM="; 31 + hash = "sha256-bkc/Ixqr7+YFCMnVhuS2KsXnacxSUsQpeHRAO93wfio="; 32 32 }; 33 33 34 34 patches = [ ./remove-opentracing.patch ]; ··· 78 78 meta = with lib; { 79 79 description = "Python library for implementing GraphQL servers using schema-first approach"; 80 80 homepage = "https://ariadnegraphql.org"; 81 - changelog = "https://github.com/mirumee/ariadne/blob/${version}/CHANGELOG.md"; 81 + changelog = "https://github.com/mirumee/ariadne/blob/${src.tag}/CHANGELOG.md"; 82 82 license = licenses.bsd3; 83 83 maintainers = with maintainers; [ samuela ]; 84 84 };
+12 -9
pkgs/development/python-modules/azure-mgmt-batchai/default.nix
··· 4 4 fetchPypi, 5 5 azure-common, 6 6 azure-mgmt-core, 7 - azure-mgmt-nspkg, 8 - msrestazure, 7 + isodate, 8 + pythonOlder, 9 + typing-extensions, 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "azure-mgmt-batchai"; 13 - version = "2.0.0"; 14 + version = "7.0.0"; 14 15 format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.7"; 15 18 16 19 src = fetchPypi { 17 - inherit pname version; 18 - extension = "zip"; 19 - sha256 = "f1870b0f97d5001cdb66208e5a236c9717a0ed18b34dbfdb238a828f3ca2a683"; 20 + inherit version; 21 + pname = "azure_mgmt_batchai"; 22 + hash = "sha256-XfAE/QyST8ZVlJR6nP9Pdgh97hfIhFM6G7sLINsn06M="; 20 23 }; 21 24 22 25 propagatedBuildInputs = [ 23 - msrestazure 26 + isodate 24 27 azure-common 25 28 azure-mgmt-core 26 - azure-mgmt-nspkg 27 - ]; 29 + ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ]; 28 30 29 31 pythonNamespaces = [ "azure.mgmt" ]; 30 32 ··· 34 36 meta = with lib; { 35 37 description = "This is the Microsoft Azure Batch AI Management Client Library"; 36 38 homepage = "https://github.com/Azure/azure-sdk-for-python"; 39 + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-batchai_${version}/sdk/batchai/azure-mgmt-batchai/CHANGELOG.md"; 37 40 license = licenses.mit; 38 41 maintainers = with maintainers; [ maxwilson ]; 39 42 };
+4 -3
pkgs/development/python-modules/azure-mgmt-redis/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-mgmt-redis"; 14 - version = "14.4.0"; 14 + version = "14.5.0"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 - inherit pname version; 21 - hash = "sha256-CIRzJa/wexeuheb+Az0KBaz4z0HMmpzGBiOuLaxGZ+8="; 20 + inherit version; 21 + pname = "azure_mgmt_redis"; 22 + hash = "sha256-XDQ0yCSSaI4luTqvURPs/wuSt61toqT9RpVTD4KxUvo="; 22 23 }; 23 24 24 25 propagatedBuildInputs = [
+36 -43
pkgs/development/python-modules/datashape/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - pytest, 6 - mock, 7 - numpy, 8 - multipledispatch, 9 - python-dateutil, 5 + 6 + # build-system 10 7 setuptools, 11 8 versioneer, 9 + 10 + # dependencies 11 + multipledispatch, 12 + numpy, 13 + python-dateutil, 14 + 15 + # tests 16 + pytestCheckHook, 12 17 }: 13 18 14 - let 15 - # Fetcher function looks similar to fetchPypi. 16 - # Allows for easier overriding, without having to know 17 - # how the source is actually fetched. 18 - fetcher = 19 - { 20 - pname, 21 - version, 22 - sha256, 23 - }: 24 - fetchFromGitHub { 25 - owner = "blaze"; 26 - repo = pname; 27 - rev = version; 28 - inherit sha256; 29 - }; 30 - in 31 19 buildPythonPackage rec { 32 20 pname = "datashape"; 33 21 version = "0.5.4"; 34 - 35 22 pyproject = true; 36 - build-system = [ 37 - setuptools 38 - versioneer 39 - ]; 40 23 41 - src = fetcher { 42 - inherit pname version; 43 - sha256 = "0rhlj2kjj1vx5m73wnc5518rd6cs1zsbgpsvzk893n516k69shcf"; 24 + src = fetchFromGitHub { 25 + owner = "blaze"; 26 + repo = "datashape"; 27 + tag = version; 28 + hash = "sha256-jkGdzDSh2JHQ/Fvft/QPmpmWUSiFWT5OLX0HKaeQFGY="; 44 29 }; 45 30 46 31 postPatch = '' ··· 48 33 rm versioneer.py 49 34 ''; 50 35 51 - nativeCheckInputs = [ 52 - pytest 53 - mock 36 + build-system = [ 37 + setuptools 38 + versioneer 54 39 ]; 40 + 55 41 dependencies = [ 42 + multipledispatch 56 43 numpy 57 - multipledispatch 58 44 python-dateutil 59 45 ]; 60 46 61 - # Disable several tests 62 - # https://github.com/blaze/datashape/issues/232 63 - checkPhase = '' 64 - pytest --ignore datashape/tests/test_str.py \ 65 - --ignore datashape/tests/test_user.py 66 - ''; 47 + nativeCheckInputs = [ 48 + pytestCheckHook 49 + ]; 67 50 68 - # https://github.com/blaze/datashape/issues/238 69 - PYTEST_ADDOPTS = "-k 'not test_record and not test_tuple'"; 51 + disabledTests = [ 52 + # AttributeError: `np.unicode_` was removed in the NumPy 2.0 release. Use `np.str_` instead. 53 + "test_from_numpy_dtype_fails" 54 + "test_string_from_CType_classmethod" 55 + ]; 70 56 57 + disabledTestPaths = [ 58 + # numpy incompatibilities 59 + # https://github.com/blaze/datashape/issues/232 60 + "datashape/tests/test_str.py" 61 + "datashape/tests/test_user.py" 62 + ]; 71 63 meta = { 72 - homepage = "https://github.com/ContinuumIO/datashape"; 73 64 description = "Data description language"; 65 + homepage = "https://github.com/ContinuumIO/datashape"; 66 + changelog = "https://github.com/blaze/datashape/releases/tag/${version}"; 74 67 license = lib.licenses.bsd2; 75 68 }; 76 69 }
+15 -9
pkgs/development/python-modules/drf-ujson2/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 + pythonOlder, 6 + 7 + # build-system 8 + setuptools, 5 9 6 10 # dependencies 7 11 django, ··· 9 13 ujson, 10 14 11 15 # tests 16 + pytest-cov-stub, 12 17 pytest-django, 13 18 pytest-mock, 14 19 pytestCheckHook, ··· 16 21 17 22 buildPythonPackage rec { 18 23 pname = "drf-ujson2"; 19 - version = "1.7.2"; 20 - format = "setuptools"; 24 + version = "1.8.0"; 25 + pyproject = true; 26 + 27 + disabled = pythonOlder "3.10"; 21 28 22 29 src = fetchFromGitHub { 23 30 owner = "Amertz08"; 24 31 repo = "drf_ujson2"; 25 32 tag = "v${version}"; 26 - hash = "sha256-kbpZN1zOXHvRPcn+Sjbelq74cWgvCUeMXZy1eFSa6rA="; 33 + hash = "sha256-NtloZWsEmRbPl7pdxPQqpzIzTyyOEFO9KtZ60F7VuUQ="; 27 34 }; 28 35 29 - postPatch = '' 30 - sed -i '/--cov/d' setup.cfg 31 - ''; 32 - 33 - buildInputs = [ django ]; 36 + build-system = [ setuptools ]; 34 37 35 - propagatedBuildInputs = [ 38 + dependencies = [ 39 + django 36 40 djangorestframework 37 41 ujson 38 42 ]; ··· 40 44 env.DJANGO_SETTINGS_MODULE = "tests.settings"; 41 45 42 46 nativeCheckInputs = [ 47 + pytest-cov-stub 43 48 pytest-django 44 49 pytest-mock 45 50 pytestCheckHook ··· 49 54 changelog = "https://github.com/Amertz08/drf_ujson2/releases/tag/v${version}"; 50 55 description = "JSON parser and renderer using ujson for Django Rest Framework"; 51 56 homepage = "https://github.com/Amertz08/drf_ujson2"; 57 + license = licenses.mit; 52 58 maintainers = with maintainers; [ hexa ]; 53 59 }; 54 60 }
+16 -1
pkgs/development/python-modules/miniupnpc/default.nix
··· 3 3 lib, 4 4 buildPythonPackage, 5 5 fetchPypi, 6 + fetchpatch, 7 + setuptools, 6 8 cctools, 7 9 which, 8 10 }: ··· 10 12 buildPythonPackage rec { 11 13 pname = "miniupnpc"; 12 14 version = "2.3.0"; 13 - format = "setuptools"; 15 + pyproject = true; 14 16 15 17 src = fetchPypi { 16 18 inherit pname version; 17 19 hash = "sha256-AvnUqth2igy4xGvDC+C6jOwUi2005NDvmfrbec+JrzE="; 18 20 }; 21 + 22 + patches = [ 23 + # TODO: remove this patch when updating to the next release 24 + (fetchpatch { 25 + url = "https://github.com/miniupnp/miniupnp/commit/f79ae6738d10af633844dcf3ecd9c587e8f9508d.patch"; 26 + stripLen = 1; 27 + hash = "sha256-g+D9Cw5knTy5a7M0wAQkw8MZ6iZR8RQUT6A0WAc6Q5U="; 28 + }) 29 + ]; 30 + 31 + build-system = [ 32 + setuptools 33 + ]; 19 34 20 35 nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 21 36 cctools
+16
pkgs/development/python-modules/playwright/default.nix
··· 13 13 setuptools-scm, 14 14 playwright-driver, 15 15 nixosTests, 16 + writeText, 17 + runCommand, 18 + pythonPackages, 16 19 nodejs, 17 20 }: 18 21 ··· 81 84 pyee 82 85 ]; 83 86 87 + setupHook = writeText "setupHook.sh" '' 88 + addBrowsersPath () { 89 + if [[ ! -v PLAYWRIGHT_BROWSERS_PATH ]] ; then 90 + export PLAYWRIGHT_BROWSERS_PATH="${playwright-driver.browsers}" 91 + fi 92 + } 93 + 94 + addEnvHooks "$targetOffset" addBrowsersPath 95 + ''; 96 + 84 97 postInstall = '' 85 98 ln -s ${driver} $out/${python.sitePackages}/playwright/driver 86 99 ''; ··· 96 109 { 97 110 driver = playwright-driver; 98 111 browsers = playwright-driver.browsers; 112 + env = runCommand "playwright-env-test" { 113 + buildInputs = [ pythonPackages.playwright ]; 114 + } "python ${./test.py}"; 99 115 } 100 116 // lib.optionalAttrs stdenv.hostPlatform.isLinux { 101 117 inherit (nixosTests) playwright-python;
+10
pkgs/development/python-modules/playwright/test.py
··· 1 + import os 2 + import sys 3 + 4 + from playwright.sync_api import sync_playwright 5 + 6 + with sync_playwright() as p: 7 + browser = p.chromium.launch() 8 + context = browser.new_context() 9 + with open(os.environ["out"], "w") as f: 10 + f.write("OK")
-1
pkgs/development/python-modules/py65/default.nix
··· 35 35 license = lib.licenses.bsd3; 36 36 mainProgram = "py65mon"; 37 37 maintainers = with lib.maintainers; [ 38 - AndersonTorres 39 38 tomasajt 40 39 ]; 41 40 };
+3 -3
pkgs/development/python-modules/thermopro-ble/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "thermopro-ble"; 16 - version = "0.10.1"; 16 + version = "0.11.0"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.9"; ··· 22 22 owner = "bluetooth-devices"; 23 23 repo = "thermopro-ble"; 24 24 tag = "v${version}"; 25 - hash = "sha256-OGUgWiD/4a2A40wut70YAvwBREpB9xjN0YcFpu411z4="; 25 + hash = "sha256-3GgFRY36KMcMWxwjLgzuJB++DZ2TMdQQruen1gLHAbk="; 26 26 }; 27 27 28 28 build-system = [ poetry-core ]; ··· 43 43 meta = with lib; { 44 44 description = "Library for Thermopro BLE devices"; 45 45 homepage = "https://github.com/bluetooth-devices/thermopro-ble"; 46 - changelog = "https://github.com/Bluetooth-Devices/thermopro-ble/blob/v${version}/CHANGELOG.md"; 46 + changelog = "https://github.com/Bluetooth-Devices/thermopro-ble/blob/${src.tag}/CHANGELOG.md"; 47 47 license = licenses.mit; 48 48 maintainers = with maintainers; [ fab ]; 49 49 };
+19
pkgs/development/web/playwright/driver.nix
··· 12 12 makeFontsConf, 13 13 makeWrapper, 14 14 runCommand, 15 + writeText, 15 16 cacert, 16 17 }: 17 18 let ··· 188 189 runHook postInstall 189 190 ''; 190 191 192 + setupHook = writeText "setupHook.sh" '' 193 + addBrowsersPath () { 194 + if [[ ! -v PLAYWRIGHT_BROWSERS_PATH ]] ; then 195 + export PLAYWRIGHT_BROWSERS_PATH="${playwright-core.passthru.browsers}" 196 + fi 197 + } 198 + 199 + addEnvHooks "$targetOffset" addBrowsersPath 200 + ''; 201 + 191 202 meta = playwright.meta // { 192 203 mainProgram = "playwright"; 193 204 }; 205 + 206 + passthru.tests.env = runCommand "playwright-core-env-test" { 207 + buildInputs = [ 208 + nodejs 209 + playwright-core 210 + playwright-test 211 + ]; 212 + } "node ${./test.js}"; 194 213 }); 195 214 196 215 browsers = lib.makeOverridable (
+8
pkgs/development/web/playwright/test.js
··· 1 + const playwright = require('playwright'); 2 + const fs = require('fs'); 3 + playwright.chromium.launch() 4 + .then((browser) => { 5 + console.log('OK'); 6 + fs.writeFileSync(process.env.out, ''); 7 + process.exit(0); 8 + });
+1 -1
pkgs/games/2048-cli/default.nix
··· 58 58 homepage = "https://github.com/tiehuis/2048-cli"; 59 59 description = "Game 2048 for your Linux terminal"; 60 60 license = lib.licenses.mit; 61 - maintainers = [ lib.maintainers.AndersonTorres ]; 61 + maintainers = [ ]; 62 62 platforms = lib.platforms.unix; 63 63 mainProgram = "2048"; 64 64 };
+4 -4
pkgs/os-specific/linux/kernel/xanmod-kernels.nix
··· 14 14 # kernel config in the xanmod version commit 15 15 variants = { 16 16 lts = { 17 - version = "6.6.70"; 18 - hash = "sha256-5G3Lo+dWObVDaBRzn2Ho24R2vMjsupx5z2jRIQ0NAl0="; 17 + version = "6.12.12"; 18 + hash = "sha256-k+nRkmqZXqHTYVT4r+Lt7SG9uLDsefM3ivV5Ps6VL8c="; 19 19 }; 20 20 main = { 21 - version = "6.12.9"; 22 - hash = "sha256-vA1/OhhwSKVIaLJ7uN2ut1b1/UX/mIAITQ3BqTZD9Uk="; 21 + version = "6.12.12"; 22 + hash = "sha256-k+nRkmqZXqHTYVT4r+Lt7SG9uLDsefM3ivV5Ps6VL8c="; 23 23 }; 24 24 }; 25 25
+3 -1
pkgs/servers/authelia/default.nix
··· 7 7 installShellFiles, 8 8 callPackage, 9 9 nixosTests, 10 + authelia-web ? callPackage ./web.nix { inherit nodejs pnpm fetchFromGitHub; }, 10 11 }: 11 12 12 13 let ··· 16 17 src 17 18 vendorHash 18 19 ; 19 - web = callPackage ./web.nix { inherit nodejs pnpm fetchFromGitHub; }; 20 + 21 + web = authelia-web; 20 22 in 21 23 buildGoModule rec { 22 24 inherit
+4
pkgs/servers/mastodon/default.nix
··· 74 74 yarn cache clean --all 75 75 rm -rf ~/node_modules/.cache 76 76 77 + # Remove workspace "package" as it contains broken symlinks 78 + # See https://github.com/NixOS/nixpkgs/issues/380366 79 + rm -rf ~/node_modules/@mastodon 80 + 77 81 # Remove execute permissions 78 82 find ~/public/assets -type f ! -perm 0555 \ 79 83 -exec chmod 0444 {} ';'
+1 -1
pkgs/test/haskell/upstreamStackHpackVersion/default.nix
··· 46 46 --retry 3 47 47 --disable-epsv 48 48 --cookie-jar cookies 49 - --user-agent "curl " 49 + --user-agent "nixpkgs stack version test/1.0" 50 50 --insecure 51 51 ) 52 52
+3 -2
pkgs/tools/security/aflplusplus/default.nix
··· 37 37 libtokencap = callPackage ./libtokencap.nix { inherit aflplusplus; }; 38 38 aflplusplus = stdenvNoCC.mkDerivation rec { 39 39 pname = "aflplusplus"; 40 - version = "4.21c"; 40 + version = "4.31c"; 41 41 42 42 src = fetchFromGitHub { 43 43 owner = "AFLplusplus"; 44 44 repo = "AFLplusplus"; 45 45 tag = "v${version}"; 46 - hash = "sha256-DKwPRxSO+JEJYWLldnfrAYqzwqukNzrbo4R5FzJqzzg="; 46 + hash = "sha256-O3NPtQaxcRRFE6H7O6JTsmQsO+iEl8eQxHGKtc+1g8w="; 47 47 }; 48 48 49 49 enableParallelBuilding = true; ··· 209 209 maintainers = with lib.maintainers; [ 210 210 ris 211 211 mindavi 212 + msanft 212 213 ]; 213 214 }; 214 215 };
+4 -1
pkgs/tools/security/aflplusplus/libdislocator.nix
··· 35 35 several ways 36 36 ''; 37 37 license = lib.licenses.asl20; 38 - maintainers = with lib.maintainers; [ ris ]; 38 + maintainers = with lib.maintainers; [ 39 + ris 40 + msanft 41 + ]; 39 42 }; 40 43 }
+4 -1
pkgs/tools/security/aflplusplus/libtokencap.nix
··· 31 31 homepage = "https://github.com/AFLplusplus/AFLplusplus"; 32 32 description = "strcmp & memcmp token capture library"; 33 33 license = lib.licenses.asl20; 34 - maintainers = with lib.maintainers; [ ris ]; 34 + maintainers = with lib.maintainers; [ 35 + ris 36 + msanft 37 + ]; 35 38 }; 36 39 }
+8 -4
pkgs/tools/security/aflplusplus/qemu.nix
··· 25 25 src = fetchFromGitHub { 26 26 owner = "AFLplusplus"; 27 27 repo = "qemuafl"; 28 - # rev origin: https://github.com/AFLplusplus/AFLplusplus/blob/v4.21c/qemu_mode/QEMUAFL_VERSION 29 - rev = "a6f0632a65e101e680dd72643a6128dd180dff72"; 30 - sha256 = "sha256-4kaQA5KDUqkK+fbjHg47lxZHRN8JrfSC2zdjrbMbDPo="; 28 + # Use a fixed qemuafl version instead of the one in https://github.com/AFLplusplus/AFLplusplus/blob/v4.31c/qemu_mode/QEMUAFL_VERSION. 29 + # See: https://github.com/AFLplusplus/AFLplusplus/issues/2296. 30 + rev = "ef1cd9a8cb1522c918faab42805216f9a4054dda"; 31 + hash = "sha256-tbKDnDoBtFhvtE9nbi9XuHPuFuGezUFngnw4pJyKFgY="; 31 32 fetchSubmodules = true; 32 33 }; 33 34 ··· 139 140 homepage = "https://github.com/AFLplusplus/qemuafl"; 140 141 description = "Fork of QEMU with AFL++ instrumentation support"; 141 142 license = lib.licenses.gpl2Plus; 142 - maintainers = with lib.maintainers; [ ris ]; 143 + maintainers = with lib.maintainers; [ 144 + ris 145 + msanft 146 + ]; 143 147 platforms = lib.platforms.linux; 144 148 }; 145 149 }
+1 -1
pkgs/top-level/coq-packages.nix
··· 171 171 (lib.versionAtLeast self.coq.version "8.14") { 172 172 compcert = self.compcert.override { 173 173 version = with lib.versions; lib.switch self.coq.version [ 174 - { case = range "8.15" "8.19"; out = "3.13.1"; } 174 + { case = range "8.15" "8.18"; out = "3.13.1"; } 175 175 { case = isEq "8.14"; out = "3.11"; } 176 176 ] null; 177 177 };