···7070 '';71717272 dontPatchShebangs = true;7373+ postFixup = ''7474+ addToSearchPath program_PYTHONPATH $out/${python.sitePackages}7575+ patchPythonScript $out/share/matrix.py7676+ '';73777478 meta = with lib; {7579 description = "A Python plugin for Weechat that lets Weechat communicate over the Matrix protocol";
···4949 ruamel_yaml5050 ];51515252+ # no tests5353+ doCheck = false;5454+5255 meta = with lib; {5356 homepage = "https://f-droid.org";5457 description = "Server and tools for F-Droid, the Free Software repository system for Android";
···11-{ lib, pkgs }:11+{ lib, pkgs, stdenv }:22let33 inherit (import ./semver.nix { inherit lib ireplace; }) satisfiesSemver;44 inherit (builtins) genList length;···194194 inherit src;195195 };196196 };197197+198198+ # Maps Nixpkgs CPU values to target machines known to be supported for manylinux* wheels.199199+ # (a.k.a. `uname -m` output from CentOS 7)200200+ #201201+ # This is current as of manylinux2014 (PEP-0599), and is a superset of manylinux2010 / manylinux1.202202+ # s390x is not supported in Nixpkgs, so we don't map it.203203+ manyLinuxTargetMachines = {204204+ x86_64 = "x86_64";205205+ i686 = "i686";206206+ aarch64 = "aarch64";207207+ armv7l = "armv7l";208208+ powerpc64 = "ppc64";209209+ powerpc64le = "ppc64le";210210+ };211211+212212+ # Machine tag for our target platform (if available)213213+ targetMachine = manyLinuxTargetMachines.${stdenv.targetPlatform.parsed.cpu.name} or null;197214in198215{199216 inherit···224207 cleanPythonSources225208 moduleName226209 getPythonVersion210210+ targetMachine227211 ;228212}
···77 pname = "tridactyl-native";88 # this is actually the version of tridactyl itself; the native messenger will99 # probably not change with every tridactyl version1010- version = "1.20.3";1010+ version = "1.20.4";11111212 src = fetchFromGitHub {1313 owner = "tridactyl";1414 repo = "tridactyl";1515 rev = version;1616- sha256 = "064cl9m4hdv69q1af0xjcf2rf30n3pvz6ym2l53w90aq3217amps";1616+ sha256 = "sha256-BjjRB9VadQ/MSwNK2QLbcTDoRs6Ua+5MONHtmfq4xz0=";1717 };1818 sourceRoot = "source/native";1919