Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
35eee590 14b83b5e

+2386 -1177
+1 -1
.github/CODEOWNERS
··· 53 53 /pkgs/test/nixpkgs-check-by-name @infinisil 54 54 /pkgs/by-name/README.md @infinisil 55 55 /pkgs/top-level/by-name-overlay.nix @infinisil 56 - /.github/workflows/check-by-name.nix @infinisil 56 + /.github/workflows/check-by-name.yml @infinisil 57 57 58 58 # Nixpkgs build-support 59 59 /pkgs/build-support/writers @lassulus @Profpatsch
+3 -1
.github/workflows/check-by-name.yml
··· 19 19 steps: 20 20 - name: Resolving the merge commit 21 21 run: | 22 - if result=$(git ls-remote --exit-code ${{ github.event.pull_request.base.repo.clone_url }} refs/pull/${{ github.event.pull_request.number }}/merge); then 22 + if result=$(git ls-remote --exit-code ${{ github.event.pull_request.base.repo.clone_url }} refs/pull/${{ github.event.pull_request.number }}/merge 2>&1); then 23 23 mergedSha=$(cut -f1 <<< "$result") 24 24 echo "The PR appears to not have any conflicts, checking the merge commit $mergedSha" 25 25 else 26 26 echo "The PR may have a merge conflict" 27 + echo "'git ls-remote' output was:" 28 + echo "$result" 27 29 exit 1 28 30 fi 29 31 echo "mergedSha=$mergedSha" >> "$GITHUB_ENV"
+1 -1
nixos/modules/services/security/opensnitch.nix
··· 172 172 ln -sf '${file}' "${local}" 173 173 '') rules} 174 174 175 - if [ ! -f /etc/opensnitch-system-fw.json ]; then 175 + if [ ! -f /etc/opensnitchd/system-fw.json ]; then 176 176 cp "${pkgs.opensnitch}/etc/opensnitchd/system-fw.json" "/etc/opensnitchd/system-fw.json" 177 177 fi 178 178 '');
+2 -2
pkgs/applications/audio/bitwig-studio/bitwig-studio5.nix
··· 27 27 28 28 stdenv.mkDerivation rec { 29 29 pname = "bitwig-studio"; 30 - version = "5.0.7"; 30 + version = "5.0.9"; 31 31 32 32 src = fetchurl { 33 33 url = "https://downloads.bitwig.com/stable/${version}/${pname}-${version}.deb"; 34 - sha256 = "sha256-jsHGUAVRUiz9soffW1PvF6UUGzbGhltaKtEW5ynq/Xk="; 34 + sha256 = "sha256-B6s8FuNvJ3NdU7uZ+AsZkiFf9p6WcLzoZPsfzors1kk="; 35 35 }; 36 36 37 37 nativeBuildInputs = [ dpkg makeWrapper wrapGAppsHook ];
+42 -20
pkgs/applications/audio/mpc123/default.nix
··· 1 - { fetchurl, lib, stdenv, gettext, libmpcdec, libao }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitLab 4 + , gettext 5 + , libao 6 + , libmpcdec 7 + }: 2 8 3 - let version = "0.2.4"; in 4 - stdenv.mkDerivation rec { 9 + stdenv.mkDerivation (finalAttrs: { 5 10 pname = "mpc123"; 6 - inherit version; 11 + version = "0.2.4"; 7 12 8 - src = fetchurl { 9 - url = "mirror://sourceforge/mpc123/version%20${version}/${pname}-${version}.tar.gz"; 10 - sha256 = "0sf4pns0245009z6mbxpx7kqy4kwl69bc95wz9v23wgappsvxgy1"; 13 + src = fetchFromGitLab { 14 + domain = "salsa.debian.org"; 15 + owner = "debian"; 16 + repo = "mpc123"; 17 + rev = "upstream/${finalAttrs.version}"; 18 + hash = "sha256-+/yxb19CJzyjQmT3O21pEmPR5YudmyCxWwo+W3uOB9Q="; 11 19 }; 12 20 13 - patches = [ ./use-gcc.patch ]; 21 + strictDeps = true; 22 + 23 + nativeBuildInputs = [ 24 + gettext 25 + ]; 26 + 27 + buildInputs = [ 28 + gettext 29 + libao 30 + libmpcdec 31 + ]; 32 + 33 + makeFlags = [ 34 + "CC=${stdenv.cc.targetPrefix}cc" 35 + ]; 14 36 15 37 # Workaround build failure on -fno-common toolchains like upstream 16 38 # gcc-10. Otherwise build fails as: 17 39 # ld: /build/cc566Cj9.o:(.bss+0x0): multiple definition of `mpc123_file_reader'; ao.o:(.bss+0x40): first defined here 18 40 env.NIX_CFLAGS_COMPILE = "-fcommon"; 19 41 20 - buildInputs = [ gettext libmpcdec libao ]; 42 + # XXX: Should install locales too (though there's only 1 available). 43 + installPhase = '' 44 + runHook preInstall 21 45 22 - installPhase = 23 - # XXX: Should install locales too (though there's only 1 available). 24 - '' mkdir -p "$out/bin" 25 - cp -v mpc123 "$out/bin" 26 - ''; 46 + mkdir -p "$out/bin" 47 + cp -v mpc123 "$out/bin" 48 + 49 + runHook postInstall 50 + ''; 27 51 28 52 meta = { 29 - homepage = "https://mpc123.sourceforge.net/"; 30 - 31 53 description = "A Musepack (.mpc) audio player"; 32 - 54 + homepage = "https://github.com/bucciarati/mpc123"; 33 55 license = lib.licenses.gpl2Plus; 34 - 56 + mainProgram = "mpc123"; 35 57 maintainers = [ ]; 36 - platforms = lib.platforms.gnu ++ lib.platforms.linux; # arbitrary choice 58 + platforms = lib.platforms.unix; 37 59 }; 38 - } 60 + })
-13
pkgs/applications/audio/mpc123/use-gcc.patch
··· 1 - Don't worry, just use GCC and everything's gonna be alright. 2 - 3 - --- mpc123-0.2.4/Makefile 2008-03-21 22:14:38.000000000 +0100 4 - +++ mpc123-0.2.4/Makefile 2010-01-28 23:26:49.000000000 +0100 5 - @@ -17,7 +17,7 @@ 6 - # along with this program; if not, write to the Free Software Foundation, 7 - # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 8 - 9 - -CC := $(shell which colorgcc || which cc) 10 - +CC := gcc 11 - 12 - TAGSPRG := ctags 13 -
+2 -2
pkgs/applications/audio/ocenaudio/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "ocenaudio"; 14 - version = "3.12.7"; 14 + version = "3.13.1"; 15 15 16 16 src = fetchurl { 17 17 url = "https://www.ocenaudio.com/downloads/index.php/ocenaudio_debian9_64.deb?version=${version}"; 18 - sha256 = "sha256-+D/JvC0emKdxzd0l2n1QZ0geosrMpdpaxru5z61kqxA="; 18 + sha256 = "sha256-h5t5DpZD9zmmyGRueXBG5Pn+vZstm5yCUr6Mx3eyvsc="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/applications/blockchains/besu/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "besu"; 5 - version = "23.7.2"; 5 + version = "23.7.3"; 6 6 7 7 src = fetchurl { 8 8 url = "https://hyperledger.jfrog.io/artifactory/${pname}-binaries/${pname}/${version}/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-90sywaNDy62QqIqlkna0xe7+pGQ+5UKrorv4mPha4kI="; 9 + sha256 = "sha256-wSymqYYVV+C/jycHb4yK/M5vFWRofl8Cv9yWwrGIRv8="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/applications/editors/openvi/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "openvi"; 10 - version = "7.4.23"; 10 + version = "7.4.24"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "johnsonjh"; 14 14 repo = "OpenVi"; 15 15 rev = version; 16 - hash = "sha256-DwecSnByRkjBFqy3gWJ0+1srF2YsNACqKrAITn6wXJw="; 16 + hash = "sha256-jfh82Ti8iVqsh7G9BnHbc3cQP8D9dGV71YJ28SBjjgA="; 17 17 }; 18 18 19 19 buildInputs = [ ncurses perl ];
+2 -2
pkgs/applications/file-managers/browsr/default.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "browsr"; 9 - version = "1.16.0"; 9 + version = "1.17.1"; 10 10 format = "pyproject"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "juftin"; 14 14 repo = "browsr"; 15 15 rev = "v${version}"; 16 - hash = "sha256-Tb/7ek5aKFxv8g4jAmj9nQ909LiHqrAXJoeC9o6fwFM="; 16 + hash = "sha256-FExDKugFP94C3zMnR1V4QDPWeM2OtRH2ei0LNs3h06c="; 17 17 }; 18 18 19 19 nativeBuildInputs = with python3.pkgs; [
+2 -2
pkgs/applications/graphics/batik/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "batik"; 5 - version = "1.16"; 5 + version = "1.17"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://apache/xmlgraphics/batik/binaries/batik-bin-${version}.tar.gz"; 9 - sha256 = "sha256-Y4bJ6X46sKx1+fmNkOS2RU7gn7n0fKDnkOYMq0S8fYM="; 9 + sha256 = "sha256-sEJphF3grlwZCEt3gHHm4JF8RpvKKBLLvKXf2lu/dhA="; 10 10 }; 11 11 12 12 meta = with lib; {
+30 -12
pkgs/applications/graphics/panotools/default.nix
··· 1 - { fetchurl, lib, stdenv, libjpeg, libpng, libtiff, perl, cmake }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , cmake 5 + , libjpeg 6 + , libpng 7 + , libtiff 8 + , perl 9 + , darwin 10 + }: 2 11 3 - stdenv.mkDerivation rec { 12 + stdenv.mkDerivation (finalAttrs: { 4 13 pname = "libpano13"; 5 14 version = "2.9.22"; 6 15 7 16 src = fetchurl { 8 - url = "mirror://sourceforge/panotools/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-r/xoMM2+ccKNJzHcv43qKs2m2f/UYJxtvzugxoRAqOM="; 17 + url = "mirror://sourceforge/panotools/libpano13-${finalAttrs.version}.tar.gz"; 18 + hash = "sha256-r/xoMM2+ccKNJzHcv43qKs2m2f/UYJxtvzugxoRAqOM="; 10 19 }; 11 20 12 - buildInputs = [ perl libjpeg libpng libtiff ]; 13 - nativeBuildInputs = [ cmake ]; 21 + strictDeps = true; 14 22 15 - # one of the tests succeeds on my machine but fails on Hydra (no idea why) 16 - #doCheck = true; 23 + nativeBuildInputs = [ 24 + cmake 25 + ]; 26 + 27 + buildInputs = [ 28 + libjpeg 29 + libpng 30 + libtiff 31 + perl 32 + ] ++ lib.optionals stdenv.isDarwin [ 33 + darwin.apple_sdk.frameworks.Carbon 34 + ]; 17 35 18 36 meta = { 37 + description = "Free software suite for authoring and displaying virtual reality panoramas"; 19 38 homepage = "https://panotools.sourceforge.net/"; 20 - description = "Free software suite for authoring and displaying virtual reality panoramas"; 21 39 license = lib.licenses.gpl2Plus; 22 - 23 - platforms = lib.platforms.gnu ++ lib.platforms.linux; # arbitrary choice 40 + maintainers = [ lib.maintainers.wegank ]; 41 + platforms = lib.platforms.unix; 24 42 }; 25 - } 43 + })
+3 -3
pkgs/applications/misc/furtherance/default.nix
··· 6 6 7 7 stdenv.mkDerivation (finalAttrs: { 8 8 pname = "furtherance"; 9 - version = "1.8.1"; 9 + version = "1.8.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "lakoliu"; 13 13 repo = "Furtherance"; 14 14 rev = "v${finalAttrs.version}"; 15 - hash = "sha256-KNC0e1Qfls+TcUDPvLaTWWF4ELBJYPE7Oo9/4PK10js="; 15 + hash = "sha256-tr7TBqfqKzMnYBMHJmrAW/HViqT4rydBBZvBqgpnfSk="; 16 16 }; 17 17 18 18 cargoDeps = rustPlatform.fetchCargoTarball { 19 19 inherit (finalAttrs) src; 20 20 name = "${finalAttrs.pname}-${finalAttrs.version}"; 21 - hash = "sha256-NHrKk7XgqeEuNAOyIDfzFJzIExTpUfv83Pdv/NPkgYQ="; 21 + hash = "sha256-MFiMoTMW83QxV3BOyZaa1XmfRNieCT007N/4vfSD67Y="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/moonlight-embedded/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "moonlight-embedded"; 9 - version = "2.6.0"; 9 + version = "2.6.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "moonlight-stream"; 13 13 repo = "moonlight-embedded"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-BZYFN6X6UNllwlovnpEwDSocA5ZfSDUOyr8JTg4z9ak="; 15 + sha256 = "sha256-/gRm3fViTpoTOkIEu6+mrGTVTAFTmwdWV0MKoFF5vkc="; 16 16 fetchSubmodules = true; 17 17 }; 18 18
+2 -2
pkgs/applications/networking/browsers/chromium/browser.nix
··· 85 85 then "https://github.com/ungoogled-software/ungoogled-chromium" 86 86 else "https://www.chromium.org/"; 87 87 maintainers = with lib.maintainers; if ungoogled 88 - then [ squalus primeos michaeladler networkexception ] 89 - else [ primeos thefloweringash networkexception ]; 88 + then [ squalus primeos michaeladler networkexception emilylange ] 89 + else [ primeos thefloweringash networkexception emilylange ]; 90 90 license = if enableWideVine then lib.licenses.unfree else lib.licenses.bsd3; 91 91 platforms = lib.platforms.linux; 92 92 mainProgram = "chromium";
+5 -5
pkgs/applications/networking/cluster/kube-router/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kube-router"; 5 - version = "1.6.0"; 5 + version = "2.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloudnativelabs"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-3hfStQ87t8zKyRqUoUViAqRcI8AQXhYSwOGqwIm6Q/w="; 11 + hash = "sha256-7laXw0tC25zPTeLJlB/rX6WVcRFCd6DCB+3EUPnE4cM="; 12 12 }; 13 13 14 - vendorHash = "sha256-kV5tUGhOm0/q5btOQu4TtDO5dVmACNNvDS7iNgm/Xio="; 14 + vendorHash = "sha256-qJA6gnb+VIkJD24iq6yyn8r4zYY19ZywcyalwfaTtbo="; 15 15 16 16 CGO_ENABLED = 0; 17 17 18 18 ldflags = [ 19 19 "-s" 20 20 "-w" 21 - "-X github.com/cloudnativelabs/kube-router/pkg/version.Version=${version}" 22 - "-X github.com/cloudnativelabs/kube-router/pkg/version.BuildDate=Nix" 21 + "-X github.com/cloudnativelabs/kube-router/v2/pkg/version.Version=${version}" 22 + "-X github.com/cloudnativelabs/kube-router/v2/pkg/version.BuildDate=Nix" 23 23 ]; 24 24 25 25 passthru.tests.version = testers.testVersion {
+2 -2
pkgs/applications/networking/cluster/odo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "odo"; 5 - version = "3.14.0"; 5 + version = "3.15.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "redhat-developer"; 9 9 repo = "odo"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-d6C+nOz60CPnEsSf74+WBTaeIXGKtysVELg0+dXM1cU="; 11 + sha256 = "sha256-UPq211Lo95r2b/Ov/a7uhb5p9M3MlNd72VwkMXPHy2Y="; 12 12 }; 13 13 14 14 vendorHash = null;
+2 -2
pkgs/applications/networking/firewalld/default.nix
··· 31 31 in 32 32 stdenv.mkDerivation rec { 33 33 pname = "firewalld"; 34 - version = "2.0.0"; 34 + version = "2.0.1"; 35 35 36 36 src = fetchFromGitHub { 37 37 owner = "firewalld"; 38 38 repo = "firewalld"; 39 39 rev = "v${version}"; 40 - sha256 = "sha256-seOokeFbjCuwUsB6MbrxaeTlPUzwNzkJPbByM9/oDDU="; 40 + sha256 = "sha256-hGMO3uqUlh5h4HYmJiFdfZZw+y1yjprlSadYvix2LIU="; 41 41 }; 42 42 43 43 patches = [
+2 -2
pkgs/applications/networking/libcoap/default.nix
··· 4 4 }: 5 5 stdenv.mkDerivation rec { 6 6 pname = "libcoap"; 7 - version = "4.3.3"; 7 + version = "4.3.4"; 8 8 src = fetchFromGitHub { 9 9 repo = "libcoap"; 10 10 owner = "obgm"; 11 11 rev = "v${version}"; 12 12 fetchSubmodules = true; 13 - sha256 = "sha256-RS37Fpo1uzwEKzCysilXiH/NYOySEYGPOk0R/+rqiag="; 13 + sha256 = "sha256-x8r5fHY8J0NYE7nPSw/bPpK/iTLKioKpQKmVw73KOtg="; 14 14 }; 15 15 nativeBuildInputs = [ 16 16 automake
+2 -2
pkgs/applications/radio/flamp/default.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "flamp"; 13 - version = "2.2.07"; 13 + version = "2.2.09"; 14 14 15 15 src = fetchgit { 16 16 url = "https://git.code.sf.net/p/fldigi/flamp"; 17 17 rev = "v${finalAttrs.version}"; 18 - hash = "sha256-BnKL1iwaw1iJC5qcGCvdMr461n0BSYxk61dbAnhpz2c="; 18 + hash = "sha256-ev+Ik/e1zQGTH4FeiCDPHbrcXlctencEo4R0+M2Kg+g="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/applications/radio/gqrx/default.nix
··· 27 27 28 28 gnuradioMinimal.pkgs.mkDerivation rec { 29 29 pname = "gqrx"; 30 - version = "2.17"; 30 + version = "2.17.2"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "gqrx-sdr"; 34 34 repo = "gqrx"; 35 35 rev = "v${version}"; 36 - hash = "sha256-QnwkiH8KqoHa2Q3knh0OAyGBySAArEtdpO+lTzqJ4j0="; 36 + hash = "sha256-dwqb/TYNkaXSLXQ0QJEQpy1es0hgNrkNnZww9RpfTt8="; 37 37 }; 38 38 39 39 nativeBuildInputs = [
+2 -2
pkgs/applications/science/astronomy/kstars/default.nix
··· 14 14 15 15 mkDerivation rec { 16 16 pname = "kstars"; 17 - version = "3.6.6"; 17 + version = "3.6.7"; 18 18 19 19 src = fetchurl { 20 20 url = "mirror://kde/stable/kstars/kstars-${version}.tar.xz"; 21 - sha256 = "sha256-Z4PatRvtIJBoeRDJJYkkBTOB/R+R7nGdDT38bfAShJQ="; 21 + sha256 = "sha256-uEgzvhlHHpXyvi3Djfwg3GmYeZq+r48m7OJFIDARpe4="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+2 -2
pkgs/applications/version-management/deepgit/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "deepgit"; 15 - version = "4.3"; 15 + version = "4.3.1"; 16 16 17 17 src = fetchurl { 18 18 url = "https://www.syntevo.com/downloads/deepgit/deepgit-linux-${lib.replaceStrings [ "." ] [ "_" ] version}.tar.gz"; 19 - hash = "sha256-bA/EySZjuSDYaZplwHcpeP1VakcnG5K1hYTk7cSVbz0="; 19 + hash = "sha256-Ovd9MjgpMJvNySW/FPXYVtpLoCSQP1W1nlcNkgI7sgA="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/applications/video/mediathekview/default.nix
··· 1 1 { lib, stdenv, fetchurl, makeWrapper, libglvnd, libnotify, jre, zip }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "13.9.1"; 4 + version = "14.0.0"; 5 5 pname = "mediathekview"; 6 6 src = fetchurl { 7 7 url = "https://download.mediathekview.de/stabil/MediathekView-${version}-linux.tar.gz"; 8 - sha256 = "4BYKkYhl1YjiAZyfNRdV5KQL+dVkL058uhTG892mXUM="; 8 + sha256 = "sha256-vr0yqKVRodtXalHEIsm5gdEp9wPU9U5nnYhMk7IiPF4="; 9 9 }; 10 10 11 11
+4
pkgs/build-support/php/build-composer-project.nix
··· 71 71 composerNoScripts = previousAttrs.composerNoScripts or true; 72 72 }; 73 73 74 + COMPOSER_CACHE_DIR="/dev/null"; 75 + COMPOSER_DISABLE_NETWORK="1"; 76 + COMPOSER_MIRROR_PATH_REPOS="1"; 77 + 74 78 meta = previousAttrs.meta or { } // { 75 79 platforms = lib.platforms.all; 76 80 };
+1 -5
pkgs/build-support/php/hooks/composer-install-hook.sh
··· 49 49 fi 50 50 51 51 echo "Validating consistency between composer.lock and ${composerRepository}/composer.lock" 52 - if [[! @diff@ composer.lock "${composerRepository}/composer.lock"]]; then 52 + if ! @cmp@ -s "composer.lock" "${composerRepository}/composer.lock"; then 53 53 echo 54 54 echo "ERROR: vendorHash is out of date" 55 55 echo ··· 88 88 89 89 # Since the composer.json file has been modified in the previous step, the 90 90 # composer.lock file needs to be updated. 91 - COMPOSER_DISABLE_NETWORK=1 \ 92 91 COMPOSER_ROOT_VERSION="${version}" \ 93 92 composer \ 94 93 --lock \ ··· 118 117 # the autoloader. 119 118 # The COMPOSER_ROOT_VERSION environment variable is needed only for 120 119 # vimeo/psalm. 121 - COMPOSER_CACHE_DIR=/dev/null \ 122 - COMPOSER_DISABLE_NETWORK=1 \ 123 120 COMPOSER_ROOT_VERSION="${version}" \ 124 - COMPOSER_MIRROR_PATH_REPOS="1" \ 125 121 composer \ 126 122 --no-ansi \ 127 123 --no-interaction \
-1
pkgs/build-support/php/hooks/composer-repository-hook.sh
··· 55 55 # Build the local composer repository 56 56 # The command 'build-local-repo' is provided by the Composer plugin 57 57 # nix-community/composer-local-repo-plugin. 58 - COMPOSER_CACHE_DIR=/dev/null \ 59 58 composer-local-repo-plugin --no-ansi build-local-repo ${composerNoDev:+--no-dev} -r repository 60 59 61 60 echo "Finished composerRepositoryBuildHook"
+2 -1
pkgs/build-support/php/hooks/default.nix
··· 1 1 { lib 2 2 , makeSetupHook 3 + , diffutils 3 4 , jq 4 5 , moreutils 5 6 , makeBinaryWrapper ··· 22 23 substitutions = { 23 24 # Specify the stdenv's `diff` by abspath to ensure that the user's build 24 25 # inputs do not cause us to find the wrong `diff`. 25 - diff = "${lib.getBin buildPackages.diffutils}/bin/diff"; 26 + cmp = "${lib.getBin buildPackages.diffutils}/bin/cmp"; 26 27 }; 27 28 } ./composer-install-hook.sh; 28 29 }
+2 -2
pkgs/by-name/bo/boogie/package.nix
··· 2 2 3 3 buildDotnetModule rec { 4 4 pname = "Boogie"; 5 - version = "3.0.4"; 5 + version = "3.0.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "boogie-org"; 9 9 repo = "boogie"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-yebThnIOpZ5crYsSZtbDj8Gn6DznTNJ4T/TsFR3gWvs="; 11 + sha256 = "sha256-KciQakwus7cKjtfp5x8nDV7bbTXlzILcL3ivCJAV6Vk="; 12 12 }; 13 13 14 14 projectFile = [ "Source/Boogie.sln" ];
+50
pkgs/by-name/oc/octorpki/package.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , fetchpatch 5 + }: 6 + 7 + buildGoModule rec { 8 + pname = "octorpki"; 9 + version = "1.5.10"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "cloudflare"; 13 + repo = "cfrpki"; 14 + rev = "v${version}"; 15 + hash = "sha256-eqIAauwFh1Zbv3Jkk8plz1OR3ZW8fs0ugNwwTnSHSFM="; 16 + }; 17 + 18 + patches = [ 19 + # https://github.com/cloudflare/cfrpki/pull/150 20 + (fetchpatch { 21 + url = "https://github.com/cloudflare/cfrpki/commit/fd0c4e95b880c463430c91ce1f86205b9309399b.patch"; 22 + hash = "sha256-cJ0mWkjtGvgTIH5eEum8h2Gy2PqR+nPto+mj5m/I/d4="; 23 + }) 24 + ]; 25 + 26 + ldflags = [ 27 + "-X main.version=v${version}" 28 + "-X main.talpath=${placeholder "out"}/share/tals" 29 + ]; 30 + 31 + subPackages = [ 32 + "cmd/octorpki" 33 + ]; 34 + 35 + postInstall = '' 36 + mkdir -p $out/share 37 + cp -R cmd/octorpki/tals $out/share/tals 38 + ''; 39 + 40 + vendorSha256 = null; 41 + 42 + meta = with lib; { 43 + homepage = "https://github.com/cloudflare/cfrpki#octorpki"; 44 + changelog = "https://github.com/cloudflare/cfrpki/releases/tag/v${version}"; 45 + description = "A software used to download RPKI (RFC 6480) certificates and validate them"; 46 + license = licenses.bsd3; 47 + platforms = platforms.all; 48 + maintainers = teams.wdz.members; 49 + }; 50 + }
+2 -2
pkgs/by-name/ra/raft-cowsql/package.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "raft-cowsql"; 14 - version = "0.17.3"; 14 + version = "0.17.7"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "cowsql"; 18 18 repo = "raft"; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-Ad09giGVsAVtm/0GRU/OaZx7BGjL5TlU8BrzFaFlE9k="; 20 + hash = "sha256-ZAUC2o0VWpC/zMOVOAxW+CAdiDTXa5JG0gfHirTjm88="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ autoreconfHook pkg-config ];
+40
pkgs/by-name/se/serial-unit-testing/package.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , udev 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "serial-unit-testing"; 10 + version = "0.2.4"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "markatk"; 14 + repo = "serial-unit-testing"; 15 + rev = "v${version}"; 16 + hash = "sha256-SLwTwEQdwbus9RFskFjU8m4fS9Pnp8HsgnKkBvTqmSI="; 17 + }; 18 + 19 + cargoHash = "sha256-PoV2v0p0L3CTtC9VMAx2Z/ZsSAIFi2gh2TtOp64S6ZQ="; 20 + 21 + nativeBuildInputs = [ 22 + pkg-config 23 + ]; 24 + 25 + buildInputs = [ 26 + udev 27 + ]; 28 + 29 + # tests require a serial port 30 + doCheck = false; 31 + 32 + meta = with lib; { 33 + description = "Automate testing of serial communication with any serial port device"; 34 + homepage = "https://github.com/markatk/serial-unit-testing"; 35 + changelog = "https://github.com/markatk/serial-unit-testing/blob/v${version}/CHANGELOG.md"; 36 + license = licenses.mit; 37 + maintainers = with maintainers; [ rudolfvesely ]; 38 + mainProgram = "sut"; 39 + }; 40 + }
+39
pkgs/by-name/sw/swipe-guess/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromSourcehut 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "swipe-guess"; 8 + version = "0.2.1"; 9 + 10 + src = fetchFromSourcehut { 11 + owner = "~earboxer"; 12 + repo = "swipeGuess"; 13 + rev = "v${version}"; 14 + hash = "sha256-8bPsnqjLeeZ7btTre9j1T93VWY9+FdBdJdxyvBVt34s="; 15 + }; 16 + 17 + dontConfigure = true; 18 + 19 + buildPhase = '' 20 + runHook preBuild 21 + 22 + ${lib.getExe stdenv.cc} swipeGuess.c -o swipeGuess 23 + 24 + runHook postBuild 25 + ''; 26 + 27 + postInstall = '' 28 + install -Dm555 swipeGuess -t $out/bin 29 + ''; 30 + 31 + meta = { 32 + description = "Completion plugin for touchscreen-keyboards on mobile devices"; 33 + homepage = "https://git.sr.ht/~earboxer/swipeGuess/"; 34 + license = lib.licenses.agpl3Only; 35 + mainProgram = "swipeGuess"; 36 + maintainers = with lib.maintainers; [ eclairevoyant ]; 37 + platforms = lib.platforms.all; 38 + }; 39 + }
-15
pkgs/desktops/arcan/arcan/000-openal.patch
··· 1 - diff -Naur source-old/src/CMakeLists.txt source-new/src/CMakeLists.txt 2 - --- source-old/src/CMakeLists.txt 1969-12-31 21:00:01.000000000 -0300 3 - +++ source-new/src/CMakeLists.txt 2021-10-29 12:03:06.461399341 -0300 4 - @@ -362,10 +360,8 @@ 5 - if (EXISTS ${EXTERNAL_SRC_DIR}/git/openal AND STATIC_OPENAL) 6 - amsg("${CL_YEL}Building OpenAL static from external/git mirror${CL_RST}") 7 - ExternalProject_Add(OpenAL 8 - - SOURCE_DIR ${CMAKE_CURRENT_BINARY_DIR}/openal 9 - + SOURCE_DIR "${EXTERNAL_SRC_DIR}/git/openal" 10 - BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/openal_static 11 - - UPDATE_COMMAND "" 12 - - GIT_REPOSITORY "${EXTERNAL_SRC_DIR}/git/openal" 13 - ${EXTERNAL_DEFS} 14 - ${CMAKE_EXTERNAL_DEFS} 15 - -DALSOFT_BACKEND_DSOUND=OFF
-17
pkgs/desktops/arcan/arcan/001-luajit.patch
··· 1 - diff -Naur source-old/src/CMakeLists.txt source-new/src/CMakeLists.txt 2 - --- source-old/src/CMakeLists.txt 1969-12-31 21:00:01.000000000 -0300 3 - +++ source-new/src/CMakeLists.txt 2021-10-29 12:03:06.461399341 -0300 4 - @@ -419,12 +415,7 @@ 5 - set(LUA_TAG "luajit51") 6 - if (EXISTS ${EXTERNAL_SRC_DIR}/git/luajit) 7 - ExternalProject_Add(luajit 8 - - SOURCE_DIR ${CMAKE_CURRENT_BINARY_DIR}/luajit 9 - - GIT_REPOSITORY "${EXTERNAL_SRC_DIR}/git/luajit" 10 - - CONFIGURE_COMMAND "" 11 - - GIT_TAG "v2.1.0-beta3" 12 - - UPDATE_COMMAND "" 13 - - INSTALL_COMMAND "" 14 - + SOURCE_DIR "${EXTERNAL_SRC_DIR}/git/luajit" 15 - BUILD_IN_SOURCE 1 16 - BUILD_COMMAND "${EXTMAKE_CMD}" 17 - DEFAULT_CC=${CMAKE_C_COMPILER}
-15
pkgs/desktops/arcan/arcan/002-libuvc.patch
··· 1 - diff -Naur source-old/src/frameserver/decode/default/CMakeLists.txt source-new/src/frameserver/decode/default/CMakeLists.txt 2 - --- source-old/src/frameserver/decode/default/CMakeLists.txt 1969-12-31 21:00:01.000000000 -0300 3 - +++ source-new/src/frameserver/decode/default/CMakeLists.txt 2021-10-29 12:01:31.989933725 -0300 4 - @@ -62,10 +62,8 @@ 5 - if (STATIC_LIBUVC) 6 - pkg_check_modules(LIBUSB_1 REQUIRED libusb-1.0) 7 - ExternalProject_Add(libuvc 8 - - SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/frameserver/decode/libuvc" 9 - + SOURCE_DIR "${EXTERNAL_SRC_DIR}/git/libuvc" 10 - BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/libuvc_static" 11 - - UPDATE_COMMAND "" 12 - - GIT_REPOSITORY "${EXTERNAL_SRC_DIR}/git/libuvc" 13 - ${EXTERNAL_DEFS} 14 - ${CMAKE_EXTERNAL_DEFS} 15 - -DBUILD_UVC_STATIC=ON
-25
pkgs/desktops/arcan/arcan/clone-sources.nix
··· 1 - { fetchgit, fetchFromGitHub }: 2 - { 3 - letoram-openal-src = fetchFromGitHub { 4 - owner = "letoram"; 5 - repo = "openal"; 6 - rev = "81e1b364339b6aa2b183f39fc16c55eb5857e97a"; 7 - sha256 = "sha256-X3C3TDZPiOhdZdpApC4h4KeBiWFMxkFsmE3gQ1Rz420="; 8 - }; 9 - freetype-src = fetchgit { 10 - url = "git://git.sv.nongnu.org/freetype/freetype2.git"; 11 - rev = "275b116b40c9d183d42242099ea9ff276985855b"; 12 - sha256 = "sha256-YVyJttaXt19MSuD0pmazwxNKz65jcqqWvIgmDj4d3MA="; 13 - }; 14 - libuvc-src = fetchFromGitHub { 15 - owner = "libuvc"; 16 - repo = "libuvc"; 17 - rev = "a4de53e7e265f8c6a64df7ccd289f318104e1916"; 18 - hash = "sha256-a+Q0PTV4ujGnX55u49VJfMgQljZunZYRvkR0tIkGnHI="; 19 - }; 20 - luajit-src = fetchgit { 21 - url = "https://luajit.org/git/luajit-2.0.git"; 22 - rev = "899093a9e0fa5b16f27016381ef4b15529dadff2"; 23 - sha256 = "sha256-bCi1ms78HCOOgStIY2tSGM9LUEX3qnwadLLeYWWu1KI="; 24 - }; 25 - }
+74 -62
pkgs/desktops/arcan/arcan/default.nix
··· 32 32 , makeWrapper 33 33 , mesa 34 34 , mupdf 35 + , ninja 35 36 , openal 36 37 , openjpeg 37 - , pcre 38 + , pcre2 38 39 , pkg-config 40 + , ruby 39 41 , sqlite 40 42 , tesseract 41 43 , valgrind ··· 44 46 , xcbutil 45 47 , xcbutilwm 46 48 , xz 47 - , buildManPages ? true, ruby 49 + , buildManPages ? true 48 50 , useBuiltinLua ? true 49 - , useStaticFreetype ? false 50 - , useStaticLibuvc ? false 51 + , useEspeak ? !stdenv.isDarwin 52 + , useStaticLibuvc ? true 51 53 , useStaticOpenAL ? true 52 - , useStaticSqlite ? false 54 + , useStaticSqlite ? true 55 + , useTracy ? true 53 56 }: 54 57 55 58 let 56 - cmakeFeatureFlag = feature: flag: 57 - "-D${feature}=${if flag then "on" else "off"}"; 59 + allSources = { 60 + letoram-arcan-src = fetchFromGitHub { 61 + owner = "letoram"; 62 + repo = "arcan"; 63 + rev = "85c8564bdbee8468a5716bea64daf1d78937ffbf"; 64 + hash = "sha256-etmj1vpZTjxbmr4UiLBEK57WFJ1NeEnY5WfBYajX3ls="; 65 + }; 66 + letoram-openal-src = fetchFromGitHub { 67 + owner = "letoram"; 68 + repo = "openal"; 69 + rev = "81e1b364339b6aa2b183f39fc16c55eb5857e97a"; 70 + hash = "sha256-X3C3TDZPiOhdZdpApC4h4KeBiWFMxkFsmE3gQ1Rz420="; 71 + }; 72 + libuvc-src = fetchFromGitHub { 73 + owner = "libuvc"; 74 + repo = "libuvc"; 75 + rev = "68d07a00e11d1944e27b7295ee69673239c00b4b"; 76 + hash = "sha256-IdV18mnPTDBODpS1BXl4ulkFyf1PU2ZmuVGNOIdQwzE="; 77 + }; 78 + luajit-src = fetchFromGitHub { 79 + owner = "LuaJIT"; 80 + repo = "LuaJIT"; 81 + rev = "656ecbcf8f669feb94e0d0ec4b4f59190bcd2e48"; 82 + hash = "sha256-/gGQzHgYuWGqGjgpEl18Rbh3Sx2VP+zLlx4N9/hbYLc="; 83 + }; 84 + tracy-src = fetchFromGitHub { 85 + owner = "wolfpld"; 86 + repo = "tracy"; 87 + rev = "93537dff336e0796b01262e8271e4d63bf39f195"; 88 + hash = "sha256-FNB2zTbwk8hMNmhofz9GMts7dvH9phBRVIdgVjRcyQM="; 89 + }; 90 + }; 58 91 in 59 92 stdenv.mkDerivation (finalAttrs: { 60 - pname = "arcan" + lib.optionalString useStaticOpenAL "-static-openal"; 61 - version = "0.6.2.1"; 93 + pname = "arcan"; 94 + version = "0.6.2.1-unstable-2023-10-14"; 62 95 63 - src = fetchFromGitHub { 64 - owner = "letoram"; 65 - repo = "arcan"; 66 - rev = finalAttrs.version; 67 - hash = "sha256-7H3fVSsW5VANLqwhykY+Q53fPjz65utaGksh/OpZnJM="; 68 - }; 96 + src = allSources.letoram-arcan-src; 69 97 70 98 nativeBuildInputs = [ 71 99 cmake ··· 77 105 78 106 buildInputs = [ 79 107 SDL2 80 - espeak 81 108 ffmpeg 82 109 file 83 110 freetype ··· 100 127 libvncserver 101 128 libxcb 102 129 libxkbcommon 103 - lua5_1 104 - luajit 105 130 mesa 106 131 mupdf.dev 107 132 openal 108 133 openjpeg.dev 109 - pcre 134 + pcre2 110 135 sqlite 111 136 tesseract 112 137 valgrind ··· 115 140 xcbutil 116 141 xcbutilwm 117 142 xz 118 - ]; 119 - 120 - patches = [ 121 - # Nixpkgs-specific: redirect vendoring 122 - ./000-openal.patch 123 - ./001-luajit.patch 124 - ./002-libuvc.patch 143 + ] 144 + ++ lib.optionals useEspeak [ 145 + espeak 125 146 ]; 126 147 127 148 # Emulate external/git/clone.sh 128 149 postUnpack = let 129 - inherit (import ./clone-sources.nix { inherit fetchFromGitHub fetchgit; }) 130 - letoram-openal-src freetype-src libuvc-src luajit-src; 150 + inherit (allSources) 151 + letoram-openal-src libuvc-src luajit-src tracy-src; 152 + prepareSource = flag: source: destination: 153 + lib.optionalString flag '' 154 + cp -va ${source}/ ${destination} 155 + chmod --recursive 744 ${destination} 156 + ''; 131 157 in 132 158 '' 133 159 pushd $sourceRoot/external/git/ 134 160 '' 135 - + (lib.optionalString useStaticOpenAL '' 136 - cp -a ${letoram-openal-src}/ openal 137 - chmod --recursive 744 openal 138 - '') 139 - + (lib.optionalString useStaticFreetype '' 140 - cp -a ${freetype-src}/ freetype 141 - chmod --recursive 744 freetype 142 - '') 143 - + (lib.optionalString useStaticLibuvc '' 144 - cp -a ${libuvc-src}/ libuvc 145 - chmod --recursive 744 libuvc 146 - '') 147 - + (lib.optionalString useBuiltinLua '' 148 - cp -a ${luajit-src}/ luajit 149 - chmod --recursive 744 luajit 150 - '') + 151 - '' 161 + + prepareSource useStaticOpenAL letoram-openal-src "openal" 162 + + prepareSource useStaticLibuvc libuvc-src "libuvc" 163 + + prepareSource useBuiltinLua luajit-src "luajit" 164 + + prepareSource useTracy tracy-src "tracy" 165 + + '' 152 166 popd 153 167 ''; 154 168 ··· 156 170 substituteInPlace ./src/platform/posix/paths.c \ 157 171 --replace "/usr/bin" "$out/bin" \ 158 172 --replace "/usr/share" "$out/share" 159 - 160 - substituteInPlace ./src/CMakeLists.txt --replace "SETUID" "# SETUID" 173 + substituteInPlace ./src/CMakeLists.txt \ 174 + --replace "SETUID" "# SETUID" 161 175 ''; 162 176 163 - # INFO: Arcan build scripts require the manpages to be generated before the 177 + # INFO: Arcan build scripts require the manpages to be generated *before* the 164 178 # `configure` phase 165 179 preConfigure = lib.optionalString buildManPages '' 166 180 pushd doc ··· 169 183 ''; 170 184 171 185 cmakeFlags = [ 172 - "-DBUILD_PRESET=everything" 173 186 # The upstream project recommends tagging the distribution 174 - "-DDISTR_TAG=Nixpkgs" 175 - "-DENGINE_BUILDTAG=${finalAttrs.version}" 176 - (cmakeFeatureFlag "HYBRID_SDL" true) 177 - (cmakeFeatureFlag "BUILTIN_LUA" useBuiltinLua) 178 - (cmakeFeatureFlag "DISABLE_JIT" useBuiltinLua) 179 - (cmakeFeatureFlag "STATIC_FREETYPE" useStaticFreetype) 180 - (cmakeFeatureFlag "STATIC_LIBUVC" useStaticLibuvc) 181 - (cmakeFeatureFlag "STATIC_OPENAL" useStaticOpenAL) 182 - (cmakeFeatureFlag "STATIC_SQLite3" useStaticSqlite) 187 + (lib.cmakeFeature "DISTR_TAG" "Nixpkgs") 188 + (lib.cmakeFeature "ENGINE_BUILDTAG" finalAttrs.src.rev) 189 + (lib.cmakeFeature "BUILD_PRESET" "everything") 190 + (lib.cmakeBool "BUILTIN_LUA" useBuiltinLua) 191 + (lib.cmakeBool "DISABLE_JIT" useBuiltinLua) 192 + (lib.cmakeBool "STATIC_LIBUVC" useStaticLibuvc) 193 + (lib.cmakeBool "STATIC_SQLite3" useStaticSqlite) 194 + (lib.cmakeBool "ENABLE_TRACY" useTracy) 183 195 "../src" 184 196 ]; 185 197 ··· 187 199 "format" 188 200 ]; 189 201 190 - meta = with lib; { 202 + meta = { 191 203 homepage = "https://arcan-fe.com/"; 192 204 description = "Combined Display Server, Multimedia Framework, Game Engine"; 193 205 longDescription = '' ··· 196 208 e.g. game development, real-time streaming video, monitoring and 197 209 surveillance, up to and including desktop compositors and window managers. 198 210 ''; 199 - license = with licenses; [ bsd3 gpl2Plus lgpl2Plus ]; 200 - maintainers = with maintainers; [ AndersonTorres ]; 201 - platforms = platforms.unix; 211 + license = with lib.licenses; [ bsd3 gpl2Plus lgpl2Plus ]; 212 + maintainers = with lib.maintainers; [ AndersonTorres ]; 213 + platforms = lib.platforms.unix; 202 214 }; 203 215 })
+3 -3
pkgs/desktops/arcan/cat9/default.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 7 pname = "cat9"; 8 - version = "unstable-2023-02-11"; 8 + version = "unstable-2023-06-25"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "letoram"; 12 12 repo = "cat9"; 13 - rev = "1da9949c728e0734a883d258a8a05ca0e3dd5897"; 14 - hash = "sha256-kit+H9u941oK2Ko8S/1w+3DN6ktnfBtd+3s9XgU+qOQ="; 13 + rev = "4d8a0c539a5c756acada96fd80e7eb3b9554ac05"; 14 + hash = "sha256-T3RPuldKTzHm0EdfdMOtHv9kcr9oE9YQgdzv/jjPPnc="; 15 15 }; 16 16 17 17 dontConfigure = true;
+3 -3
pkgs/desktops/arcan/durden/default.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 7 pname = "durden"; 8 - version = "unstable-2023-01-19"; 8 + version = "unstable-2023-08-11"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "letoram"; 12 12 repo = "durden"; 13 - rev = "bba1bcc8992ea5826fd3b1c798cb271141b7c8e2"; 14 - hash = "sha256-PK9ObMJ3SbHZLnLjxk4smh5N0WaM/2H/Y+T5vKBdHWA="; 13 + rev = "728d7fc3292cc162b1cea505c8a71512b2e84925"; 14 + hash = "sha256-UL36JeppnoFDdzdsJMsWKJL58ioz9eOaNEZp/7DGV9w="; 15 15 }; 16 16 17 17 dontConfigure = true;
+3 -3
pkgs/desktops/arcan/pipeworld/default.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation (finalPackages: { 7 7 pname = "pipeworld"; 8 - version = "unstable-2023-02-05"; 8 + version = "unstable-2023-03-02"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "letoram"; 12 12 repo = "pipeworld"; 13 - rev = "58b2e9fe15ef0baa4b04c27079bfa386ec62b28e"; 14 - hash = "sha256-PbKejghMkLZdeQJD9fObw9xhGH24IX72X7pyjapTXJM="; 13 + rev = "9ea79f72ad500fe78b9f46e680be87eaac3bfb0e"; 14 + hash = "sha256-/cjse6XXrdLoUB35GLgl871qINOm4SvKPTbfoBceLu0="; 15 15 }; 16 16 17 17 dontConfigure = true;
+2 -2
pkgs/development/compilers/ballerina/default.nix
··· 1 1 { ballerina, lib, writeText, runCommand, makeWrapper, fetchzip, stdenv, openjdk }: 2 2 let 3 - version = "2201.6.0"; 3 + version = "2201.8.1"; 4 4 codeName = "swan-lake"; 5 5 in stdenv.mkDerivation { 6 6 pname = "ballerina"; ··· 8 8 9 9 src = fetchzip { 10 10 url = "https://dist.ballerina.io/downloads/${version}/ballerina-${version}-${codeName}.zip"; 11 - sha256 = "sha256-yttRswqNq8Tam1OwnC9klwrryDDqdHMzzRs9T9pYlnU="; 11 + hash = "sha256-tfsaZnZOsKVm56s3nNI/27wrbVg5fcJ8tW2THSQ8ec0="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/development/compilers/erg/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "erg"; 12 - version = "0.6.22"; 12 + version = "0.6.23"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "erg-lang"; 16 16 repo = "erg"; 17 17 rev = "v${version}"; 18 - hash = "sha256-dUGwSNN6eAMXIaIn3/xQxZAcyH1tTOrj4oRMkkI1KXU="; 18 + hash = "sha256-7UzITXvEpzMdKj9YIsuz6uYBLtk//OmTlnUegTLu+HA="; 19 19 }; 20 20 21 - cargoHash = "sha256-TLEFy4r+CA8XcPYw5cX7qCIRrj/8q9Z1YOnkAKpjwug="; 21 + cargoHash = "sha256-A2HjobYgM22CIWYJusJUfPObNHlhN7y1lsv2mVzvluk="; 22 22 23 23 nativeBuildInputs = [ 24 24 makeWrapper
+7 -7
pkgs/development/compilers/vlang/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, glfw, freetype, openssl, makeWrapper, upx, boehmgc, xorg, binaryen, darwin }: 2 2 3 3 let 4 - version = "weekly.2023.19"; 4 + version = "weekly.2023.42"; 5 5 ptraceSubstitution = '' 6 6 #include <sys/types.h> 7 7 #include <sys/ptrace.h> ··· 9 9 # Required for bootstrap. 10 10 vc = stdenv.mkDerivation { 11 11 pname = "v.c"; 12 - version = "unstable-2023-05-14"; 12 + version = "unstable-2023-10-17"; 13 13 src = fetchFromGitHub { 14 14 owner = "vlang"; 15 15 repo = "vc"; 16 - rev = "f7c2b5f2a0738d0d236161c9de9f31dd0280ac86"; 17 - sha256 = "sha256-xU3TvyNgc0o4RCsHtoC6cZTNaue2yuAiolEOvP37TKA="; 16 + rev = "bbfdece2ef5cab8a52b03c4df1ca0f803639069b"; 17 + hash = "sha256-UdifiUDTivqJ94NJB25mF/xXeiEAE55QaIUwWwdAllQ="; 18 18 }; 19 19 20 20 # patch the ptrace reference for darwin ··· 30 30 markdown = fetchFromGitHub { 31 31 owner = "vlang"; 32 32 repo = "markdown"; 33 - rev = "6e970bd0a7459ad7798588f1ace4aa46c5e789a2"; 34 - hash = "sha256-hFf7c8ZNMU1j7fgmDakuO7tBVr12Wq0dgQddJnkMajE="; 33 + rev = "3a173bee57a48dcfc1c0177555e45116befac48e"; 34 + hash = "sha256-TWiCUMzAzHidtzXEYtUQ7uuksW+EIjE/fZ+s2Mr+uWI="; 35 35 }; 36 36 boehmgcStatic = boehmgc.override { 37 37 enableStatic = true; ··· 45 45 owner = "vlang"; 46 46 repo = "v"; 47 47 rev = version; 48 - sha256 = "sha256-fHn1z2q3LmSycCOa1ii4DoHvbEW4uJt3Psq3/VuZNVQ="; 48 + hash = "sha256-sQ3M6tMufL560lvtWoa5f5MpOT4D8K5uq4kDPHNmUog="; 49 49 }; 50 50 51 51 propagatedBuildInputs = [ glfw freetype openssl ]
+54
pkgs/development/libraries/applet-window-appmenu/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , extra-cmake-modules 6 + , kcoreaddons 7 + , kdeclarative 8 + , kdecoration 9 + , plasma-framework 10 + , plasma-workspace 11 + , libSM 12 + , qtx11extras 13 + , kwindowsystem 14 + , libdbusmenu 15 + , wrapQtAppsHook 16 + }: 17 + 18 + stdenv.mkDerivation { 19 + pname = "applet-window-appmenu"; 20 + version = "unstable-2022-06-27"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "psifidotos"; 24 + repo = "applet-window-appmenu"; 25 + rev = "1de99c93b0004b80898081a1acfd1e0be807326a"; 26 + hash = "sha256-PLlZ2qgdge8o1mZOiPOXSmTQv1r34IUmWTmYFGEzNTI="; 27 + }; 28 + 29 + nativeBuildInputs = [ 30 + cmake 31 + extra-cmake-modules 32 + wrapQtAppsHook 33 + ]; 34 + 35 + buildInputs = [ 36 + kcoreaddons 37 + kdeclarative 38 + kdecoration 39 + kwindowsystem 40 + plasma-framework 41 + plasma-workspace 42 + libSM 43 + qtx11extras 44 + libdbusmenu 45 + ]; 46 + 47 + meta = with lib; { 48 + description = "Plasma 5 applet in order to show window menu in your panels"; 49 + homepage = "https://github.com/psifidotos/applet-window-appmenu"; 50 + license = licenses.gpl2Plus; 51 + maintainers = with maintainers; [ greydot ]; 52 + platforms = platforms.linux; 53 + }; 54 + }
+5 -3
pkgs/development/libraries/caf/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "actor-framework"; 5 - version = "0.19.0"; 5 + version = "0.19.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "actor-framework"; 9 9 repo = "actor-framework"; 10 10 rev = version; 11 - hash = "sha256-pGX8BjDupJb7rmaxig0XX9RCKiIw2GjM4TVmcB5HJ+I="; 11 + hash = "sha256-Qi3nyUSwrYBy8lCP+R6/u/WtnZJcgSwb07pZVScAzcU="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ]; ··· 19 19 "-DCAF_ENABLE_EXAMPLES:BOOL=OFF" 20 20 ]; 21 21 22 - doCheck = true; 22 + env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-faligned-allocation"; 23 + 24 + doCheck = !stdenv.isDarwin; 23 25 checkTarget = "test"; 24 26 25 27 meta = with lib; {
+2 -2
pkgs/development/libraries/freetds/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "freetds"; 11 - version = "1.3.20"; 11 + version = "1.4.2"; 12 12 13 13 src = fetchurl { 14 14 url = "https://www.freetds.org/files/stable/${pname}-${version}.tar.bz2"; 15 - sha256 = "sha256-IK4R87gG5PvA+gtZMftHO7V0i+6dSH9qoSiFCDV4pe0="; 15 + hash = "sha256-is0TOZicZHCYA+In0ggretJkvmauvU26LGmnaKy4ZxM="; 16 16 }; 17 17 18 18 buildInputs = [
+2 -2
pkgs/development/libraries/gusb/default.nix
··· 23 23 in 24 24 stdenv.mkDerivation rec { 25 25 pname = "gusb"; 26 - version = "0.4.6"; 26 + version = "0.4.7"; 27 27 28 28 outputs = [ "bin" "out" "dev" "devdoc" ]; 29 29 ··· 31 31 owner = "hughsie"; 32 32 repo = "libgusb"; 33 33 rev = "refs/tags/${version}"; 34 - hash = "sha256-CtB9+5dDs+l05NyIFkKJpS1x3zHSykhLW3HiIM0RUWY="; 34 + hash = "sha256-E0H3MqNxYXP40wKMcI1cwLKWGVOnPNazbH6K3TbzpCQ="; 35 35 }; 36 36 37 37 patches = [
+2 -2
pkgs/development/libraries/java/lombok/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "lombok"; 5 - version = "1.18.28"; 5 + version = "1.18.30"; 6 6 7 7 src = fetchurl { 8 8 url = "https://projectlombok.org/downloads/lombok-${version}.jar"; 9 - sha256 = "sha256-t3TcT8pUMiXYtejBY360E8Q2Oy5hPpUiJ3b3kqjOwOA="; 9 + sha256 = "sha256-1+4SLu4erutFGCqJ/zb8LdCGhY0bL1S2Fcb+97odYBI="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/development/libraries/kde-frameworks/sonnet.nix
··· 1 1 { mkDerivation 2 2 , extra-cmake-modules 3 - , aspell, qtbase, qttools 3 + , aspell, hunspell, qtbase, qttools 4 4 }: 5 5 6 6 mkDerivation { 7 7 pname = "sonnet"; 8 8 nativeBuildInputs = [ extra-cmake-modules ]; 9 - buildInputs = [ aspell qttools ]; 9 + buildInputs = [ aspell hunspell qttools ]; 10 10 propagatedBuildInputs = [ qtbase ]; 11 11 }
+2 -2
pkgs/development/libraries/libdatovka/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "libdatovka"; 18 - version = "0.3.0"; 18 + version = "0.4.0"; 19 19 20 20 src = fetchurl { 21 21 url = "https://gitlab.nic.cz/datovka/libdatovka/-/archive/v${version}/libdatovka-v${version}.tar.gz"; 22 - sha256 = "sha256-aG7U8jP3pvOeFDetYVOx+cE78ys0uSkKNjSgB09ste8="; 22 + sha256 = "sha256-EqCS77MpjfR0Td07WKB7jWRBxAoKRtbAgyyThFOJXL8="; 23 23 }; 24 24 25 25 patches = [
+2 -2
pkgs/development/libraries/libnet/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libnet"; 5 - version = "1.2"; 5 + version = "1.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sam-github"; 9 9 repo = "libnet"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Y/wd9c4whUbfpvWvKzJV6vJN3AlA14XBejchRG6wBc4="; 11 + hash = "sha256-P3LaDMMNPyEnA8nO1Bm7H0mW/hVBr0cFdg+p2JmWcGI="; 12 12 }; 13 13 14 14 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/libsv/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libsv"; 5 - version = "1.1"; 5 + version = "1.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "uael"; 9 9 repo = "sv"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-icvGQi6FNSZXNGs2oLiUKu6rrVsWcXh1r91kycGjnwY="; 11 + sha256 = "sha256-sc7WTRY8XTm5+J+zlS7tGa2f+2d7apj+XHyBafZXXeE="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/oneDNN/default.nix
··· 9 9 # https://github.com/oneapi-src/oneDNN#oneapi-deep-neural-network-library-onednn 10 10 stdenv.mkDerivation (finalAttrs: { 11 11 pname = "oneDNN"; 12 - version = "3.2.1"; 12 + version = "3.3"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "oneapi-src"; 16 16 repo = "oneDNN"; 17 17 rev = "v${finalAttrs.version}"; 18 - hash = "sha256-/LbT2nHPpZHjY3xbJ9bDabR7aIMvetNP4mB+rxuTfy8="; 18 + hash = "sha256-dC4Z1OvqIF8YhuSeVo+E0CohdXYIfkeTEw3/QuYA/90="; 19 19 }; 20 20 21 21 outputs = [ "out" "dev" "doc" ];
+2 -2
pkgs/development/libraries/raft-canonical/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "raft-canonical"; 5 - version = "0.17.1"; 5 + version = "0.18.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "canonical"; 9 9 repo = "raft"; 10 10 rev = "refs/tags/v${version}"; 11 - hash = "sha256-P6IYl6xcsqXw1ilt6HYw757FL2syy1XePBVGbPAlz6Q="; 11 + hash = "sha256-C3LfrdXNs5AG9B2n2c39fTjv2gri910EYxApGWwtH90="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook file pkg-config ];
+2 -2
pkgs/development/php-packages/opentelemetry/default.nix
··· 1 1 { lib, buildPecl, fetchFromGitHub }: 2 2 3 3 let 4 - version = "1.0.0beta7"; 4 + version = "1.0.0RC2"; 5 5 in buildPecl { 6 6 inherit version; 7 7 pname = "opentelemetry"; ··· 10 10 owner = "open-telemetry"; 11 11 repo = "opentelemetry-php-instrumentation"; 12 12 rev = version; 13 - hash = "sha256-FDCgRN+aV9c6ceKszrHDBmi14dEhrirlU8cbYrmIGdY="; 13 + hash = "sha256-sCsJ4ZmQXTTG+ZxDzw3b6Su/8QUAVZv7vV6SuLBET+0="; 14 14 }; 15 15 16 16 sourceRoot = "source/ext";
+5 -1
pkgs/development/python-modules/asyncwhois/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , pytest-asyncio 4 5 , pytest-mock 5 6 , pytestCheckHook 6 7 , python-socks ··· 18 19 19 20 src = fetchFromGitHub { 20 21 owner = "pogzyb"; 21 - repo = pname; 22 + repo = "asyncwhois"; 22 23 rev = "refs/tags/v${version}"; 23 24 hash = "sha256-fYXxoS4bGTat5QT98ETmWk/VKXJmg9mtkUu02SZT4Eo="; 24 25 }; ··· 30 31 ]; 31 32 32 33 nativeCheckInputs = [ 34 + pytest-asyncio 33 35 pytest-mock 34 36 pytestCheckHook 35 37 ]; ··· 52 54 "test_whois_query_run" 53 55 "test_whois_query_create_connection" 54 56 "test_whois_query_send_and_recv" 57 + "test_input_parameters_for_domain_query" 58 + "test__get_top_level_domain" 55 59 ]; 56 60 57 61 pythonImportsCheck = [
+2 -2
pkgs/development/python-modules/aws-lambda-builders/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "aws-lambda-builders"; 15 - version = "1.37.0"; 15 + version = "1.40.0"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "awslabs"; 22 22 repo = "aws-lambda-builders"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-ukHDrxx+Jxlp/Ypg1ltz7WN07X16spNdC7YygJhTBJo="; 24 + hash = "sha256-4LapTxeJtzuXdWRgDmsQ8/yDeYZfMz+kJwpZKF7stmc="; 25 25 }; 26 26 27 27 postPatch = ''
+2 -2
pkgs/development/python-modules/awscrt/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "awscrt"; 15 - version = "0.19.2"; 15 + version = "0.19.3"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-7qIPIZW2OiNTV/obZmqInQtfw9GIgQe1Gh3GuAlwHLI="; 22 + hash = "sha256-UMIzuGZBff/7szG3CuO3oHZOfY4WcYqW9mUAGFBWLvA="; 23 23 }; 24 24 25 25 buildInputs = lib.optionals stdenv.isDarwin [
+2 -2
pkgs/development/python-modules/bellows/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "bellows"; 18 - version = "0.36.5"; 18 + version = "0.36.6"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.8"; ··· 24 24 owner = "zigpy"; 25 25 repo = "bellows"; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-f4AgYpqb4s5F46nGi0FjLQ9YRHetLfaA/jLydiewxOM="; 27 + hash = "sha256-ThLUWcGMTHg/ASKiL19iLe+9hq7KybWm+38PdoDhWvk="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/boto3-stubs/default.nix
··· 363 363 364 364 buildPythonPackage rec { 365 365 pname = "boto3-stubs"; 366 - version = "1.28.63"; 366 + version = "1.28.64"; 367 367 format = "setuptools"; 368 368 369 369 src = fetchPypi { 370 370 inherit pname version; 371 - hash = "sha256-7PT7K1txvlLPyXDuBZ/hdDntGQTQOVUI9VRcOA1NlR0="; 371 + hash = "sha256-zky/LBr6GhTFw8xWp094wMGISAzalgom+Zi5P/FjzgY="; 372 372 }; 373 373 374 374 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/botocore-stubs/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "botocore-stubs"; 12 - version = "1.31.63"; 12 + version = "1.31.64"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 17 17 src = fetchPypi { 18 18 pname = "botocore_stubs"; 19 19 inherit version; 20 - hash = "sha256-hzcVpcIdD0WTYoOTx45Hz5TlOkPkCGOp718WX83PkA8="; 20 + hash = "sha256-K1sbzvl1nNMgIyJ1PLrNk2s2rtAwFuUjh98y4aojMwo="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+23 -4
pkgs/development/python-modules/certauth/default.nix
··· 4 4 , pyopenssl 5 5 , tldextract 6 6 , pytestCheckHook 7 - , pytest-cov 7 + , pythonOlder 8 8 }: 9 9 10 10 buildPythonPackage rec { 11 11 pname = "certauth"; 12 12 version = "1.3.0"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 13 16 14 17 src = fetchFromGitHub { 15 18 owner = "ikreymer"; 16 19 repo = "certauth"; 17 - rev = "ad2bae5d40a9e45519fc1f2cd7678174bbc55b3d"; # Repo has no git tags 20 + # Repo has no git tags, https://github.com/ikreymer/certauth/issues/15 21 + rev = "ad2bae5d40a9e45519fc1f2cd7678174bbc55b3d"; 18 22 hash = "sha256-Rso5N0jb9k7bdorjPIUMNiZZPnzwbkxFNiTpsJ9pco0="; 19 23 }; 20 24 25 + postPatch = '' 26 + substituteInPlace setup.py \ 27 + --replace "--cov certauth " "" 28 + ''; 29 + 21 30 propagatedBuildInputs = [ 22 31 pyopenssl 23 32 tldextract ··· 25 34 26 35 nativeCheckInputs = [ 27 36 pytestCheckHook 28 - pytest-cov 37 + ]; 38 + 39 + pythonImportsCheck = [ 40 + "certauth" 29 41 ]; 30 42 31 - pythonImportsCheck = [ "certauth" ]; 43 + disabledTests = [ 44 + # Tests want to download Public Suffix List 45 + "test_file_wildcard" 46 + "test_file_wildcard_subdomains" 47 + "test_in_mem_parent_wildcard_cert" 48 + "test_in_mem_parent_wildcard_cert_at_tld" 49 + "test_in_mem_parent_wildcard_cert_2" 50 + ]; 32 51 33 52 meta = with lib; { 34 53 description = "Simple CertificateAuthority and host certificate creation, useful for man-in-the-middle HTTPS proxy";
+18 -7
pkgs/development/python-modules/corsair-scan/default.nix
··· 14 14 buildPythonPackage rec { 15 15 pname = "corsair-scan"; 16 16 version = "0.2.0"; 17 + format = "setuptools"; 18 + 17 19 disabled = pythonOlder "3.8"; 18 20 19 21 src = fetchFromGitHub { 20 22 owner = "Santandersecurityresearch"; 21 23 repo = "corsair_scan"; 22 - rev = "v${version}"; 23 - sha256 = "09jsv5bag7mjy0rxsxjzmg73rjl7qknzr0d7a7himd7v6a4ikpmk"; 24 + rev = "refs/tags/v${version}"; 25 + hash = "sha256-s94ZiTL7tBrhUaeB/O3Eh8o8zqtfdt0z8LKep1bZWiY="; 24 26 }; 25 27 28 + postPatch = '' 29 + substituteInPlace setup.py \ 30 + --replace "'pytest-runner'," "" 31 + ''; 32 + 26 33 propagatedBuildInputs = [ 27 34 validators 28 35 requests ··· 36 43 pytestCheckHook 37 44 ]; 38 45 39 - postPatch = '' 40 - substituteInPlace setup.py \ 41 - --replace "'pytest-runner'," "" 42 - ''; 46 + pythonImportsCheck = [ 47 + "corsair_scan" 48 + ]; 43 49 44 - pythonImportsCheck = [ "corsair_scan" ]; 50 + disabledTests = [ 51 + # Tests want to download Public Suffix List 52 + "test_corsair_scan_401" 53 + "test_corsair_scan_origin" 54 + ]; 45 55 46 56 meta = with lib; { 47 57 description = "Python module to check for Cross-Origin Resource Sharing (CORS) misconfigurations"; 48 58 homepage = "https://github.com/Santandersecurityresearch/corsair_scan"; 59 + changelog = "https://github.com/Santandersecurityresearch/corsair_scan/releases/tag/v${version}"; 49 60 license = with licenses; [ mit ]; 50 61 maintainers = with maintainers; [ fab ]; 51 62 };
+2 -2
pkgs/development/python-modules/cyclonedx-python-lib/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "cyclonedx-python-lib"; 26 - version = "4.2.2"; 26 + version = "4.2.3"; 27 27 format = "pyproject"; 28 28 29 29 disabled = pythonOlder "3.9"; ··· 32 32 owner = "CycloneDX"; 33 33 repo = "cyclonedx-python-lib"; 34 34 rev = "refs/tags/v${version}"; 35 - hash = "sha256-7bqIKwKGfMj5YPqZpvWtP881LNOgvJ+DMHs1U63gCN0="; 35 + hash = "sha256-I94YsfDJ+FGQBRWCRKum917tXJ5vFm/cWbbM+NpwA4M="; 36 36 }; 37 37 38 38 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/devpi-common/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "devpi-common"; 12 - version = "4.0.0"; 12 + version = "4.0.2"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-N4f43B1Dg1mCnDF3Sj2341vVXNdjlDzF1vn7ORoLWJ8="; 19 + hash = "sha256-LSd3AfrwXUpvbL234ED5PAoAKG2+h9XAou6uuiBVkZw="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+67 -33
pkgs/development/python-modules/dns-lexicon/default.nix
··· 1 - { buildPythonPackage 2 - , fetchFromGitHub 3 - , poetry-core 1 + { lib 4 2 , beautifulsoup4 3 + , boto3 4 + , buildPythonPackage 5 5 , cryptography 6 + , dnspython 7 + , fetchFromGitHub 6 8 , importlib-metadata 9 + , localzone 10 + , oci 11 + , poetry-core 12 + , pyotp 13 + , pytest-vcr 14 + , pytestCheckHook 15 + , pythonOlder 7 16 , pyyaml 8 17 , requests 9 - , tldextract 10 - , pytestCheckHook 11 - , pytest-vcr 12 - # Optional depedencies 13 - , boto3 14 - , localzone 15 18 , softlayer 19 + , tldextract 16 20 , zeep 17 - , dnspython 18 - , oci 19 - , lib 20 21 }: 21 22 22 23 buildPythonPackage rec { 23 24 pname = "dns_lexicon"; 24 - version = "3.14.1"; 25 - format = "pyproject"; 25 + version = "3.16.0"; 26 + pyproject = true; 27 + 28 + disabled = pythonOlder "3.8"; 26 29 27 30 src = fetchFromGitHub { 28 31 owner = "Analogj"; 29 32 repo = "lexicon"; 30 - rev = "v${version}"; 31 - hash = "sha256-flK2G9mdUWMUACQPo6TqYZ388EacIqkq//tCzUS+Eo8="; 33 + rev = "refs/tags/v${version}"; 34 + hash = "sha256-GUYsTZPvsqGemViSqgEvYhyjTEut42akMq2ZK2P1fX0="; 32 35 }; 33 36 34 - nativeBuildInputs = [ poetry-core ]; 35 - 36 - nativeCheckInputs = [ 37 - pytestCheckHook 38 - pytest-vcr 39 - ] ++ passthru.optional-dependencies.full; 37 + nativeBuildInputs = [ 38 + poetry-core 39 + ]; 40 40 41 41 propagatedBuildInputs = [ 42 42 beautifulsoup4 43 43 cryptography 44 - importlib-metadata 44 + pyotp 45 45 pyyaml 46 46 requests 47 47 tldextract 48 + ] ++ lib.optionals (pythonOlder "3.10") [ 49 + importlib-metadata 48 50 ]; 49 51 50 52 passthru.optional-dependencies = { 51 - route53 = [ boto3 ]; 52 - localzone = [ localzone ]; 53 - softlayer = [ softlayer ]; 54 - ddns = [ dnspython ]; 55 - duckdns = [ dnspython ]; 56 - oci = [ oci ]; 57 - full = [ boto3 localzone softlayer zeep dnspython oci ]; 53 + route53 = [ 54 + boto3 55 + ]; 56 + localzone = [ 57 + localzone 58 + ]; 59 + softlayer = [ 60 + softlayer 61 + ]; 62 + ddns = [ 63 + dnspython 64 + ]; 65 + duckdns = [ 66 + dnspython 67 + ]; 68 + oci = [ 69 + oci 70 + ]; 71 + full = [ 72 + boto3 73 + dnspython 74 + localzone 75 + oci 76 + softlayer 77 + zeep 78 + ]; 58 79 }; 59 80 81 + nativeCheckInputs = [ 82 + pytestCheckHook 83 + pytest-vcr 84 + ] ++ passthru.optional-dependencies.full; 85 + 60 86 pytestFlagsArray = [ 61 87 "tests/" 62 88 ]; ··· 64 90 disabledTestPaths = [ 65 91 # Needs network access 66 92 "tests/providers/test_auto.py" 67 - 68 93 # Needs network access (and an API token) 69 94 "tests/providers/test_namecheap.py" 70 95 ]; 71 96 97 + disabledTests = [ 98 + # Tests want to download Public Suffix List 99 + "test_client_legacy_init" 100 + "test_client_basic_init" 101 + "test_client_init" 102 + "test_client_parse_env" 103 + "test_missing" 104 + "action_is_correctly" 105 + ]; 106 + 72 107 pythonImportsCheck = [ 73 108 "lexicon" 74 109 ]; ··· 77 112 description = "Manipulate DNS records on various DNS providers in a standardized way"; 78 113 homepage = "https://github.com/AnalogJ/lexicon"; 79 114 changelog = "https://github.com/AnalogJ/lexicon/blob/v${version}/CHANGELOG.md"; 80 - maintainers = with maintainers; [ aviallon ]; 81 115 license = with licenses; [ mit ]; 116 + maintainers = with maintainers; [ aviallon ]; 82 117 }; 83 - 84 118 }
+25 -12
pkgs/development/python-modules/docx2python/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , poetry-core 6 + , lxml 7 + , pytestCheckHook 8 + }: 2 9 3 10 buildPythonPackage rec { 4 11 pname = "docx2python"; 5 - version = "unstable-2020-11-15"; 12 + version = "2.11.0"; 13 + pyproject = true; 14 + 15 + disabled = pythonOlder "3.8"; 6 16 7 - # Pypi does not contain tests 8 17 src = fetchFromGitHub { 9 18 owner = "ShayHill"; 10 - repo = pname; 11 - rev = "21b2edafc0a01a6cfb73aefc61747a65917e2cad"; 12 - sha256 = "1nwg17ziwm9a2x7yxsscj8zgc1d383ifsk5w7qa2fws6gf627kyi"; 19 + repo = "docx2python"; 20 + rev = "refs/tags/${version}"; 21 + hash = "sha256-SavRYnNbESRQh9Elk8qCt/qdI2x+sYZJFMYy+Gojg2k="; 13 22 }; 14 23 15 - preCheck = "cd test"; # Tests require the `test/resources` folder to be accessible 16 - nativeCheckInputs = [ pytestCheckHook ]; 17 - disabledTests = [ # asserts related to file deletions fail 18 - "test_docx2python.py" 19 - "test_docx_context.py" 20 - "test_google_docs.py" 24 + nativeBuildInputs = [ 25 + poetry-core 26 + ]; 27 + 28 + propagatedBuildInputs = [ 29 + lxml 21 30 ]; 31 + 32 + nativeCheckInputs = [ pytestCheckHook ]; 33 + 22 34 pythonImportsCheck = [ "docx2python" ]; 23 35 24 36 meta = with lib; { 25 37 homepage = "https://github.com/ShayHill/docx2python"; 26 38 description = "Extract docx headers, footers, (formatted) text, footnotes, endnotes, properties, and images"; 39 + changelog = "https://github.com/ShayHill/docx2python/blob/${src.rev}/CHANGELOG.md"; 27 40 maintainers = [ maintainers.ivar ]; 28 41 license = licenses.mit; 29 42 };
+2 -2
pkgs/development/python-modules/fastai/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "fastai"; 21 - version = "2.7.12"; 21 + version = "2.7.13"; 22 22 format = "setuptools"; 23 23 24 24 disabled = pythonOlder "3.7"; 25 25 26 26 src = fetchPypi { 27 27 inherit pname version; 28 - hash = "sha256-5ayA/0bdgHDGcKNI8xpkyF6hqR3DIMIQZIjzQzMoKRY="; 28 + hash = "sha256-q1KBBAAKrTzq6USRwBjvT23mXpjQT2gjBsxuZ4w54rY="; 29 29 }; 30 30 31 31 propagatedBuildInputs = [
+13 -7
pkgs/development/python-modules/jinja2-git/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , pythonOlder 4 5 , jinja2 5 6 , poetry-core 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "jinja2-git"; 10 - version = "unstable-2021-07-20"; 11 - format = "pyproject"; 11 + version = "1.3.0"; 12 + pyproject = true; 13 + 14 + disabled = pythonOlder "3.7"; 12 15 13 16 src = fetchFromGitHub { 14 17 owner = "wemake-services"; 15 18 repo = "jinja2-git"; 16 - # this is master, we can't patch because of poetry.lock :( 17 - # luckily, there appear to have been zero API changes since then, only 18 - # dependency upgrades 19 - rev = "c6d19b207eb6ac07182dc8fea35251d286c82512"; 20 - sha256 = "0yw0318w57ksn8azmdyk3zmyzfhw0k281fddnxyf4115bx3aph0g"; 19 + rev = "refs/tags/${version}"; 20 + hash = "sha256-XuN2L3/HLcZ/WPWiCtufDOmkxj+q4I6IOgjrGQHfNLk="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ poetry-core ]; 24 + 24 25 propagatedBuildInputs = [ jinja2 ]; 26 + 27 + # the tests need to be run on the git repository 28 + doCheck = false; 29 + 25 30 pythonImportsCheck = [ "jinja2_git" ]; 26 31 27 32 meta = with lib; { 28 33 homepage = "https://github.com/wemake-services/jinja2-git"; 29 34 description = "Jinja2 extension to handle git-specific things"; 35 + changelog = "https://github.com/wemake-services/jinja2-git/blob/${src.rev}/CHANGELOG.md"; 30 36 license = licenses.mit; 31 37 maintainers = with maintainers; [ cpcloud ]; 32 38 };
+14 -12
pkgs/development/python-modules/mung/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , setuptools 4 5 , lxml 5 - , matplotlib 6 - , midiutil 7 6 , numpy 8 7 , pytestCheckHook 9 8 , scikit-image 10 - , scikit-learn 11 9 }: 12 10 let 13 - rev = "8d0ce91d831b0592c111ddb38fc9aa8eba130ed2"; 11 + version = "1.2"; 14 12 in 15 13 buildPythonPackage { 16 14 pname = "mung"; 17 - version = "unstable-2022-07-10"; 15 + inherit version; 16 + pyproject = true; 18 17 19 18 src = fetchFromGitHub { 20 19 owner = "OMR-Research"; 21 20 repo = "mung"; 22 - inherit rev; 23 - hash = "sha256-QzCkB9Wj4dTPuMCMweFw6IsSwBBzV0Nfx7+VX7Plnio="; 21 + rev = "refs/tags/${version}"; 22 + hash = "sha256-NSKaJkJRevTy5gh6/ik8Qe46bOPdznsmXPgh7Xz7vXQ="; 24 23 }; 25 24 26 - format = "setuptools"; 25 + nativeBuildInputs = [ 26 + setuptools 27 + ]; 27 28 28 29 propagatedBuildInputs = [ 29 30 lxml 30 31 numpy 31 32 scikit-image 32 - scikit-learn 33 - matplotlib 34 - midiutil 35 33 ]; 36 34 37 35 nativeCheckInputs = [ 38 36 pytestCheckHook 39 37 ]; 40 38 39 + pythonImportsCheck = [ 40 + "mung" 41 + ]; 42 + 41 43 meta = with lib; { 42 44 description = "Music Notation Graph: a data model for optical music recognition"; 43 45 homepage = "https://github.com/OMR-Research/mung"; 44 - changelog = "https://github.com/OMR-Research/mung/blob/${rev}/CHANGES.md"; 46 + changelog = "https://github.com/OMR-Research/mung/blob/${version}/CHANGES.md"; 45 47 license = licenses.mit; 46 48 maintainers = with maintainers; [ piegames ]; 47 49 };
+33 -11
pkgs/development/python-modules/openant/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , pythonOlder 5 + , setuptools 4 6 , pyusb 7 + , influxdb-client 8 + , pyserial 9 + , pytestCheckHook 5 10 }: 6 11 7 - buildPythonPackage { 12 + buildPythonPackage rec { 8 13 pname = "openant-unstable"; 9 - version = "2017-02-11"; 14 + version = "1.2.1"; 15 + pyproject = true; 16 + 17 + disabled = pythonOlder "3.7"; 10 18 11 19 src = fetchFromGitHub { 12 20 owner = "Tigge"; 13 21 repo = "openant"; 14 - rev = "ed89281e37f65d768641e87356cef38877952397"; 15 - sha256 = "1g81l9arqdy09ijswn3sp4d6i3z18d44lzyb78bwnvdb14q22k19"; 22 + rev = "refs/tags/v${version}"; 23 + hash = "sha256-Ook9dwcyWvpaGylVDjBxQ2bnXRUBPYQHo6Wub+ISpwE="; 16 24 }; 17 25 18 - # Removes some setup.py hacks intended to install udev rules. 19 - # We do the job ourselves in postInstall below. 20 - postPatch = '' 21 - sed -i -e '/cmdclass=.*/d' setup.py 22 - ''; 26 + nativeBuildInputs = [ 27 + setuptools 28 + ]; 23 29 24 30 postInstall = '' 25 31 install -dm755 "$out/etc/udev/rules.d" 26 - install -m644 resources/ant-usb-sticks.rules "$out/etc/udev/rules.d/99-ant-usb-sticks.rules" 32 + install -m644 resources/42-ant-usb-sticks.rules "$out/etc/udev/rules.d/99-ant-usb-sticks.rules" 27 33 ''; 28 34 29 35 propagatedBuildInputs = [ pyusb ]; 30 36 37 + passthru.optional-dependencies = { 38 + serial = [ 39 + pyserial 40 + ]; 41 + influx = [ 42 + influxdb-client 43 + ]; 44 + }; 45 + 46 + nativeCheckInputs = [ 47 + pytestCheckHook 48 + ]; 49 + 50 + pythonImportsCheck = [ 51 + "openant" 52 + ]; 53 + 31 54 meta = with lib; { 32 55 homepage = "https://github.com/Tigge/openant"; 33 56 description = "ANT and ANT-FS Python Library"; 34 57 license = licenses.mit; 35 - platforms = platforms.unix; 36 58 }; 37 59 38 60 }
+2 -2
pkgs/development/python-modules/opower/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "opower"; 15 - version = "0.0.35"; 15 + version = "0.0.36"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.9"; ··· 21 21 owner = "tronikos"; 22 22 repo = "opower"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-bS9KsPMuzQ+4AXsVzKiCevZujU4iW2hZ+eSJheM4NRI="; 24 + hash = "sha256-onfPTbfBWSoQ75w8g0ub7xwzcNKvHOdfAD5RyUAc5ss="; 25 25 }; 26 26 27 27 pythonRemoveDeps = [
+3 -3
pkgs/development/python-modules/pgmpy/default.nix
··· 23 23 }: 24 24 let 25 25 pname = "pgmpy"; 26 - version = "0.1.23"; 26 + version = "0.1.24"; 27 27 # optional-dependencies = { 28 28 # all = [ daft ]; 29 29 # }; ··· 37 37 src = fetchFromGitHub { 38 38 owner = "pgmpy"; 39 39 repo = pname; 40 - rev = "v${version}"; 41 - hash = "sha256-4NY37Awhu2mnfZQ/biN1wa9rkGHhTxfZm0+V7D83NR0="; 40 + rev = "refs/tags/v${version}"; 41 + hash = "sha256-IMlo4SBxO9sPoZl0rQGc3FcvvIN/V/WZz+1BD7aBfzs="; 42 42 }; 43 43 44 44 propagatedBuildInputs = [
+2
pkgs/development/python-modules/scrapy/default.nix
··· 101 101 "test_persist" 102 102 "test_timeout_download_from_spider_nodata_rcvd" 103 103 "test_timeout_download_from_spider_server_hangs" 104 + "test_unbounded_response" 105 + "CookiesMiddlewareTest" 104 106 # Depends on uvloop 105 107 "test_asyncio_enabled_reactor_different_loop" 106 108 "test_asyncio_enabled_reactor_same_loop"
+16 -3
pkgs/development/python-modules/surt/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , pytestCheckHook 5 + , pythonOlder 4 6 , six 5 7 , tldextract 6 - , pytestCheckHook 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "surt"; 11 12 version = "0.3.1"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 12 16 13 17 src = fetchFromGitHub { 14 18 owner = "internetarchive"; 15 19 repo = "surt"; 16 - rev = "6934c321b3e2f66af9c001d882475949f00570c5"; # Has no git tag 20 + # Has no git tag, https://github.com/internetarchive/surt/issues/26 21 + rev = "6934c321b3e2f66af9c001d882475949f00570c5"; 17 22 hash = "sha256-pSMNpFfq2V0ANWNFPcb1DwPHccbfddo9P4xZ+ghwbz4="; 18 23 }; 19 24 ··· 26 31 pytestCheckHook 27 32 ]; 28 33 29 - pythonImportsCheck = [ "surt" ]; 34 + pythonImportsCheck = [ 35 + "surt" 36 + ]; 37 + 38 + disabledTests = [ 39 + # Tests want to download Public Suffix List 40 + "test_getPublicPrefix" 41 + "test_getPublicSuffix" 42 + ]; 30 43 31 44 meta = with lib; { 32 45 description = "Sort-friendly URI Reordering Transform (SURT) python module";
+13 -13
pkgs/development/python-modules/tldextract/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchPypi 3 + , fetchFromGitHub 4 4 , filelock 5 5 , idna 6 6 , pytest-mock ··· 14 14 }: 15 15 16 16 buildPythonPackage rec { 17 - pname = "tldextract"; 18 - version = "3.6.0"; 19 - format = "pyproject"; 17 + pname = "tldextract"; 18 + version = "5.0.0"; 19 + pyproject = true; 20 20 21 - disabled = pythonOlder "3.7"; 21 + disabled = pythonOlder "3.8"; 22 22 23 - src = fetchPypi { 24 - inherit pname version; 25 - hash = "sha256-pdi2WDeR2sominWS6892QVL6SWF5g8SZFu6d6Zs2YiI="; 23 + src = fetchFromGitHub { 24 + owner = "john-kurkowski"; 25 + repo = "tldextract"; 26 + rev = "refs/tags/${version}"; 27 + hash = "sha256-oZ7L7DGe9HmBo5a489LXjajiSecJNLGHzCF/7DV9au4="; 26 28 }; 29 + 30 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 27 31 28 32 nativeBuildInputs = [ 29 33 setuptools ··· 43 47 responses 44 48 ]; 45 49 46 - postPatch = '' 47 - substituteInPlace pytest.ini \ 48 - --replace " --pylint" "" 49 - ''; 50 - 51 50 pythonImportsCheck = [ 52 51 "tldextract" 53 52 ]; ··· 59 58 from the registered domain and subdomains of a URL. 60 59 ''; 61 60 homepage = "https://github.com/john-kurkowski/tldextract"; 61 + changelog = "https://github.com/john-kurkowski/tldextract/blob/${version}/CHANGELOG.md"; 62 62 license = with licenses; [ bsd3 ]; 63 63 maintainers = with maintainers; [ fab ]; 64 64 };
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 22 22 23 23 buildPythonApplication rec { 24 24 pname = "checkov"; 25 - version = "2.5.8"; 25 + version = "2.5.10"; 26 26 format = "setuptools"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "bridgecrewio"; 30 30 repo = pname; 31 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-cnlX40JwkSlqq+T328nQtI9v4RyW8EZ/nzXK9drdkSc="; 32 + hash = "sha256-0S4sNJv3kWgZGK40xBVJ3n4PGS7ms2pJap2nyWnK4Mg="; 33 33 }; 34 34 35 35 patches = [
+2 -2
pkgs/development/tools/analysis/jacoco/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "jacoco"; 10 - version = "0.8.10"; 10 + version = "0.8.11"; 11 11 12 12 src = fetchzip { 13 13 url = "https://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/${version}/jacoco-${version}.zip"; 14 14 stripRoot = false; 15 - sha256 = "sha256-V8I3DXoeUPNxAe7z/ISGa5UQAyLJN7RKXlD0FOw92Oo="; 15 + sha256 = "sha256-Sd4Kh5ts0IdHhd9vF1XZzZ2KFRb+rsnzpam6Ysxu910="; 16 16 }; 17 17 18 18 outputs = [ "out" "doc" ];
+2 -2
pkgs/development/tools/database/liquibase/default.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "liquibase"; 28 - version = "4.23.2"; 28 + version = "4.24.0"; 29 29 30 30 src = fetchurl { 31 31 url = "https://github.com/liquibase/liquibase/releases/download/v${version}/${pname}-${version}.tar.gz"; 32 - hash = "sha256-/H0qn6l9kSA9Y5tmRxXUCVPGyRVaUiWg3cTIB5uaNkE="; 32 + hash = "sha256-bs9jinW1AbeYGJ2oJOFn8p25NHcYYQnyVJUIxiZtCyo="; 33 33 }; 34 34 35 35 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/development/tools/database/sqlfluff/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "sqlfluff"; 8 - version = "2.3.2"; 8 + version = "2.3.3"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = pname; 13 13 repo = pname; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-buDDu5UQmO1ImWXzqwlFZHYbn2FUjAxs8KbQX+g/mvg="; 15 + hash = "sha256-VCvlNR/0SX3bnGw+gSGkAoS+6zig5lrDv9/Gez+TIb4="; 16 16 }; 17 17 18 18 propagatedBuildInputs = with python3.pkgs; [
+3 -3
pkgs/development/tools/gosec/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "gosec"; 8 - version = "2.17.0"; 8 + version = "2.18.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "securego"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - hash = "sha256-cVW0CsVEBitSXS1Ciyt/EhE38KM7x4Up3aYUwKwrxvg="; 14 + hash = "sha256-z+5MR4tiKa2vVJslFdAcVLxrR6aXoPxAHaqNgN2QlMc="; 15 15 }; 16 16 17 - vendorHash = "sha256-mxSfdkqwJBUu34VWQ2Xlb2Jbz1QgWUH78Xngge9+AfA="; 17 + vendorHash = "sha256-jekw3uc2ZEH9s+26jMFVteHUD0iyURlVq8zBlVPihqs="; 18 18 19 19 subPackages = [ 20 20 "cmd/gosec"
+2 -2
pkgs/development/tools/librarian-puppet-go/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "librarian-puppet-go"; 5 - version = "0.3.9"; 5 + version = "0.3.10"; 6 6 7 7 goPackagePath = "github.com/tmtk75/librarian-puppet-go"; 8 8 ··· 10 10 owner = "tmtk75"; 11 11 repo = "librarian-puppet-go"; 12 12 rev = "v${version}"; 13 - sha256 = "19x2hz3b8xkhy2nkyjg6s4qvs55mh84fvjwp157a86dmxwkdf45y"; 13 + sha256 = "sha256-IEhqyowyLTXDEhg4nkix1N45S0+k+RngMP6TsaZQ4mI="; 14 14 }; 15 15 16 16 goDeps = ./deps.nix;
+2 -2
pkgs/development/tools/misc/lttng-tools/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "lttng-tools"; 5 - version = "2.13.10"; 5 + version = "2.13.11"; 6 6 7 7 src = fetchurl { 8 8 url = "https://lttng.org/files/lttng-tools/${pname}-${version}.tar.bz2"; 9 - sha256 = "sha256-5dEJXsEyJWXzjxSTRvcZZ0lsKB6sxR7Fx3mUuFDn0zU="; 9 + sha256 = "sha256-rFuu75+mkJNrHKAezRdC2nYsLAhRH/G06SOTjZTQ+Xk="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ];
+2 -2
pkgs/development/tools/misc/nxpmicro-mfgtools/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "nxpmicro-mfgtools"; 15 - version = "1.5.21"; 15 + version = "1.5.125"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "nxp-imx"; 19 19 repo = "mfgtools"; 20 20 rev = "uuu_${version}"; 21 - sha256 = "sha256-XVvGsHltlA3h9hd3C88G3s2wIZ1EVM6DmvdiwD82vTw="; 21 + sha256 = "sha256-f9Nt303xXZzLSu3GtOEpyaL91WVFUmKO7mxi8UNX3go="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ cmake pkg-config installShellFiles ];
+2 -2
pkgs/development/tools/misc/opengrok/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "opengrok"; 5 - version = "1.12.14"; 5 + version = "1.12.15"; 6 6 7 7 # binary distribution 8 8 src = fetchurl { 9 9 url = "https://github.com/oracle/opengrok/releases/download/${version}/${pname}-${version}.tar.gz"; 10 - hash = "sha256-4v+fDmDnmoAZimf63nSCqUp0y+a5UKQBxNWSNp64XE4="; 10 + hash = "sha256-AEKzhNSNJOOyK/fiAepqios7xoexAi4M4zbMTPdyyeA="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/development/tools/misc/rustywind/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "rustywind"; 10 - version = "0.19.0"; 10 + version = "0.20.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "avencera"; 14 14 repo = "rustywind"; 15 15 rev = "v${version}"; 16 - hash = "sha256-wPr+BNj3/YP+g0OkqkGSN1X8g/p3xDRcHvdDMAOP9Cc="; 16 + hash = "sha256-3VG3EIcNp1fcNctrQO+mcGkAObHYPZQGdU83mi7WxPs="; 17 17 }; 18 18 19 - cargoHash = "sha256-frBE3pJvQdntt48/RHz3F2qqrgmXFR//5CyCfdcSfik="; 19 + cargoHash = "sha256-hqGhh3YZ8Pz0hhC+HNdwc7PZVzGeMZqmctVjbQx7SQo="; 20 20 21 21 buildInputs = lib.optionals stdenv.isDarwin [ 22 22 darwin.apple_sdk.frameworks.Security
+2 -2
pkgs/development/tools/neil/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "neil"; 10 - version = "0.2.61"; 10 + version = "0.2.62"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "babashka"; 14 14 repo = "neil"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-MoQf7dxdmUlIZZMjuKBJOCu61L8qiAlmVssf6pUhqA8="; 16 + sha256 = "sha256-zSZ62RMHZLuhIPdde0cfWae+uFpWVjMfHuLAJdRedJA="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/development/tools/profiling/heaptrack/default.nix
··· 6 6 7 7 mkDerivation rec { 8 8 pname = "heaptrack"; 9 - version = "1.4.0"; 9 + version = "1.5.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "KDE"; 13 13 repo = "heaptrack"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-AzHQnPYhmCHGco7JoKal57PC6NKUoMTeflHtFsBxQpA="; 15 + sha256 = "sha256-pP+s60ERnmOctYTe/vezCg0VYzziApNY0QaF3aTccZU="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ cmake extra-cmake-modules ];
+2 -2
pkgs/development/web/bootstrap-studio/default.nix
··· 2 2 3 3 let 4 4 pname = "bootstrap-studio"; 5 - version = "6.4.5"; 5 + version = "6.5.1"; 6 6 src = fetchurl { 7 7 url = "https://releases.bootstrapstudio.io/${version}/Bootstrap%20Studio.AppImage"; 8 - sha256 = "sha256-kCMqDNRC3H3WBpDJCBXBxvWRuiGCrZ7gRGghXiGtGq8="; 8 + sha256 = "sha256-mx9KkMwFzdjhzofr+4l7MTerGfSSsI8+z8jmaoV8uvo="; 9 9 }; 10 10 appimageContents = appimageTools.extractType2 { inherit pname version src; }; 11 11 in
+7 -3
pkgs/games/hikounomizu/default.nix
··· 13 13 , libogg 14 14 , libvorbis 15 15 , libGLU 16 + , enet 16 17 , synfigstudio 17 18 , inkscape 18 19 , imagemagick 19 20 , pngquant 20 21 , xz 22 + , bc 21 23 }: 22 24 23 25 stdenv.mkDerivation rec { 24 26 pname = "hikounomizu"; 25 - version = "0.9.2"; 27 + version = "1.0"; 26 28 27 29 src = fetchurl { 28 30 url = "http://download.tuxfamily.org/hnm/${version}/hikounomizu-${version}-src.tar.bz2"; 29 - hash = "sha256-ZtvzQAiYG4IcdgKiBDIQFOJVnLbz1TsiIbdZr/0Y2U8="; 31 + hash = "sha256-Hw/BA7jOW9KGdde1NLDh4SfQXxvZkNGx/sHXukgFZ5M="; 30 32 }; 31 33 32 34 nativeBuildInputs = [ ··· 39 41 imagemagick 40 42 pngquant 41 43 xz 44 + bc 42 45 ]; 43 46 44 47 buildInputs = [ ··· 51 54 libogg 52 55 libvorbis 53 56 libGLU 57 + enet 54 58 ]; 55 59 56 60 postBuild = '' 57 - make data -j$NIX_BUILD_CORES 61 + make data HNM_PARALLEL=$NIX_BUILD_CORES 58 62 ''; 59 63 60 64 meta = with lib; {
+2 -2
pkgs/games/openttd/jgrpp.nix
··· 2 2 3 3 openttd.overrideAttrs (oldAttrs: rec { 4 4 pname = "openttd-jgrpp"; 5 - version = "0.54.4"; 5 + version = "0.55.3"; 6 6 7 7 src = fetchFromGitHub rec { 8 8 owner = "JGRennison"; 9 9 repo = "OpenTTD-patches"; 10 10 rev = "jgrpp-${version}"; 11 - hash = "sha256-bTpHlKffQbANXIrAn9WSEK/PEzBW1nzaHhGKIyclAo0="; 11 + hash = "sha256-E1+pXpXNHOu9nPTGSY8baVaKf1Um6IGDjpi1MmENez8="; 12 12 }; 13 13 14 14 buildInputs = oldAttrs.buildInputs ++ [ zstd ];
+2 -2
pkgs/os-specific/linux/conky/default.nix
··· 67 67 68 68 stdenv.mkDerivation rec { 69 69 pname = "conky"; 70 - version = "1.19.4"; 70 + version = "1.19.5"; 71 71 72 72 src = fetchFromGitHub { 73 73 owner = "brndnmtthws"; 74 74 repo = "conky"; 75 75 rev = "v${version}"; 76 - hash = "sha256-XptnokBWtBx0W2k2C9jVwIYH8pOrDUbuQLvh8JrW/w8="; 76 + hash = "sha256-m8tI68PUEkO+tWbcq8CF5TAiKqFU9kcXMbi6NszS7NE="; 77 77 }; 78 78 79 79 postPatch = ''
+2 -2
pkgs/os-specific/linux/klibc/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "klibc"; 12 - version = "2.0.12"; 12 + version = "2.0.13"; 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/libs/klibc/2.0/klibc-${version}.tar.xz"; 16 - hash = "sha256-cfgWoNOr46uotGMZrlyhR+eno4QBs/XiYgJfTcCMR10="; 16 + hash = "sha256-1nOilPdC1ZNoIi/1w4Ri2BCYxVBjeZ3m+4p7o9SvBDY="; 17 17 }; 18 18 19 19 patches = [ ./no-reinstall-kernel-headers.patch ];
+2 -2
pkgs/os-specific/linux/projecteur/default.nix
··· 10 10 11 11 mkDerivation rec { 12 12 pname = "projecteur"; 13 - version = "0.9.2"; 13 + version = "0.10"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "jahnf"; 17 17 repo = "Projecteur"; 18 18 rev = "v${version}"; 19 19 fetchSubmodules = false; 20 - hash = "sha256-kg6oYtJ4H5A6RNATBg+XvMfCb9FlhEBFjfxamGosMQg="; 20 + hash = "sha256-F7o93rBjrDTmArTIz8RB/uGBOYE6ny/U7ppk+jEhM5A="; 21 21 }; 22 22 23 23 postPatch = ''
+2 -2
pkgs/servers/felix/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "apache-felix"; 5 - version = "7.0.1"; 5 + version = "7.0.5"; 6 6 src = fetchurl { 7 7 url = "mirror://apache/felix/org.apache.felix.main.distribution-${version}.tar.gz"; 8 - sha256 = "sha256-WypiOdJhqKngIFVNf/XXAUDRdS8rANxWrcT846hcWTo="; 8 + sha256 = "sha256-N9mbkIzMkMV2RLONv15EiosJxMU9iEJvwPWEauPIEe8="; 9 9 }; 10 10 buildCommand = 11 11 ''
+3 -3
pkgs/servers/imgproxy/default.nix
··· 3 3 4 4 buildGoModule rec { 5 5 pname = "imgproxy"; 6 - version = "3.19.0"; 6 + version = "3.20.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = pname; 10 10 repo = pname; 11 - hash = "sha256-EGnamJBotPDatsWG+XLI/QhF2464aphkB9oS631oj+c="; 11 + hash = "sha256-qTOMoeTk9fGBSmioTRBUa3xRXOIW6OJj8aH0b/vP7dw="; 12 12 rev = "v${version}"; 13 13 }; 14 14 15 - vendorHash = "sha256-gjRUt8/LECFSU2DG4ALi7a3DxKAGFoW98eBgeE5i2+s="; 15 + vendorHash = "sha256-SaxoFCEDniphr1ZZ5prE996CeHegB+a8dpGaMpjsrtQ="; 16 16 17 17 nativeBuildInputs = [ pkg-config gobject-introspection ]; 18 18
+3 -3
pkgs/servers/mautrix-whatsapp/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "mautrix-whatsapp"; 5 - version = "0.10.2"; 5 + version = "0.10.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mautrix"; 9 9 repo = "whatsapp"; 10 10 rev = "v${version}"; 11 - hash = "sha256-GWtci/OiipaUFzzha3GvkoKmN1lb9Fg3i+X1ZFkGKtc="; 11 + hash = "sha256-lBseLxxk+3/eoJMdq4muOrA0TgEhwIReGtQO1OzqBFc="; 12 12 }; 13 13 14 14 buildInputs = [ olm ]; 15 15 16 - vendorHash = "sha256-IEBSY61Bjuc42GqQUvChqLayO1hiDEDBxlMoAKJo12E="; 16 + vendorHash = "sha256-QUZ9x9BDlhoWLvdt8BTIKxHcsclT6arGICeJnOafs1g="; 17 17 18 18 doCheck = false; 19 19
+2 -2
pkgs/servers/metabase/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "metabase"; 5 - version = "0.47.0"; 5 + version = "0.47.3"; 6 6 7 7 src = fetchurl { 8 8 url = "https://downloads.metabase.com/v${version}/metabase.jar"; 9 - hash = "sha256-m/A6RkFjlxGWvsMGWQBB6PVx8k4dWjRpU2Pw3qHrqAk="; 9 + hash = "sha256-oIGIrEa2iHvvseP3sAcwiUK7ky43scfyaSO7S3G7bEo="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/servers/search/opensearch/default.nix
··· 11 11 12 12 stdenvNoCC.mkDerivation (finalAttrs: { 13 13 pname = "opensearch"; 14 - version = "2.10.0"; 14 + version = "2.11.0"; 15 15 16 16 src = fetchurl { 17 17 url = "https://artifacts.opensearch.org/releases/bundle/opensearch/${finalAttrs.version}/opensearch-${finalAttrs.version}-linux-x64.tar.gz"; 18 - hash = "sha256-oJLxdXHn+fEp2ATWdyFRbfM/QebAWiT7cogxIwLrgfs="; 18 + hash = "sha256-j9bN09E4VikDPqvhRULfOjATme5KgVGrdv0rIPdd4Sw="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+3 -3
pkgs/servers/sip/kamailio/default.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "kamailio"; 10 - version = "5.7.1"; 10 + version = "5.7.2"; 11 11 12 12 meta = { 13 13 description = "Fast and flexible SIP server, proxy, SBC, and load balancer"; ··· 18 18 }; 19 19 20 20 src = fetchurl { 21 - url = "https://www.kamailio.org/pub/kamailio/5.7.1/src/kamailio-${finalAttrs.version}_src.tar.gz"; 22 - hash = "sha256-TkrAj5ohwzJ959UvXNwaMmcIwTRowUitP9/UNQ8D1zw="; 21 + url = "https://www.kamailio.org/pub/kamailio/5.7.2/src/kamailio-${finalAttrs.version}_src.tar.gz"; 22 + hash = "sha256-csmgZ9qNb6kg03N9mM1/ZsMh+Ay+EHbi1aOStCJQMSI="; 23 23 }; 24 24 25 25 buildInputs = with pkgs; [
+1547 -663
pkgs/servers/x11/xorg/default.nix
··· 6 6 inherit pixman; 7 7 8 8 # THIS IS A GENERATED FILE. DO NOT EDIT! 9 - appres = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXt }: stdenv.mkDerivation { 9 + appres = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXt, testers }: stdenv.mkDerivation (finalAttrs: { 10 10 pname = "appres"; 11 11 version = "1.0.6"; 12 12 builder = ./builder.sh; ··· 18 18 strictDeps = true; 19 19 nativeBuildInputs = [ pkg-config ]; 20 20 buildInputs = [ libX11 xorgproto libXt ]; 21 - meta.platforms = lib.platforms.unix; 22 - }) {}; 21 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 22 + meta = { 23 + pkgConfigModules = [ ]; 24 + platforms = lib.platforms.unix; 25 + }; 26 + })) {}; 23 27 24 28 # THIS IS A GENERATED FILE. DO NOT EDIT! 25 - bdftopcf = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto }: stdenv.mkDerivation { 29 + bdftopcf = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 26 30 pname = "bdftopcf"; 27 31 version = "1.1.1"; 28 32 builder = ./builder.sh; ··· 34 38 strictDeps = true; 35 39 nativeBuildInputs = [ pkg-config ]; 36 40 buildInputs = [ xorgproto ]; 37 - meta.platforms = lib.platforms.unix; 38 - }) {}; 41 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 42 + meta = { 43 + pkgConfigModules = [ ]; 44 + platforms = lib.platforms.unix; 45 + }; 46 + })) {}; 39 47 40 48 # THIS IS A GENERATED FILE. DO NOT EDIT! 41 - bitmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, xbitmaps, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 49 + bitmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, xbitmaps, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 42 50 pname = "bitmap"; 43 51 version = "1.1.0"; 44 52 builder = ./builder.sh; ··· 50 58 strictDeps = true; 51 59 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 52 60 buildInputs = [ libX11 libXaw xbitmaps libXmu xorgproto libXt ]; 53 - meta.platforms = lib.platforms.unix; 54 - }) {}; 61 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 62 + meta = { 63 + pkgConfigModules = [ ]; 64 + platforms = lib.platforms.unix; 65 + }; 66 + })) {}; 55 67 56 68 # THIS IS A GENERATED FILE. DO NOT EDIT! 57 - editres = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 69 + editres = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 58 70 pname = "editres"; 59 71 version = "1.0.8"; 60 72 builder = ./builder.sh; ··· 66 78 strictDeps = true; 67 79 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 68 80 buildInputs = [ libX11 libXaw libXmu xorgproto libXt ]; 69 - meta.platforms = lib.platforms.unix; 70 - }) {}; 81 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 82 + meta = { 83 + pkgConfigModules = [ ]; 84 + platforms = lib.platforms.unix; 85 + }; 86 + })) {}; 71 87 72 88 # THIS IS A GENERATED FILE. DO NOT EDIT! 73 - encodings = callPackage ({ stdenv, pkg-config, fetchurl, mkfontscale }: stdenv.mkDerivation { 89 + encodings = callPackage ({ stdenv, pkg-config, fetchurl, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 74 90 pname = "encodings"; 75 91 version = "1.0.7"; 76 92 builder = ./builder.sh; ··· 82 98 strictDeps = true; 83 99 nativeBuildInputs = [ pkg-config mkfontscale ]; 84 100 buildInputs = [ ]; 85 - meta.platforms = lib.platforms.unix; 86 - }) {}; 101 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 102 + meta = { 103 + pkgConfigModules = [ ]; 104 + platforms = lib.platforms.unix; 105 + }; 106 + })) {}; 87 107 88 108 # THIS IS A GENERATED FILE. DO NOT EDIT! 89 - fontadobe100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 109 + fontadobe100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 90 110 pname = "font-adobe-100dpi"; 91 111 version = "1.0.4"; 92 112 builder = ./builder.sh; ··· 100 120 buildInputs = [ fontutil ]; 101 121 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 102 122 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 103 - meta.platforms = lib.platforms.unix; 104 - }) {}; 123 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 124 + meta = { 125 + pkgConfigModules = [ ]; 126 + platforms = lib.platforms.unix; 127 + }; 128 + })) {}; 105 129 106 130 # THIS IS A GENERATED FILE. DO NOT EDIT! 107 - fontadobe75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 131 + fontadobe75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 108 132 pname = "font-adobe-75dpi"; 109 133 version = "1.0.4"; 110 134 builder = ./builder.sh; ··· 118 142 buildInputs = [ fontutil ]; 119 143 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 120 144 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 121 - meta.platforms = lib.platforms.unix; 122 - }) {}; 145 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 146 + meta = { 147 + pkgConfigModules = [ ]; 148 + platforms = lib.platforms.unix; 149 + }; 150 + })) {}; 123 151 124 152 # THIS IS A GENERATED FILE. DO NOT EDIT! 125 - fontadobeutopia100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 153 + fontadobeutopia100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 126 154 pname = "font-adobe-utopia-100dpi"; 127 155 version = "1.0.5"; 128 156 builder = ./builder.sh; ··· 136 164 buildInputs = [ fontutil ]; 137 165 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 138 166 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 139 - meta.platforms = lib.platforms.unix; 140 - }) {}; 167 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 168 + meta = { 169 + pkgConfigModules = [ ]; 170 + platforms = lib.platforms.unix; 171 + }; 172 + })) {}; 141 173 142 174 # THIS IS A GENERATED FILE. DO NOT EDIT! 143 - fontadobeutopia75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 175 + fontadobeutopia75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 144 176 pname = "font-adobe-utopia-75dpi"; 145 177 version = "1.0.5"; 146 178 builder = ./builder.sh; ··· 154 186 buildInputs = [ fontutil ]; 155 187 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 156 188 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 157 - meta.platforms = lib.platforms.unix; 158 - }) {}; 189 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 190 + meta = { 191 + pkgConfigModules = [ ]; 192 + platforms = lib.platforms.unix; 193 + }; 194 + })) {}; 159 195 160 196 # THIS IS A GENERATED FILE. DO NOT EDIT! 161 - fontadobeutopiatype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 197 + fontadobeutopiatype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 162 198 pname = "font-adobe-utopia-type1"; 163 199 version = "1.0.5"; 164 200 builder = ./builder.sh; ··· 172 208 buildInputs = [ fontutil ]; 173 209 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 174 210 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 175 - meta.platforms = lib.platforms.unix; 176 - }) {}; 211 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 212 + meta = { 213 + pkgConfigModules = [ ]; 214 + platforms = lib.platforms.unix; 215 + }; 216 + })) {}; 177 217 178 218 # THIS IS A GENERATED FILE. DO NOT EDIT! 179 - fontalias = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 219 + fontalias = callPackage ({ stdenv, pkg-config, fetchurl, testers }: stdenv.mkDerivation (finalAttrs: { 180 220 pname = "font-alias"; 181 221 version = "1.0.5"; 182 222 builder = ./builder.sh; ··· 188 228 strictDeps = true; 189 229 nativeBuildInputs = [ pkg-config ]; 190 230 buildInputs = [ ]; 191 - meta.platforms = lib.platforms.unix; 192 - }) {}; 231 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 232 + meta = { 233 + pkgConfigModules = [ ]; 234 + platforms = lib.platforms.unix; 235 + }; 236 + })) {}; 193 237 194 238 # THIS IS A GENERATED FILE. DO NOT EDIT! 195 - fontarabicmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 239 + fontarabicmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 196 240 pname = "font-arabic-misc"; 197 241 version = "1.0.4"; 198 242 builder = ./builder.sh; ··· 206 250 buildInputs = [ fontutil ]; 207 251 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 208 252 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 209 - meta.platforms = lib.platforms.unix; 210 - }) {}; 253 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 254 + meta = { 255 + pkgConfigModules = [ ]; 256 + platforms = lib.platforms.unix; 257 + }; 258 + })) {}; 211 259 212 260 # THIS IS A GENERATED FILE. DO NOT EDIT! 213 - fontbh100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 261 + fontbh100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 214 262 pname = "font-bh-100dpi"; 215 263 version = "1.0.4"; 216 264 builder = ./builder.sh; ··· 224 272 buildInputs = [ fontutil ]; 225 273 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 226 274 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 227 - meta.platforms = lib.platforms.unix; 228 - }) {}; 275 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 276 + meta = { 277 + pkgConfigModules = [ ]; 278 + platforms = lib.platforms.unix; 279 + }; 280 + })) {}; 229 281 230 282 # THIS IS A GENERATED FILE. DO NOT EDIT! 231 - fontbh75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 283 + fontbh75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 232 284 pname = "font-bh-75dpi"; 233 285 version = "1.0.4"; 234 286 builder = ./builder.sh; ··· 242 294 buildInputs = [ fontutil ]; 243 295 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 244 296 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 245 - meta.platforms = lib.platforms.unix; 246 - }) {}; 297 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 298 + meta = { 299 + pkgConfigModules = [ ]; 300 + platforms = lib.platforms.unix; 301 + }; 302 + })) {}; 247 303 248 304 # THIS IS A GENERATED FILE. DO NOT EDIT! 249 - fontbhlucidatypewriter100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 305 + fontbhlucidatypewriter100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 250 306 pname = "font-bh-lucidatypewriter-100dpi"; 251 307 version = "1.0.4"; 252 308 builder = ./builder.sh; ··· 260 316 buildInputs = [ fontutil ]; 261 317 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 262 318 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 263 - meta.platforms = lib.platforms.unix; 264 - }) {}; 319 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 320 + meta = { 321 + pkgConfigModules = [ ]; 322 + platforms = lib.platforms.unix; 323 + }; 324 + })) {}; 265 325 266 326 # THIS IS A GENERATED FILE. DO NOT EDIT! 267 - fontbhlucidatypewriter75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 327 + fontbhlucidatypewriter75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 268 328 pname = "font-bh-lucidatypewriter-75dpi"; 269 329 version = "1.0.4"; 270 330 builder = ./builder.sh; ··· 278 338 buildInputs = [ fontutil ]; 279 339 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 280 340 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 281 - meta.platforms = lib.platforms.unix; 282 - }) {}; 341 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 342 + meta = { 343 + pkgConfigModules = [ ]; 344 + platforms = lib.platforms.unix; 345 + }; 346 + })) {}; 283 347 284 348 # THIS IS A GENERATED FILE. DO NOT EDIT! 285 - fontbhttf = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 349 + fontbhttf = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 286 350 pname = "font-bh-ttf"; 287 351 version = "1.0.4"; 288 352 builder = ./builder.sh; ··· 296 360 buildInputs = [ fontutil ]; 297 361 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 298 362 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 299 - meta.platforms = lib.platforms.unix; 300 - }) {}; 363 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 364 + meta = { 365 + pkgConfigModules = [ ]; 366 + platforms = lib.platforms.unix; 367 + }; 368 + })) {}; 301 369 302 370 # THIS IS A GENERATED FILE. DO NOT EDIT! 303 - fontbhtype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 371 + fontbhtype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 304 372 pname = "font-bh-type1"; 305 373 version = "1.0.4"; 306 374 builder = ./builder.sh; ··· 314 382 buildInputs = [ fontutil ]; 315 383 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 316 384 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 317 - meta.platforms = lib.platforms.unix; 318 - }) {}; 385 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 386 + meta = { 387 + pkgConfigModules = [ ]; 388 + platforms = lib.platforms.unix; 389 + }; 390 + })) {}; 319 391 320 392 # THIS IS A GENERATED FILE. DO NOT EDIT! 321 - fontbitstream100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 393 + fontbitstream100dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 322 394 pname = "font-bitstream-100dpi"; 323 395 version = "1.0.4"; 324 396 builder = ./builder.sh; ··· 332 404 buildInputs = [ fontutil ]; 333 405 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 334 406 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 335 - meta.platforms = lib.platforms.unix; 336 - }) {}; 407 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 408 + meta = { 409 + pkgConfigModules = [ ]; 410 + platforms = lib.platforms.unix; 411 + }; 412 + })) {}; 337 413 338 414 # THIS IS A GENERATED FILE. DO NOT EDIT! 339 - fontbitstream75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 415 + fontbitstream75dpi = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 340 416 pname = "font-bitstream-75dpi"; 341 417 version = "1.0.4"; 342 418 builder = ./builder.sh; ··· 350 426 buildInputs = [ fontutil ]; 351 427 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 352 428 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 353 - meta.platforms = lib.platforms.unix; 354 - }) {}; 429 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 430 + meta = { 431 + pkgConfigModules = [ ]; 432 + platforms = lib.platforms.unix; 433 + }; 434 + })) {}; 355 435 356 436 # THIS IS A GENERATED FILE. DO NOT EDIT! 357 - fontbitstreamspeedo = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 437 + fontbitstreamspeedo = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 358 438 pname = "font-bitstream-speedo"; 359 439 version = "1.0.2"; 360 440 builder = ./builder.sh; ··· 368 448 buildInputs = [ fontutil ]; 369 449 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 370 450 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 371 - meta.platforms = lib.platforms.unix; 372 - }) {}; 451 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 452 + meta = { 453 + pkgConfigModules = [ ]; 454 + platforms = lib.platforms.unix; 455 + }; 456 + })) {}; 373 457 374 458 # THIS IS A GENERATED FILE. DO NOT EDIT! 375 - fontbitstreamtype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 459 + fontbitstreamtype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 376 460 pname = "font-bitstream-type1"; 377 461 version = "1.0.4"; 378 462 builder = ./builder.sh; ··· 386 470 buildInputs = [ fontutil ]; 387 471 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 388 472 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 389 - meta.platforms = lib.platforms.unix; 390 - }) {}; 473 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 474 + meta = { 475 + pkgConfigModules = [ ]; 476 + platforms = lib.platforms.unix; 477 + }; 478 + })) {}; 391 479 392 480 # THIS IS A GENERATED FILE. DO NOT EDIT! 393 - fontcronyxcyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 481 + fontcronyxcyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 394 482 pname = "font-cronyx-cyrillic"; 395 483 version = "1.0.4"; 396 484 builder = ./builder.sh; ··· 404 492 buildInputs = [ fontutil ]; 405 493 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 406 494 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 407 - meta.platforms = lib.platforms.unix; 408 - }) {}; 495 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 496 + meta = { 497 + pkgConfigModules = [ ]; 498 + platforms = lib.platforms.unix; 499 + }; 500 + })) {}; 409 501 410 502 # THIS IS A GENERATED FILE. DO NOT EDIT! 411 - fontcursormisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 503 + fontcursormisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 412 504 pname = "font-cursor-misc"; 413 505 version = "1.0.4"; 414 506 builder = ./builder.sh; ··· 422 514 buildInputs = [ fontutil ]; 423 515 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 424 516 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 425 - meta.platforms = lib.platforms.unix; 426 - }) {}; 517 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 518 + meta = { 519 + pkgConfigModules = [ ]; 520 + platforms = lib.platforms.unix; 521 + }; 522 + })) {}; 427 523 428 524 # THIS IS A GENERATED FILE. DO NOT EDIT! 429 - fontdaewoomisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 525 + fontdaewoomisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 430 526 pname = "font-daewoo-misc"; 431 527 version = "1.0.4"; 432 528 builder = ./builder.sh; ··· 440 536 buildInputs = [ fontutil ]; 441 537 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 442 538 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 443 - meta.platforms = lib.platforms.unix; 444 - }) {}; 539 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 540 + meta = { 541 + pkgConfigModules = [ ]; 542 + platforms = lib.platforms.unix; 543 + }; 544 + })) {}; 445 545 446 546 # THIS IS A GENERATED FILE. DO NOT EDIT! 447 - fontdecmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 547 + fontdecmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 448 548 pname = "font-dec-misc"; 449 549 version = "1.0.4"; 450 550 builder = ./builder.sh; ··· 458 558 buildInputs = [ fontutil ]; 459 559 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 460 560 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 461 - meta.platforms = lib.platforms.unix; 462 - }) {}; 561 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 562 + meta = { 563 + pkgConfigModules = [ ]; 564 + platforms = lib.platforms.unix; 565 + }; 566 + })) {}; 463 567 464 568 # THIS IS A GENERATED FILE. DO NOT EDIT! 465 - fontibmtype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 569 + fontibmtype1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 466 570 pname = "font-ibm-type1"; 467 571 version = "1.0.4"; 468 572 builder = ./builder.sh; ··· 476 580 buildInputs = [ fontutil ]; 477 581 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 478 582 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 479 - meta.platforms = lib.platforms.unix; 480 - }) {}; 583 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 584 + meta = { 585 + pkgConfigModules = [ ]; 586 + platforms = lib.platforms.unix; 587 + }; 588 + })) {}; 481 589 482 590 # THIS IS A GENERATED FILE. DO NOT EDIT! 483 - fontisasmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 591 + fontisasmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 484 592 pname = "font-isas-misc"; 485 593 version = "1.0.4"; 486 594 builder = ./builder.sh; ··· 494 602 buildInputs = [ fontutil ]; 495 603 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 496 604 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 497 - meta.platforms = lib.platforms.unix; 498 - }) {}; 605 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 606 + meta = { 607 + pkgConfigModules = [ ]; 608 + platforms = lib.platforms.unix; 609 + }; 610 + })) {}; 499 611 500 612 # THIS IS A GENERATED FILE. DO NOT EDIT! 501 - fontjismisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 613 + fontjismisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 502 614 pname = "font-jis-misc"; 503 615 version = "1.0.4"; 504 616 builder = ./builder.sh; ··· 512 624 buildInputs = [ fontutil ]; 513 625 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 514 626 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 515 - meta.platforms = lib.platforms.unix; 516 - }) {}; 627 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 628 + meta = { 629 + pkgConfigModules = [ ]; 630 + platforms = lib.platforms.unix; 631 + }; 632 + })) {}; 517 633 518 634 # THIS IS A GENERATED FILE. DO NOT EDIT! 519 - fontmicromisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 635 + fontmicromisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 520 636 pname = "font-micro-misc"; 521 637 version = "1.0.4"; 522 638 builder = ./builder.sh; ··· 530 646 buildInputs = [ fontutil ]; 531 647 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 532 648 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 533 - meta.platforms = lib.platforms.unix; 534 - }) {}; 649 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 650 + meta = { 651 + pkgConfigModules = [ ]; 652 + platforms = lib.platforms.unix; 653 + }; 654 + })) {}; 535 655 536 656 # THIS IS A GENERATED FILE. DO NOT EDIT! 537 - fontmisccyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 657 + fontmisccyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 538 658 pname = "font-misc-cyrillic"; 539 659 version = "1.0.4"; 540 660 builder = ./builder.sh; ··· 548 668 buildInputs = [ fontutil ]; 549 669 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 550 670 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 551 - meta.platforms = lib.platforms.unix; 552 - }) {}; 671 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 672 + meta = { 673 + pkgConfigModules = [ ]; 674 + platforms = lib.platforms.unix; 675 + }; 676 + })) {}; 553 677 554 678 # THIS IS A GENERATED FILE. DO NOT EDIT! 555 - fontmiscethiopic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 679 + fontmiscethiopic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 556 680 pname = "font-misc-ethiopic"; 557 681 version = "1.0.5"; 558 682 builder = ./builder.sh; ··· 566 690 buildInputs = [ fontutil ]; 567 691 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 568 692 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 569 - meta.platforms = lib.platforms.unix; 570 - }) {}; 693 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 694 + meta = { 695 + pkgConfigModules = [ ]; 696 + platforms = lib.platforms.unix; 697 + }; 698 + })) {}; 571 699 572 700 # THIS IS A GENERATED FILE. DO NOT EDIT! 573 - fontmiscmeltho = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 701 + fontmiscmeltho = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 574 702 pname = "font-misc-meltho"; 575 703 version = "1.0.4"; 576 704 builder = ./builder.sh; ··· 584 712 buildInputs = [ fontutil ]; 585 713 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 586 714 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 587 - meta.platforms = lib.platforms.unix; 588 - }) {}; 715 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 716 + meta = { 717 + pkgConfigModules = [ ]; 718 + platforms = lib.platforms.unix; 719 + }; 720 + })) {}; 589 721 590 722 # THIS IS A GENERATED FILE. DO NOT EDIT! 591 - fontmiscmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 723 + fontmiscmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 592 724 pname = "font-misc-misc"; 593 725 version = "1.1.3"; 594 726 builder = ./builder.sh; ··· 602 734 buildInputs = [ fontutil ]; 603 735 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 604 736 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 605 - meta.platforms = lib.platforms.unix; 606 - }) {}; 737 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 738 + meta = { 739 + pkgConfigModules = [ ]; 740 + platforms = lib.platforms.unix; 741 + }; 742 + })) {}; 607 743 608 744 # THIS IS A GENERATED FILE. DO NOT EDIT! 609 - fontmuttmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 745 + fontmuttmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 610 746 pname = "font-mutt-misc"; 611 747 version = "1.0.4"; 612 748 builder = ./builder.sh; ··· 620 756 buildInputs = [ fontutil ]; 621 757 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 622 758 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 623 - meta.platforms = lib.platforms.unix; 624 - }) {}; 759 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 760 + meta = { 761 + pkgConfigModules = [ ]; 762 + platforms = lib.platforms.unix; 763 + }; 764 + })) {}; 625 765 626 766 # THIS IS A GENERATED FILE. DO NOT EDIT! 627 - fontschumachermisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 767 + fontschumachermisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 628 768 pname = "font-schumacher-misc"; 629 769 version = "1.1.3"; 630 770 builder = ./builder.sh; ··· 638 778 buildInputs = [ fontutil ]; 639 779 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 640 780 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 641 - meta.platforms = lib.platforms.unix; 642 - }) {}; 781 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 782 + meta = { 783 + pkgConfigModules = [ ]; 784 + platforms = lib.platforms.unix; 785 + }; 786 + })) {}; 643 787 644 788 # THIS IS A GENERATED FILE. DO NOT EDIT! 645 - fontscreencyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 789 + fontscreencyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 646 790 pname = "font-screen-cyrillic"; 647 791 version = "1.0.5"; 648 792 builder = ./builder.sh; ··· 656 800 buildInputs = [ fontutil ]; 657 801 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 658 802 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 659 - meta.platforms = lib.platforms.unix; 660 - }) {}; 803 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 804 + meta = { 805 + pkgConfigModules = [ ]; 806 + platforms = lib.platforms.unix; 807 + }; 808 + })) {}; 661 809 662 810 # THIS IS A GENERATED FILE. DO NOT EDIT! 663 - fontsonymisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 811 + fontsonymisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 664 812 pname = "font-sony-misc"; 665 813 version = "1.0.4"; 666 814 builder = ./builder.sh; ··· 674 822 buildInputs = [ fontutil ]; 675 823 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 676 824 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 677 - meta.platforms = lib.platforms.unix; 678 - }) {}; 825 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 826 + meta = { 827 + pkgConfigModules = [ ]; 828 + platforms = lib.platforms.unix; 829 + }; 830 + })) {}; 679 831 680 832 # THIS IS A GENERATED FILE. DO NOT EDIT! 681 - fontsunmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 833 + fontsunmisc = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 682 834 pname = "font-sun-misc"; 683 835 version = "1.0.4"; 684 836 builder = ./builder.sh; ··· 692 844 buildInputs = [ fontutil ]; 693 845 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 694 846 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 695 - meta.platforms = lib.platforms.unix; 696 - }) {}; 847 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 848 + meta = { 849 + pkgConfigModules = [ ]; 850 + platforms = lib.platforms.unix; 851 + }; 852 + })) {}; 697 853 698 854 # THIS IS A GENERATED FILE. DO NOT EDIT! 699 - fonttosfnt = callPackage ({ stdenv, pkg-config, fetchurl, libfontenc, freetype, xorgproto }: stdenv.mkDerivation { 855 + fonttosfnt = callPackage ({ stdenv, pkg-config, fetchurl, libfontenc, freetype, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 700 856 pname = "fonttosfnt"; 701 857 version = "1.2.3"; 702 858 builder = ./builder.sh; ··· 708 864 strictDeps = true; 709 865 nativeBuildInputs = [ pkg-config ]; 710 866 buildInputs = [ libfontenc freetype xorgproto ]; 711 - meta.platforms = lib.platforms.unix; 712 - }) {}; 867 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 868 + meta = { 869 + pkgConfigModules = [ ]; 870 + platforms = lib.platforms.unix; 871 + }; 872 + })) {}; 713 873 714 874 # THIS IS A GENERATED FILE. DO NOT EDIT! 715 - fontutil = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 875 + fontutil = callPackage ({ stdenv, pkg-config, fetchurl, testers }: stdenv.mkDerivation (finalAttrs: { 716 876 pname = "font-util"; 717 877 version = "1.4.1"; 718 878 builder = ./builder.sh; ··· 724 884 strictDeps = true; 725 885 nativeBuildInputs = [ pkg-config ]; 726 886 buildInputs = [ ]; 727 - meta.platforms = lib.platforms.unix; 728 - }) {}; 887 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 888 + meta = { 889 + pkgConfigModules = [ "fontutil" ]; 890 + platforms = lib.platforms.unix; 891 + }; 892 + })) {}; 729 893 730 894 # THIS IS A GENERATED FILE. DO NOT EDIT! 731 - fontwinitzkicyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale }: stdenv.mkDerivation { 895 + fontwinitzkicyrillic = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, bdftopcf, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 732 896 pname = "font-winitzki-cyrillic"; 733 897 version = "1.0.4"; 734 898 builder = ./builder.sh; ··· 742 906 buildInputs = [ fontutil ]; 743 907 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 744 908 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 745 - meta.platforms = lib.platforms.unix; 746 - }) {}; 909 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 910 + meta = { 911 + pkgConfigModules = [ ]; 912 + platforms = lib.platforms.unix; 913 + }; 914 + })) {}; 747 915 748 916 # THIS IS A GENERATED FILE. DO NOT EDIT! 749 - fontxfree86type1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale }: stdenv.mkDerivation { 917 + fontxfree86type1 = callPackage ({ stdenv, pkg-config, fetchurl, fontutil, mkfontscale, testers }: stdenv.mkDerivation (finalAttrs: { 750 918 pname = "font-xfree86-type1"; 751 919 version = "1.0.5"; 752 920 builder = ./builder.sh; ··· 760 928 buildInputs = [ fontutil ]; 761 929 configureFlags = [ "--with-fontrootdir=$(out)/lib/X11/fonts" ]; 762 930 postPatch = ''substituteInPlace configure --replace 'MAPFILES_PATH=`pkg-config' 'MAPFILES_PATH=`$PKG_CONFIG' ''; 763 - meta.platforms = lib.platforms.unix; 764 - }) {}; 931 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 932 + meta = { 933 + pkgConfigModules = [ ]; 934 + platforms = lib.platforms.unix; 935 + }; 936 + })) {}; 765 937 766 938 # THIS IS A GENERATED FILE. DO NOT EDIT! 767 - gccmakedep = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 939 + gccmakedep = callPackage ({ stdenv, pkg-config, fetchurl, testers }: stdenv.mkDerivation (finalAttrs: { 768 940 pname = "gccmakedep"; 769 941 version = "1.0.3"; 770 942 builder = ./builder.sh; ··· 776 948 strictDeps = true; 777 949 nativeBuildInputs = [ pkg-config ]; 778 950 buildInputs = [ ]; 779 - meta.platforms = lib.platforms.unix; 780 - }) {}; 951 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 952 + meta = { 953 + pkgConfigModules = [ ]; 954 + platforms = lib.platforms.unix; 955 + }; 956 + })) {}; 781 957 782 958 # THIS IS A GENERATED FILE. DO NOT EDIT! 783 - iceauth = callPackage ({ stdenv, pkg-config, fetchurl, libICE, xorgproto }: stdenv.mkDerivation { 959 + iceauth = callPackage ({ stdenv, pkg-config, fetchurl, libICE, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 784 960 pname = "iceauth"; 785 961 version = "1.0.9"; 786 962 builder = ./builder.sh; ··· 792 968 strictDeps = true; 793 969 nativeBuildInputs = [ pkg-config ]; 794 970 buildInputs = [ libICE xorgproto ]; 795 - meta.platforms = lib.platforms.unix; 796 - }) {}; 971 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 972 + meta = { 973 + pkgConfigModules = [ ]; 974 + platforms = lib.platforms.unix; 975 + }; 976 + })) {}; 797 977 798 978 # THIS IS A GENERATED FILE. DO NOT EDIT! 799 - ico = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 979 + ico = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 800 980 pname = "ico"; 801 981 version = "1.0.6"; 802 982 builder = ./builder.sh; ··· 808 988 strictDeps = true; 809 989 nativeBuildInputs = [ pkg-config ]; 810 990 buildInputs = [ libX11 xorgproto ]; 811 - meta.platforms = lib.platforms.unix; 812 - }) {}; 991 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 992 + meta = { 993 + pkgConfigModules = [ ]; 994 + platforms = lib.platforms.unix; 995 + }; 996 + })) {}; 813 997 814 998 # THIS IS A GENERATED FILE. DO NOT EDIT! 815 - imake = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto }: stdenv.mkDerivation { 999 + imake = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 816 1000 pname = "imake"; 817 1001 version = "1.0.9"; 818 1002 builder = ./builder.sh; ··· 824 1008 strictDeps = true; 825 1009 nativeBuildInputs = [ pkg-config ]; 826 1010 buildInputs = [ xorgproto ]; 827 - meta.platforms = lib.platforms.unix; 828 - }) {}; 1011 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1012 + meta = { 1013 + pkgConfigModules = [ ]; 1014 + platforms = lib.platforms.unix; 1015 + }; 1016 + })) {}; 829 1017 830 1018 # THIS IS A GENERATED FILE. DO NOT EDIT! 831 - libAppleWM = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext }: stdenv.mkDerivation { 1019 + libAppleWM = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, testers }: stdenv.mkDerivation (finalAttrs: { 832 1020 pname = "libAppleWM"; 833 1021 version = "1.4.1"; 834 1022 builder = ./builder.sh; ··· 840 1028 strictDeps = true; 841 1029 nativeBuildInputs = [ pkg-config ]; 842 1030 buildInputs = [ xorgproto libX11 libXext ]; 843 - meta.platforms = lib.platforms.unix; 844 - }) {}; 1031 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1032 + meta = { 1033 + pkgConfigModules = [ "applewm" ]; 1034 + platforms = lib.platforms.unix; 1035 + }; 1036 + })) {}; 845 1037 846 1038 # THIS IS A GENERATED FILE. DO NOT EDIT! 847 - libFS = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xtrans }: stdenv.mkDerivation { 1039 + libFS = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xtrans, testers }: stdenv.mkDerivation (finalAttrs: { 848 1040 pname = "libFS"; 849 1041 version = "1.0.9"; 850 1042 builder = ./builder.sh; ··· 856 1048 strictDeps = true; 857 1049 nativeBuildInputs = [ pkg-config ]; 858 1050 buildInputs = [ xorgproto xtrans ]; 859 - meta.platforms = lib.platforms.unix; 860 - }) {}; 1051 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1052 + meta = { 1053 + pkgConfigModules = [ "libfs" ]; 1054 + platforms = lib.platforms.unix; 1055 + }; 1056 + })) {}; 861 1057 862 1058 # THIS IS A GENERATED FILE. DO NOT EDIT! 863 - libICE = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xtrans }: stdenv.mkDerivation { 1059 + libICE = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xtrans, testers }: stdenv.mkDerivation (finalAttrs: { 864 1060 pname = "libICE"; 865 1061 version = "1.1.1"; 866 1062 builder = ./builder.sh; ··· 872 1068 strictDeps = true; 873 1069 nativeBuildInputs = [ pkg-config ]; 874 1070 buildInputs = [ xorgproto xtrans ]; 875 - meta.platforms = lib.platforms.unix; 876 - }) {}; 1071 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1072 + meta = { 1073 + pkgConfigModules = [ "ice" ]; 1074 + platforms = lib.platforms.unix; 1075 + }; 1076 + })) {}; 877 1077 878 1078 # THIS IS A GENERATED FILE. DO NOT EDIT! 879 - libSM = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libuuid, xorgproto, xtrans }: stdenv.mkDerivation { 1079 + libSM = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libuuid, xorgproto, xtrans, testers }: stdenv.mkDerivation (finalAttrs: { 880 1080 pname = "libSM"; 881 1081 version = "1.2.4"; 882 1082 builder = ./builder.sh; ··· 888 1088 strictDeps = true; 889 1089 nativeBuildInputs = [ pkg-config ]; 890 1090 buildInputs = [ libICE libuuid xorgproto xtrans ]; 891 - meta.platforms = lib.platforms.unix; 892 - }) {}; 1091 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1092 + meta = { 1093 + pkgConfigModules = [ "sm" ]; 1094 + platforms = lib.platforms.unix; 1095 + }; 1096 + })) {}; 893 1097 894 1098 # THIS IS A GENERATED FILE. DO NOT EDIT! 895 - libWindowsWM = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext }: stdenv.mkDerivation { 1099 + libWindowsWM = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, testers }: stdenv.mkDerivation (finalAttrs: { 896 1100 pname = "libWindowsWM"; 897 1101 version = "1.0.1"; 898 1102 builder = ./builder.sh; ··· 904 1108 strictDeps = true; 905 1109 nativeBuildInputs = [ pkg-config ]; 906 1110 buildInputs = [ xorgproto libX11 libXext ]; 907 - meta.platforms = lib.platforms.unix; 908 - }) {}; 1111 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1112 + meta = { 1113 + pkgConfigModules = [ "windowswm" ]; 1114 + platforms = lib.platforms.unix; 1115 + }; 1116 + })) {}; 909 1117 910 1118 # THIS IS A GENERATED FILE. DO NOT EDIT! 911 - libX11 = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpthreadstubs, libxcb, xtrans }: stdenv.mkDerivation { 1119 + libX11 = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpthreadstubs, libxcb, xtrans, testers }: stdenv.mkDerivation (finalAttrs: { 912 1120 pname = "libX11"; 913 1121 version = "1.8.7"; 914 1122 builder = ./builder.sh; ··· 920 1128 strictDeps = true; 921 1129 nativeBuildInputs = [ pkg-config ]; 922 1130 buildInputs = [ xorgproto libpthreadstubs libxcb xtrans ]; 923 - meta.platforms = lib.platforms.unix; 924 - }) {}; 1131 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1132 + meta = { 1133 + pkgConfigModules = [ "x11" "x11-xcb" ]; 1134 + platforms = lib.platforms.unix; 1135 + }; 1136 + })) {}; 925 1137 926 1138 # THIS IS A GENERATED FILE. DO NOT EDIT! 927 - libXScrnSaver = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext }: stdenv.mkDerivation { 1139 + libXScrnSaver = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, testers }: stdenv.mkDerivation (finalAttrs: { 928 1140 pname = "libXScrnSaver"; 929 1141 version = "1.2.4"; 930 1142 builder = ./builder.sh; ··· 936 1148 strictDeps = true; 937 1149 nativeBuildInputs = [ pkg-config ]; 938 1150 buildInputs = [ xorgproto libX11 libXext ]; 939 - meta.platforms = lib.platforms.unix; 940 - }) {}; 1151 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1152 + meta = { 1153 + pkgConfigModules = [ "xscrnsaver" ]; 1154 + platforms = lib.platforms.unix; 1155 + }; 1156 + })) {}; 941 1157 942 1158 # THIS IS A GENERATED FILE. DO NOT EDIT! 943 - libXTrap = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXt }: stdenv.mkDerivation { 1159 + libXTrap = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXt, testers }: stdenv.mkDerivation (finalAttrs: { 944 1160 pname = "libXTrap"; 945 1161 version = "1.0.1"; 946 1162 builder = ./builder.sh; ··· 952 1168 strictDeps = true; 953 1169 nativeBuildInputs = [ pkg-config ]; 954 1170 buildInputs = [ xorgproto libX11 libXext libXt ]; 955 - meta.platforms = lib.platforms.unix; 956 - }) {}; 1171 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1172 + meta = { 1173 + pkgConfigModules = [ "xtrap" ]; 1174 + platforms = lib.platforms.unix; 1175 + }; 1176 + })) {}; 957 1177 958 1178 # THIS IS A GENERATED FILE. DO NOT EDIT! 959 - libXau = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto }: stdenv.mkDerivation { 1179 + libXau = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 960 1180 pname = "libXau"; 961 1181 version = "1.0.11"; 962 1182 builder = ./builder.sh; ··· 968 1188 strictDeps = true; 969 1189 nativeBuildInputs = [ pkg-config ]; 970 1190 buildInputs = [ xorgproto ]; 971 - meta.platforms = lib.platforms.unix; 972 - }) {}; 1191 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1192 + meta = { 1193 + pkgConfigModules = [ "xau" ]; 1194 + platforms = lib.platforms.unix; 1195 + }; 1196 + })) {}; 973 1197 974 1198 # THIS IS A GENERATED FILE. DO NOT EDIT! 975 - libXaw = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto, libXmu, libXpm, libXt }: stdenv.mkDerivation { 1199 + libXaw = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto, libXmu, libXpm, libXt, testers }: stdenv.mkDerivation (finalAttrs: { 976 1200 pname = "libXaw"; 977 1201 version = "1.0.15"; 978 1202 builder = ./builder.sh; ··· 984 1208 strictDeps = true; 985 1209 nativeBuildInputs = [ pkg-config ]; 986 1210 buildInputs = [ libX11 libXext xorgproto libXmu libXpm libXt ]; 987 - meta.platforms = lib.platforms.unix; 988 - }) {}; 1211 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1212 + meta = { 1213 + pkgConfigModules = [ "xaw6" "xaw7" ]; 1214 + platforms = lib.platforms.unix; 1215 + }; 1216 + })) {}; 989 1217 990 1218 # THIS IS A GENERATED FILE. DO NOT EDIT! 991 - libXcomposite = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXfixes }: stdenv.mkDerivation { 1219 + libXcomposite = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXfixes, testers }: stdenv.mkDerivation (finalAttrs: { 992 1220 pname = "libXcomposite"; 993 1221 version = "0.4.6"; 994 1222 builder = ./builder.sh; ··· 1000 1228 strictDeps = true; 1001 1229 nativeBuildInputs = [ pkg-config ]; 1002 1230 buildInputs = [ xorgproto libX11 libXfixes ]; 1003 - meta.platforms = lib.platforms.unix; 1004 - }) {}; 1231 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1232 + meta = { 1233 + pkgConfigModules = [ "xcomposite" ]; 1234 + platforms = lib.platforms.unix; 1235 + }; 1236 + })) {}; 1005 1237 1006 1238 # THIS IS A GENERATED FILE. DO NOT EDIT! 1007 - libXcursor = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXfixes, libXrender }: stdenv.mkDerivation { 1239 + libXcursor = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXfixes, libXrender, testers }: stdenv.mkDerivation (finalAttrs: { 1008 1240 pname = "libXcursor"; 1009 1241 version = "1.2.1"; 1010 1242 builder = ./builder.sh; ··· 1016 1248 strictDeps = true; 1017 1249 nativeBuildInputs = [ pkg-config ]; 1018 1250 buildInputs = [ xorgproto libX11 libXfixes libXrender ]; 1019 - meta.platforms = lib.platforms.unix; 1020 - }) {}; 1251 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1252 + meta = { 1253 + pkgConfigModules = [ "xcursor" ]; 1254 + platforms = lib.platforms.unix; 1255 + }; 1256 + })) {}; 1021 1257 1022 1258 # THIS IS A GENERATED FILE. DO NOT EDIT! 1023 - libXdamage = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXfixes }: stdenv.mkDerivation { 1259 + libXdamage = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXfixes, testers }: stdenv.mkDerivation (finalAttrs: { 1024 1260 pname = "libXdamage"; 1025 1261 version = "1.1.6"; 1026 1262 builder = ./builder.sh; ··· 1032 1268 strictDeps = true; 1033 1269 nativeBuildInputs = [ pkg-config ]; 1034 1270 buildInputs = [ xorgproto libX11 libXfixes ]; 1035 - meta.platforms = lib.platforms.unix; 1036 - }) {}; 1271 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1272 + meta = { 1273 + pkgConfigModules = [ "xdamage" ]; 1274 + platforms = lib.platforms.unix; 1275 + }; 1276 + })) {}; 1037 1277 1038 1278 # THIS IS A GENERATED FILE. DO NOT EDIT! 1039 - libXdmcp = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto }: stdenv.mkDerivation { 1279 + libXdmcp = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 1040 1280 pname = "libXdmcp"; 1041 1281 version = "1.1.4"; 1042 1282 builder = ./builder.sh; ··· 1048 1288 strictDeps = true; 1049 1289 nativeBuildInputs = [ pkg-config ]; 1050 1290 buildInputs = [ xorgproto ]; 1051 - meta.platforms = lib.platforms.unix; 1052 - }) {}; 1291 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1292 + meta = { 1293 + pkgConfigModules = [ "xdmcp" ]; 1294 + platforms = lib.platforms.unix; 1295 + }; 1296 + })) {}; 1053 1297 1054 1298 # THIS IS A GENERATED FILE. DO NOT EDIT! 1055 - libXext = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 1299 + libXext = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 1056 1300 pname = "libXext"; 1057 1301 version = "1.3.5"; 1058 1302 builder = ./builder.sh; ··· 1064 1308 strictDeps = true; 1065 1309 nativeBuildInputs = [ pkg-config ]; 1066 1310 buildInputs = [ libX11 xorgproto ]; 1067 - meta.platforms = lib.platforms.unix; 1068 - }) {}; 1311 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1312 + meta = { 1313 + pkgConfigModules = [ "xext" ]; 1314 + platforms = lib.platforms.unix; 1315 + }; 1316 + })) {}; 1069 1317 1070 1318 # THIS IS A GENERATED FILE. DO NOT EDIT! 1071 - libXfixes = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11 }: stdenv.mkDerivation { 1319 + libXfixes = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, testers }: stdenv.mkDerivation (finalAttrs: { 1072 1320 pname = "libXfixes"; 1073 1321 version = "6.0.1"; 1074 1322 builder = ./builder.sh; ··· 1080 1328 strictDeps = true; 1081 1329 nativeBuildInputs = [ pkg-config ]; 1082 1330 buildInputs = [ xorgproto libX11 ]; 1083 - meta.platforms = lib.platforms.unix; 1084 - }) {}; 1331 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1332 + meta = { 1333 + pkgConfigModules = [ "xfixes" ]; 1334 + platforms = lib.platforms.unix; 1335 + }; 1336 + })) {}; 1085 1337 1086 1338 # THIS IS A GENERATED FILE. DO NOT EDIT! 1087 - libXfont = callPackage ({ stdenv, pkg-config, fetchurl, libfontenc, xorgproto, freetype, xtrans, zlib }: stdenv.mkDerivation { 1339 + libXfont = callPackage ({ stdenv, pkg-config, fetchurl, libfontenc, xorgproto, freetype, xtrans, zlib, testers }: stdenv.mkDerivation (finalAttrs: { 1088 1340 pname = "libXfont"; 1089 1341 version = "1.5.4"; 1090 1342 builder = ./builder.sh; ··· 1096 1348 strictDeps = true; 1097 1349 nativeBuildInputs = [ pkg-config ]; 1098 1350 buildInputs = [ libfontenc xorgproto freetype xtrans zlib ]; 1099 - meta.platforms = lib.platforms.unix; 1100 - }) {}; 1351 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1352 + meta = { 1353 + pkgConfigModules = [ "xfont" ]; 1354 + platforms = lib.platforms.unix; 1355 + }; 1356 + })) {}; 1101 1357 1102 1358 # THIS IS A GENERATED FILE. DO NOT EDIT! 1103 - libXfont2 = callPackage ({ stdenv, pkg-config, fetchurl, libfontenc, xorgproto, freetype, xtrans, zlib }: stdenv.mkDerivation { 1359 + libXfont2 = callPackage ({ stdenv, pkg-config, fetchurl, libfontenc, xorgproto, freetype, xtrans, zlib, testers }: stdenv.mkDerivation (finalAttrs: { 1104 1360 pname = "libXfont2"; 1105 1361 version = "2.0.6"; 1106 1362 builder = ./builder.sh; ··· 1112 1368 strictDeps = true; 1113 1369 nativeBuildInputs = [ pkg-config ]; 1114 1370 buildInputs = [ libfontenc xorgproto freetype xtrans zlib ]; 1115 - meta.platforms = lib.platforms.unix; 1116 - }) {}; 1371 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1372 + meta = { 1373 + pkgConfigModules = [ "xfont2" ]; 1374 + platforms = lib.platforms.unix; 1375 + }; 1376 + })) {}; 1117 1377 1118 1378 # THIS IS A GENERATED FILE. DO NOT EDIT! 1119 - libXft = callPackage ({ stdenv, pkg-config, fetchurl, fontconfig, freetype, libX11, xorgproto, libXrender }: stdenv.mkDerivation { 1379 + libXft = callPackage ({ stdenv, pkg-config, fetchurl, fontconfig, freetype, libX11, xorgproto, libXrender, testers }: stdenv.mkDerivation (finalAttrs: { 1120 1380 pname = "libXft"; 1121 1381 version = "2.3.8"; 1122 1382 builder = ./builder.sh; ··· 1128 1388 strictDeps = true; 1129 1389 nativeBuildInputs = [ pkg-config ]; 1130 1390 buildInputs = [ fontconfig freetype libX11 xorgproto libXrender ]; 1131 - meta.platforms = lib.platforms.unix; 1132 - }) {}; 1391 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1392 + meta = { 1393 + pkgConfigModules = [ "xft" ]; 1394 + platforms = lib.platforms.unix; 1395 + }; 1396 + })) {}; 1133 1397 1134 1398 # THIS IS A GENERATED FILE. DO NOT EDIT! 1135 - libXi = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXfixes }: stdenv.mkDerivation { 1399 + libXi = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXfixes, testers }: stdenv.mkDerivation (finalAttrs: { 1136 1400 pname = "libXi"; 1137 1401 version = "1.8.1"; 1138 1402 builder = ./builder.sh; ··· 1144 1408 strictDeps = true; 1145 1409 nativeBuildInputs = [ pkg-config ]; 1146 1410 buildInputs = [ xorgproto libX11 libXext libXfixes ]; 1147 - meta.platforms = lib.platforms.unix; 1148 - }) {}; 1411 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1412 + meta = { 1413 + pkgConfigModules = [ "xi" ]; 1414 + platforms = lib.platforms.unix; 1415 + }; 1416 + })) {}; 1149 1417 1150 1418 # THIS IS A GENERATED FILE. DO NOT EDIT! 1151 - libXinerama = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto }: stdenv.mkDerivation { 1419 + libXinerama = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 1152 1420 pname = "libXinerama"; 1153 1421 version = "1.1.5"; 1154 1422 builder = ./builder.sh; ··· 1160 1428 strictDeps = true; 1161 1429 nativeBuildInputs = [ pkg-config ]; 1162 1430 buildInputs = [ libX11 libXext xorgproto ]; 1163 - meta.platforms = lib.platforms.unix; 1164 - }) {}; 1431 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1432 + meta = { 1433 + pkgConfigModules = [ "xinerama" ]; 1434 + platforms = lib.platforms.unix; 1435 + }; 1436 + })) {}; 1165 1437 1166 1438 # THIS IS A GENERATED FILE. DO NOT EDIT! 1167 - libXmu = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto, libXt }: stdenv.mkDerivation { 1439 + libXmu = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto, libXt, testers }: stdenv.mkDerivation (finalAttrs: { 1168 1440 pname = "libXmu"; 1169 1441 version = "1.1.4"; 1170 1442 builder = ./builder.sh; ··· 1176 1448 strictDeps = true; 1177 1449 nativeBuildInputs = [ pkg-config ]; 1178 1450 buildInputs = [ libX11 libXext xorgproto libXt ]; 1179 - meta.platforms = lib.platforms.unix; 1180 - }) {}; 1451 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1452 + meta = { 1453 + pkgConfigModules = [ "xmuu" "xmu" ]; 1454 + platforms = lib.platforms.unix; 1455 + }; 1456 + })) {}; 1181 1457 1182 1458 # THIS IS A GENERATED FILE. DO NOT EDIT! 1183 - libXp = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXau, libXext }: stdenv.mkDerivation { 1459 + libXp = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXau, libXext, testers }: stdenv.mkDerivation (finalAttrs: { 1184 1460 pname = "libXp"; 1185 1461 version = "1.0.4"; 1186 1462 builder = ./builder.sh; ··· 1192 1468 strictDeps = true; 1193 1469 nativeBuildInputs = [ pkg-config ]; 1194 1470 buildInputs = [ xorgproto libX11 libXau libXext ]; 1195 - meta.platforms = lib.platforms.unix; 1196 - }) {}; 1471 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1472 + meta = { 1473 + pkgConfigModules = [ "xp" ]; 1474 + platforms = lib.platforms.unix; 1475 + }; 1476 + })) {}; 1197 1477 1198 1478 # THIS IS A GENERATED FILE. DO NOT EDIT! 1199 - libXpm = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto, libXt, gettext }: stdenv.mkDerivation { 1479 + libXpm = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto, libXt, gettext, testers }: stdenv.mkDerivation (finalAttrs: { 1200 1480 pname = "libXpm"; 1201 1481 version = "3.5.17"; 1202 1482 builder = ./builder.sh; ··· 1208 1488 strictDeps = true; 1209 1489 nativeBuildInputs = [ pkg-config gettext ]; 1210 1490 buildInputs = [ libX11 libXext xorgproto libXt ]; 1211 - meta.platforms = lib.platforms.unix; 1212 - }) {}; 1491 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1492 + meta = { 1493 + pkgConfigModules = [ "xpm" ]; 1494 + platforms = lib.platforms.unix; 1495 + }; 1496 + })) {}; 1213 1497 1214 1498 # THIS IS A GENERATED FILE. DO NOT EDIT! 1215 - libXpresent = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXfixes, libXrandr }: stdenv.mkDerivation { 1499 + libXpresent = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXfixes, libXrandr, testers }: stdenv.mkDerivation (finalAttrs: { 1216 1500 pname = "libXpresent"; 1217 1501 version = "1.0.1"; 1218 1502 builder = ./builder.sh; ··· 1224 1508 strictDeps = true; 1225 1509 nativeBuildInputs = [ pkg-config ]; 1226 1510 buildInputs = [ xorgproto libX11 libXext libXfixes libXrandr ]; 1227 - meta.platforms = lib.platforms.unix; 1228 - }) {}; 1511 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1512 + meta = { 1513 + pkgConfigModules = [ "xpresent" ]; 1514 + platforms = lib.platforms.unix; 1515 + }; 1516 + })) {}; 1229 1517 1230 1518 # THIS IS A GENERATED FILE. DO NOT EDIT! 1231 - libXrandr = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXrender }: stdenv.mkDerivation { 1519 + libXrandr = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXrender, testers }: stdenv.mkDerivation (finalAttrs: { 1232 1520 pname = "libXrandr"; 1233 1521 version = "1.5.3"; 1234 1522 builder = ./builder.sh; ··· 1240 1528 strictDeps = true; 1241 1529 nativeBuildInputs = [ pkg-config ]; 1242 1530 buildInputs = [ xorgproto libX11 libXext libXrender ]; 1243 - meta.platforms = lib.platforms.unix; 1244 - }) {}; 1531 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1532 + meta = { 1533 + pkgConfigModules = [ "xrandr" ]; 1534 + platforms = lib.platforms.unix; 1535 + }; 1536 + })) {}; 1245 1537 1246 1538 # THIS IS A GENERATED FILE. DO NOT EDIT! 1247 - libXrender = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11 }: stdenv.mkDerivation { 1539 + libXrender = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, testers }: stdenv.mkDerivation (finalAttrs: { 1248 1540 pname = "libXrender"; 1249 1541 version = "0.9.11"; 1250 1542 builder = ./builder.sh; ··· 1256 1548 strictDeps = true; 1257 1549 nativeBuildInputs = [ pkg-config ]; 1258 1550 buildInputs = [ xorgproto libX11 ]; 1259 - meta.platforms = lib.platforms.unix; 1260 - }) {}; 1551 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1552 + meta = { 1553 + pkgConfigModules = [ "xrender" ]; 1554 + platforms = lib.platforms.unix; 1555 + }; 1556 + })) {}; 1261 1557 1262 1558 # THIS IS A GENERATED FILE. DO NOT EDIT! 1263 - libXres = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext }: stdenv.mkDerivation { 1559 + libXres = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, testers }: stdenv.mkDerivation (finalAttrs: { 1264 1560 pname = "libXres"; 1265 1561 version = "1.2.2"; 1266 1562 builder = ./builder.sh; ··· 1272 1568 strictDeps = true; 1273 1569 nativeBuildInputs = [ pkg-config ]; 1274 1570 buildInputs = [ xorgproto libX11 libXext ]; 1275 - meta.platforms = lib.platforms.unix; 1276 - }) {}; 1571 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1572 + meta = { 1573 + pkgConfigModules = [ "xres" ]; 1574 + platforms = lib.platforms.unix; 1575 + }; 1576 + })) {}; 1277 1577 1278 1578 # THIS IS A GENERATED FILE. DO NOT EDIT! 1279 - libXt = callPackage ({ stdenv, pkg-config, fetchurl, libICE, xorgproto, libSM, libX11 }: stdenv.mkDerivation { 1579 + libXt = callPackage ({ stdenv, pkg-config, fetchurl, libICE, xorgproto, libSM, libX11, testers }: stdenv.mkDerivation (finalAttrs: { 1280 1580 pname = "libXt"; 1281 1581 version = "1.3.0"; 1282 1582 builder = ./builder.sh; ··· 1288 1588 strictDeps = true; 1289 1589 nativeBuildInputs = [ pkg-config ]; 1290 1590 buildInputs = [ libICE xorgproto libSM libX11 ]; 1291 - meta.platforms = lib.platforms.unix; 1292 - }) {}; 1591 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1592 + meta = { 1593 + pkgConfigModules = [ "xt" ]; 1594 + platforms = lib.platforms.unix; 1595 + }; 1596 + })) {}; 1293 1597 1294 1598 # THIS IS A GENERATED FILE. DO NOT EDIT! 1295 - libXtst = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXi }: stdenv.mkDerivation { 1599 + libXtst = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXi, testers }: stdenv.mkDerivation (finalAttrs: { 1296 1600 pname = "libXtst"; 1297 1601 version = "1.2.4"; 1298 1602 builder = ./builder.sh; ··· 1304 1608 strictDeps = true; 1305 1609 nativeBuildInputs = [ pkg-config ]; 1306 1610 buildInputs = [ xorgproto libX11 libXext libXi ]; 1307 - meta.platforms = lib.platforms.unix; 1308 - }) {}; 1611 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1612 + meta = { 1613 + pkgConfigModules = [ "xtst" ]; 1614 + platforms = lib.platforms.unix; 1615 + }; 1616 + })) {}; 1309 1617 1310 1618 # THIS IS A GENERATED FILE. DO NOT EDIT! 1311 - libXv = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext }: stdenv.mkDerivation { 1619 + libXv = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, testers }: stdenv.mkDerivation (finalAttrs: { 1312 1620 pname = "libXv"; 1313 1621 version = "1.0.12"; 1314 1622 builder = ./builder.sh; ··· 1320 1628 strictDeps = true; 1321 1629 nativeBuildInputs = [ pkg-config ]; 1322 1630 buildInputs = [ xorgproto libX11 libXext ]; 1323 - meta.platforms = lib.platforms.unix; 1324 - }) {}; 1631 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1632 + meta = { 1633 + pkgConfigModules = [ "xv" ]; 1634 + platforms = lib.platforms.unix; 1635 + }; 1636 + })) {}; 1325 1637 1326 1638 # THIS IS A GENERATED FILE. DO NOT EDIT! 1327 - libXvMC = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXv }: stdenv.mkDerivation { 1639 + libXvMC = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXv, testers }: stdenv.mkDerivation (finalAttrs: { 1328 1640 pname = "libXvMC"; 1329 1641 version = "1.0.13"; 1330 1642 builder = ./builder.sh; ··· 1336 1648 strictDeps = true; 1337 1649 nativeBuildInputs = [ pkg-config ]; 1338 1650 buildInputs = [ xorgproto libX11 libXext libXv ]; 1339 - meta.platforms = lib.platforms.unix; 1340 - }) {}; 1651 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1652 + meta = { 1653 + pkgConfigModules = [ "xvmc-wrapper" "xvmc" ]; 1654 + platforms = lib.platforms.unix; 1655 + }; 1656 + })) {}; 1341 1657 1342 1658 # THIS IS A GENERATED FILE. DO NOT EDIT! 1343 - libXxf86dga = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto }: stdenv.mkDerivation { 1659 + libXxf86dga = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 1344 1660 pname = "libXxf86dga"; 1345 1661 version = "1.1.6"; 1346 1662 builder = ./builder.sh; ··· 1352 1668 strictDeps = true; 1353 1669 nativeBuildInputs = [ pkg-config ]; 1354 1670 buildInputs = [ libX11 libXext xorgproto ]; 1355 - meta.platforms = lib.platforms.unix; 1356 - }) {}; 1671 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1672 + meta = { 1673 + pkgConfigModules = [ "xxf86dga" ]; 1674 + platforms = lib.platforms.unix; 1675 + }; 1676 + })) {}; 1357 1677 1358 1678 # THIS IS A GENERATED FILE. DO NOT EDIT! 1359 - libXxf86misc = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto }: stdenv.mkDerivation { 1679 + libXxf86misc = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 1360 1680 pname = "libXxf86misc"; 1361 1681 version = "1.0.4"; 1362 1682 builder = ./builder.sh; ··· 1368 1688 strictDeps = true; 1369 1689 nativeBuildInputs = [ pkg-config ]; 1370 1690 buildInputs = [ libX11 libXext xorgproto ]; 1371 - meta.platforms = lib.platforms.unix; 1372 - }) {}; 1691 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1692 + meta = { 1693 + pkgConfigModules = [ "xxf86misc" ]; 1694 + platforms = lib.platforms.unix; 1695 + }; 1696 + })) {}; 1373 1697 1374 1698 # THIS IS A GENERATED FILE. DO NOT EDIT! 1375 - libXxf86vm = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto }: stdenv.mkDerivation { 1699 + libXxf86vm = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 1376 1700 pname = "libXxf86vm"; 1377 1701 version = "1.1.5"; 1378 1702 builder = ./builder.sh; ··· 1384 1708 strictDeps = true; 1385 1709 nativeBuildInputs = [ pkg-config ]; 1386 1710 buildInputs = [ libX11 libXext xorgproto ]; 1387 - meta.platforms = lib.platforms.unix; 1388 - }) {}; 1711 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1712 + meta = { 1713 + pkgConfigModules = [ "xxf86vm" ]; 1714 + platforms = lib.platforms.unix; 1715 + }; 1716 + })) {}; 1389 1717 1390 1718 # THIS IS A GENERATED FILE. DO NOT EDIT! 1391 - libdmx = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext }: stdenv.mkDerivation { 1719 + libdmx = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, testers }: stdenv.mkDerivation (finalAttrs: { 1392 1720 pname = "libdmx"; 1393 1721 version = "1.1.5"; 1394 1722 builder = ./builder.sh; ··· 1400 1728 strictDeps = true; 1401 1729 nativeBuildInputs = [ pkg-config ]; 1402 1730 buildInputs = [ xorgproto libX11 libXext ]; 1403 - meta.platforms = lib.platforms.unix; 1404 - }) {}; 1731 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1732 + meta = { 1733 + pkgConfigModules = [ "dmx" ]; 1734 + platforms = lib.platforms.unix; 1735 + }; 1736 + })) {}; 1405 1737 1406 1738 # THIS IS A GENERATED FILE. DO NOT EDIT! 1407 - libfontenc = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, zlib }: stdenv.mkDerivation { 1739 + libfontenc = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, zlib, testers }: stdenv.mkDerivation (finalAttrs: { 1408 1740 pname = "libfontenc"; 1409 1741 version = "1.1.7"; 1410 1742 builder = ./builder.sh; ··· 1416 1748 strictDeps = true; 1417 1749 nativeBuildInputs = [ pkg-config ]; 1418 1750 buildInputs = [ xorgproto zlib ]; 1419 - meta.platforms = lib.platforms.unix; 1420 - }) {}; 1751 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1752 + meta = { 1753 + pkgConfigModules = [ "fontenc" ]; 1754 + platforms = lib.platforms.unix; 1755 + }; 1756 + })) {}; 1421 1757 1422 1758 # THIS IS A GENERATED FILE. DO NOT EDIT! 1423 - libpciaccess = callPackage ({ stdenv, pkg-config, fetchurl, hwdata, zlib }: stdenv.mkDerivation { 1759 + libpciaccess = callPackage ({ stdenv, pkg-config, fetchurl, hwdata, zlib, testers }: stdenv.mkDerivation (finalAttrs: { 1424 1760 pname = "libpciaccess"; 1425 1761 version = "0.17"; 1426 1762 builder = ./builder.sh; ··· 1433 1769 nativeBuildInputs = [ pkg-config ]; 1434 1770 buildInputs = [ hwdata zlib ]; 1435 1771 configureFlags = [ "--with-pciids-path=${hwdata}/share/hwdata" ]; 1436 - meta.platforms = lib.platforms.unix; 1437 - }) {}; 1772 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1773 + meta = { 1774 + pkgConfigModules = [ "pciaccess" ]; 1775 + platforms = lib.platforms.unix; 1776 + }; 1777 + })) {}; 1438 1778 1439 1779 # THIS IS A GENERATED FILE. DO NOT EDIT! 1440 - libpthreadstubs = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 1780 + libpthreadstubs = callPackage ({ stdenv, pkg-config, fetchurl, testers }: stdenv.mkDerivation (finalAttrs: { 1441 1781 pname = "libpthread-stubs"; 1442 1782 version = "0.5"; 1443 1783 builder = ./builder.sh; ··· 1449 1789 strictDeps = true; 1450 1790 nativeBuildInputs = [ pkg-config ]; 1451 1791 buildInputs = [ ]; 1452 - meta.platforms = lib.platforms.unix; 1453 - }) {}; 1792 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1793 + meta = { 1794 + pkgConfigModules = [ "pthread-stubs" ]; 1795 + platforms = lib.platforms.unix; 1796 + }; 1797 + })) {}; 1454 1798 1455 1799 # THIS IS A GENERATED FILE. DO NOT EDIT! 1456 - libxcb = callPackage ({ stdenv, pkg-config, fetchurl, libxslt, libpthreadstubs, libXau, xcbproto, libXdmcp, python3 }: stdenv.mkDerivation { 1800 + libxcb = callPackage ({ stdenv, pkg-config, fetchurl, libxslt, libpthreadstubs, libXau, xcbproto, libXdmcp, python3, testers }: stdenv.mkDerivation (finalAttrs: { 1457 1801 pname = "libxcb"; 1458 1802 version = "1.16"; 1459 1803 builder = ./builder.sh; ··· 1465 1809 strictDeps = true; 1466 1810 nativeBuildInputs = [ pkg-config python3 ]; 1467 1811 buildInputs = [ libxslt libpthreadstubs libXau xcbproto libXdmcp ]; 1468 - meta.platforms = lib.platforms.unix; 1469 - }) {}; 1812 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1813 + meta = { 1814 + pkgConfigModules = [ "xcb-composite" "xcb-xtest" "xcb-record" "xcb-glx" "xcb-dpms" "xcb-xevie" "xcb-dri2" "xcb-shm" "xcb-sync" "xcb-xprint" "xcb-dri3" "xcb-screensaver" "xcb-render" "xcb-xkb" "xcb-xinput" "xcb-shape" "xcb-ge" "xcb-xfixes" "xcb" "xcb-damage" "xcb-present" "xcb-xf86dri" "xcb-xvmc" "xcb-randr" "xcb-xinerama" "xcb-xselinux" "xcb-xv" "xcb-res" ]; 1815 + platforms = lib.platforms.unix; 1816 + }; 1817 + })) {}; 1470 1818 1471 1819 # THIS IS A GENERATED FILE. DO NOT EDIT! 1472 - libxcvt = callPackage ({ stdenv, pkg-config, fetchurl, meson, ninja }: stdenv.mkDerivation { 1820 + libxcvt = callPackage ({ stdenv, pkg-config, fetchurl, meson, ninja, testers }: stdenv.mkDerivation (finalAttrs: { 1473 1821 pname = "libxcvt"; 1474 1822 version = "0.1.2"; 1475 1823 builder = ./builder.sh; ··· 1481 1829 strictDeps = true; 1482 1830 nativeBuildInputs = [ pkg-config meson ninja ]; 1483 1831 buildInputs = [ ]; 1484 - meta.platforms = lib.platforms.unix; 1485 - }) {}; 1832 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1833 + meta = { 1834 + pkgConfigModules = [ ]; 1835 + platforms = lib.platforms.unix; 1836 + }; 1837 + })) {}; 1486 1838 1487 1839 # THIS IS A GENERATED FILE. DO NOT EDIT! 1488 - libxkbfile = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11 }: stdenv.mkDerivation { 1840 + libxkbfile = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, testers }: stdenv.mkDerivation (finalAttrs: { 1489 1841 pname = "libxkbfile"; 1490 1842 version = "1.1.2"; 1491 1843 builder = ./builder.sh; ··· 1497 1849 strictDeps = true; 1498 1850 nativeBuildInputs = [ pkg-config ]; 1499 1851 buildInputs = [ xorgproto libX11 ]; 1500 - meta.platforms = lib.platforms.unix; 1501 - }) {}; 1852 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1853 + meta = { 1854 + pkgConfigModules = [ "xkbfile" ]; 1855 + platforms = lib.platforms.unix; 1856 + }; 1857 + })) {}; 1502 1858 1503 1859 # THIS IS A GENERATED FILE. DO NOT EDIT! 1504 - libxshmfence = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto }: stdenv.mkDerivation { 1860 + libxshmfence = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 1505 1861 pname = "libxshmfence"; 1506 1862 version = "1.3.2"; 1507 1863 builder = ./builder.sh; ··· 1513 1869 strictDeps = true; 1514 1870 nativeBuildInputs = [ pkg-config ]; 1515 1871 buildInputs = [ xorgproto ]; 1516 - meta.platforms = lib.platforms.unix; 1517 - }) {}; 1872 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1873 + meta = { 1874 + pkgConfigModules = [ "xshmfence" ]; 1875 + platforms = lib.platforms.unix; 1876 + }; 1877 + })) {}; 1518 1878 1519 1879 # THIS IS A GENERATED FILE. DO NOT EDIT! 1520 - listres = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXmu, xorgproto, libXt }: stdenv.mkDerivation { 1880 + listres = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXmu, xorgproto, libXt, testers }: stdenv.mkDerivation (finalAttrs: { 1521 1881 pname = "listres"; 1522 1882 version = "1.0.5"; 1523 1883 builder = ./builder.sh; ··· 1529 1889 strictDeps = true; 1530 1890 nativeBuildInputs = [ pkg-config ]; 1531 1891 buildInputs = [ libXaw libXmu xorgproto libXt ]; 1532 - meta.platforms = lib.platforms.unix; 1533 - }) {}; 1892 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1893 + meta = { 1894 + pkgConfigModules = [ ]; 1895 + platforms = lib.platforms.unix; 1896 + }; 1897 + })) {}; 1534 1898 1535 1899 # THIS IS A GENERATED FILE. DO NOT EDIT! 1536 - lndir = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto }: stdenv.mkDerivation { 1900 + lndir = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 1537 1901 pname = "lndir"; 1538 1902 version = "1.0.4"; 1539 1903 builder = ./builder.sh; ··· 1545 1909 strictDeps = true; 1546 1910 nativeBuildInputs = [ pkg-config ]; 1547 1911 buildInputs = [ xorgproto ]; 1548 - meta.platforms = lib.platforms.unix; 1549 - }) {}; 1912 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1913 + meta = { 1914 + pkgConfigModules = [ ]; 1915 + platforms = lib.platforms.unix; 1916 + }; 1917 + })) {}; 1550 1918 1551 1919 # THIS IS A GENERATED FILE. DO NOT EDIT! 1552 - luit = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 1920 + luit = callPackage ({ stdenv, pkg-config, fetchurl, testers }: stdenv.mkDerivation (finalAttrs: { 1553 1921 pname = "luit"; 1554 1922 version = "20190106"; 1555 1923 builder = ./builder.sh; ··· 1561 1929 strictDeps = true; 1562 1930 nativeBuildInputs = [ pkg-config ]; 1563 1931 buildInputs = [ ]; 1564 - meta.platforms = lib.platforms.unix; 1565 - }) {}; 1932 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1933 + meta = { 1934 + pkgConfigModules = [ ]; 1935 + platforms = lib.platforms.unix; 1936 + }; 1937 + })) {}; 1566 1938 1567 1939 # THIS IS A GENERATED FILE. DO NOT EDIT! 1568 - makedepend = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto }: stdenv.mkDerivation { 1940 + makedepend = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 1569 1941 pname = "makedepend"; 1570 1942 version = "1.0.8"; 1571 1943 builder = ./builder.sh; ··· 1577 1949 strictDeps = true; 1578 1950 nativeBuildInputs = [ pkg-config ]; 1579 1951 buildInputs = [ xorgproto ]; 1580 - meta.platforms = lib.platforms.unix; 1581 - }) {}; 1952 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1953 + meta = { 1954 + pkgConfigModules = [ ]; 1955 + platforms = lib.platforms.unix; 1956 + }; 1957 + })) {}; 1582 1958 1583 1959 # THIS IS A GENERATED FILE. DO NOT EDIT! 1584 - mkfontscale = callPackage ({ stdenv, pkg-config, fetchurl, libfontenc, freetype, xorgproto, zlib }: stdenv.mkDerivation { 1960 + mkfontscale = callPackage ({ stdenv, pkg-config, fetchurl, libfontenc, freetype, xorgproto, zlib, testers }: stdenv.mkDerivation (finalAttrs: { 1585 1961 pname = "mkfontscale"; 1586 1962 version = "1.2.2"; 1587 1963 builder = ./builder.sh; ··· 1593 1969 strictDeps = true; 1594 1970 nativeBuildInputs = [ pkg-config ]; 1595 1971 buildInputs = [ libfontenc freetype xorgproto zlib ]; 1596 - meta.platforms = lib.platforms.unix; 1597 - }) {}; 1972 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1973 + meta = { 1974 + pkgConfigModules = [ ]; 1975 + platforms = lib.platforms.unix; 1976 + }; 1977 + })) {}; 1598 1978 1599 1979 # THIS IS A GENERATED FILE. DO NOT EDIT! 1600 - oclock = callPackage ({ stdenv, pkg-config, fetchurl, libxkbfile, libX11, libXext, libXmu, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 1980 + oclock = callPackage ({ stdenv, pkg-config, fetchurl, libxkbfile, libX11, libXext, libXmu, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 1601 1981 pname = "oclock"; 1602 1982 version = "1.0.5"; 1603 1983 builder = ./builder.sh; ··· 1609 1989 strictDeps = true; 1610 1990 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 1611 1991 buildInputs = [ libxkbfile libX11 libXext libXmu libXt ]; 1612 - meta.platforms = lib.platforms.unix; 1613 - }) {}; 1992 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 1993 + meta = { 1994 + pkgConfigModules = [ ]; 1995 + platforms = lib.platforms.unix; 1996 + }; 1997 + })) {}; 1614 1998 1615 1999 # THIS IS A GENERATED FILE. DO NOT EDIT! 1616 - sessreg = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto }: stdenv.mkDerivation { 2000 + sessreg = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 1617 2001 pname = "sessreg"; 1618 2002 version = "1.1.3"; 1619 2003 builder = ./builder.sh; ··· 1625 2009 strictDeps = true; 1626 2010 nativeBuildInputs = [ pkg-config ]; 1627 2011 buildInputs = [ xorgproto ]; 1628 - meta.platforms = lib.platforms.unix; 1629 - }) {}; 2012 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2013 + meta = { 2014 + pkgConfigModules = [ ]; 2015 + platforms = lib.platforms.unix; 2016 + }; 2017 + })) {}; 1630 2018 1631 2019 # THIS IS A GENERATED FILE. DO NOT EDIT! 1632 - setxkbmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile, libXrandr }: stdenv.mkDerivation { 2020 + setxkbmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile, libXrandr, testers }: stdenv.mkDerivation (finalAttrs: { 1633 2021 pname = "setxkbmap"; 1634 2022 version = "1.3.4"; 1635 2023 builder = ./builder.sh; ··· 1641 2029 strictDeps = true; 1642 2030 nativeBuildInputs = [ pkg-config ]; 1643 2031 buildInputs = [ libX11 libxkbfile libXrandr ]; 1644 - meta.platforms = lib.platforms.unix; 1645 - }) {}; 2032 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2033 + meta = { 2034 + pkgConfigModules = [ ]; 2035 + platforms = lib.platforms.unix; 2036 + }; 2037 + })) {}; 1646 2038 1647 2039 # THIS IS A GENERATED FILE. DO NOT EDIT! 1648 - smproxy = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libSM, libXmu, libXt }: stdenv.mkDerivation { 2040 + smproxy = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libSM, libXmu, libXt, testers }: stdenv.mkDerivation (finalAttrs: { 1649 2041 pname = "smproxy"; 1650 2042 version = "1.0.7"; 1651 2043 builder = ./builder.sh; ··· 1657 2049 strictDeps = true; 1658 2050 nativeBuildInputs = [ pkg-config ]; 1659 2051 buildInputs = [ libICE libSM libXmu libXt ]; 1660 - meta.platforms = lib.platforms.unix; 1661 - }) {}; 2052 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2053 + meta = { 2054 + pkgConfigModules = [ ]; 2055 + platforms = lib.platforms.unix; 2056 + }; 2057 + })) {}; 1662 2058 1663 2059 # THIS IS A GENERATED FILE. DO NOT EDIT! 1664 - transset = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 2060 + transset = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 1665 2061 pname = "transset"; 1666 2062 version = "1.0.3"; 1667 2063 builder = ./builder.sh; ··· 1673 2069 strictDeps = true; 1674 2070 nativeBuildInputs = [ pkg-config ]; 1675 2071 buildInputs = [ libX11 xorgproto ]; 1676 - meta.platforms = lib.platforms.unix; 1677 - }) {}; 2072 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2073 + meta = { 2074 + pkgConfigModules = [ ]; 2075 + platforms = lib.platforms.unix; 2076 + }; 2077 + })) {}; 1678 2078 1679 2079 # THIS IS A GENERATED FILE. DO NOT EDIT! 1680 - twm = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libSM, libX11, libXext, libXmu, xorgproto, libXrandr, libXt }: stdenv.mkDerivation { 2080 + twm = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libSM, libX11, libXext, libXmu, xorgproto, libXrandr, libXt, testers }: stdenv.mkDerivation (finalAttrs: { 1681 2081 pname = "twm"; 1682 2082 version = "1.0.12"; 1683 2083 builder = ./builder.sh; ··· 1689 2089 strictDeps = true; 1690 2090 nativeBuildInputs = [ pkg-config ]; 1691 2091 buildInputs = [ libICE libSM libX11 libXext libXmu xorgproto libXrandr libXt ]; 1692 - meta.platforms = lib.platforms.unix; 1693 - }) {}; 2092 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2093 + meta = { 2094 + pkgConfigModules = [ ]; 2095 + platforms = lib.platforms.unix; 2096 + }; 2097 + })) {}; 1694 2098 1695 2099 # THIS IS A GENERATED FILE. DO NOT EDIT! 1696 - utilmacros = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 2100 + utilmacros = callPackage ({ stdenv, pkg-config, fetchurl, testers }: stdenv.mkDerivation (finalAttrs: { 1697 2101 pname = "util-macros"; 1698 2102 version = "1.20.0"; 1699 2103 builder = ./builder.sh; ··· 1705 2109 strictDeps = true; 1706 2110 nativeBuildInputs = [ pkg-config ]; 1707 2111 buildInputs = [ ]; 1708 - meta.platforms = lib.platforms.unix; 1709 - }) {}; 2112 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2113 + meta = { 2114 + pkgConfigModules = [ "xorg-macros" ]; 2115 + platforms = lib.platforms.unix; 2116 + }; 2117 + })) {}; 1710 2118 1711 2119 # THIS IS A GENERATED FILE. DO NOT EDIT! 1712 - viewres = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXmu, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 2120 + viewres = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXmu, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 1713 2121 pname = "viewres"; 1714 2122 version = "1.0.7"; 1715 2123 builder = ./builder.sh; ··· 1721 2129 strictDeps = true; 1722 2130 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 1723 2131 buildInputs = [ libXaw libXmu libXt ]; 1724 - meta.platforms = lib.platforms.unix; 1725 - }) {}; 2132 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2133 + meta = { 2134 + pkgConfigModules = [ ]; 2135 + platforms = lib.platforms.unix; 2136 + }; 2137 + })) {}; 1726 2138 1727 2139 # THIS IS A GENERATED FILE. DO NOT EDIT! 1728 - x11perf = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, libXft, libXmu, xorgproto, libXrender }: stdenv.mkDerivation { 2140 + x11perf = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, libXft, libXmu, xorgproto, libXrender, testers }: stdenv.mkDerivation (finalAttrs: { 1729 2141 pname = "x11perf"; 1730 2142 version = "1.6.1"; 1731 2143 builder = ./builder.sh; ··· 1737 2149 strictDeps = true; 1738 2150 nativeBuildInputs = [ pkg-config ]; 1739 2151 buildInputs = [ libX11 libXext libXft libXmu xorgproto libXrender ]; 1740 - meta.platforms = lib.platforms.unix; 1741 - }) {}; 2152 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2153 + meta = { 2154 + pkgConfigModules = [ ]; 2155 + platforms = lib.platforms.unix; 2156 + }; 2157 + })) {}; 1742 2158 1743 2159 # THIS IS A GENERATED FILE. DO NOT EDIT! 1744 - xauth = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXau, libXext, libXmu, xorgproto }: stdenv.mkDerivation { 2160 + xauth = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXau, libXext, libXmu, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 1745 2161 pname = "xauth"; 1746 2162 version = "1.1.2"; 1747 2163 builder = ./builder.sh; ··· 1753 2169 strictDeps = true; 1754 2170 nativeBuildInputs = [ pkg-config ]; 1755 2171 buildInputs = [ libX11 libXau libXext libXmu xorgproto ]; 1756 - meta.platforms = lib.platforms.unix; 1757 - }) {}; 2172 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2173 + meta = { 2174 + pkgConfigModules = [ ]; 2175 + platforms = lib.platforms.unix; 2176 + }; 2177 + })) {}; 1758 2178 1759 2179 # THIS IS A GENERATED FILE. DO NOT EDIT! 1760 - xbacklight = callPackage ({ stdenv, pkg-config, fetchurl, libxcb, xcbutil }: stdenv.mkDerivation { 2180 + xbacklight = callPackage ({ stdenv, pkg-config, fetchurl, libxcb, xcbutil, testers }: stdenv.mkDerivation (finalAttrs: { 1761 2181 pname = "xbacklight"; 1762 2182 version = "1.2.3"; 1763 2183 builder = ./builder.sh; ··· 1769 2189 strictDeps = true; 1770 2190 nativeBuildInputs = [ pkg-config ]; 1771 2191 buildInputs = [ libxcb xcbutil ]; 1772 - meta.platforms = lib.platforms.unix; 1773 - }) {}; 2192 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2193 + meta = { 2194 + pkgConfigModules = [ ]; 2195 + platforms = lib.platforms.unix; 2196 + }; 2197 + })) {}; 1774 2198 1775 2199 # THIS IS A GENERATED FILE. DO NOT EDIT! 1776 - xbitmaps = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 2200 + xbitmaps = callPackage ({ stdenv, pkg-config, fetchurl, testers }: stdenv.mkDerivation (finalAttrs: { 1777 2201 pname = "xbitmaps"; 1778 2202 version = "1.1.3"; 1779 2203 builder = ./builder.sh; ··· 1785 2209 strictDeps = true; 1786 2210 nativeBuildInputs = [ pkg-config ]; 1787 2211 buildInputs = [ ]; 1788 - meta.platforms = lib.platforms.unix; 1789 - }) {}; 2212 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2213 + meta = { 2214 + pkgConfigModules = [ "xbitmaps" ]; 2215 + platforms = lib.platforms.unix; 2216 + }; 2217 + })) {}; 1790 2218 1791 2219 # THIS IS A GENERATED FILE. DO NOT EDIT! 1792 - xcalc = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 2220 + xcalc = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, xorgproto, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 1793 2221 pname = "xcalc"; 1794 2222 version = "1.1.2"; 1795 2223 builder = ./builder.sh; ··· 1801 2229 strictDeps = true; 1802 2230 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 1803 2231 buildInputs = [ libX11 libXaw xorgproto libXt ]; 1804 - meta.platforms = lib.platforms.unix; 1805 - }) {}; 2232 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2233 + meta = { 2234 + pkgConfigModules = [ ]; 2235 + platforms = lib.platforms.unix; 2236 + }; 2237 + })) {}; 1806 2238 1807 2239 # THIS IS A GENERATED FILE. DO NOT EDIT! 1808 - xcbproto = callPackage ({ stdenv, pkg-config, fetchurl, python3 }: stdenv.mkDerivation { 2240 + xcbproto = callPackage ({ stdenv, pkg-config, fetchurl, python3, testers }: stdenv.mkDerivation (finalAttrs: { 1809 2241 pname = "xcb-proto"; 1810 2242 version = "1.16.0"; 1811 2243 builder = ./builder.sh; ··· 1817 2249 strictDeps = true; 1818 2250 nativeBuildInputs = [ pkg-config python3 ]; 1819 2251 buildInputs = [ ]; 1820 - meta.platforms = lib.platforms.unix; 1821 - }) {}; 2252 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2253 + meta = { 2254 + pkgConfigModules = [ "xcb-proto" ]; 2255 + platforms = lib.platforms.unix; 2256 + }; 2257 + })) {}; 1822 2258 1823 2259 # THIS IS A GENERATED FILE. DO NOT EDIT! 1824 - xcbutil = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xorgproto, m4 }: stdenv.mkDerivation { 2260 + xcbutil = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xorgproto, m4, testers }: stdenv.mkDerivation (finalAttrs: { 1825 2261 pname = "xcb-util"; 1826 2262 version = "0.4.1"; 1827 2263 builder = ./builder.sh; ··· 1833 2269 strictDeps = true; 1834 2270 nativeBuildInputs = [ pkg-config m4 ]; 1835 2271 buildInputs = [ gperf libxcb xorgproto ]; 1836 - meta.platforms = lib.platforms.unix; 1837 - }) {}; 2272 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2273 + meta = { 2274 + pkgConfigModules = [ "xcb-atom" "xcb-event" "xcb-aux" "xcb-util" ]; 2275 + platforms = lib.platforms.unix; 2276 + }; 2277 + })) {}; 1838 2278 1839 2279 # THIS IS A GENERATED FILE. DO NOT EDIT! 1840 - xcbutilcursor = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xcbutilimage, xcbutilrenderutil, xorgproto, m4 }: stdenv.mkDerivation { 2280 + xcbutilcursor = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xcbutilimage, xcbutilrenderutil, xorgproto, m4, testers }: stdenv.mkDerivation (finalAttrs: { 1841 2281 pname = "xcb-util-cursor"; 1842 2282 version = "0.1.4"; 1843 2283 builder = ./builder.sh; ··· 1849 2289 strictDeps = true; 1850 2290 nativeBuildInputs = [ pkg-config m4 ]; 1851 2291 buildInputs = [ gperf libxcb xcbutilimage xcbutilrenderutil xorgproto ]; 1852 - meta.platforms = lib.platforms.unix; 1853 - }) {}; 2292 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2293 + meta = { 2294 + pkgConfigModules = [ "xcb-cursor" ]; 2295 + platforms = lib.platforms.unix; 2296 + }; 2297 + })) {}; 1854 2298 1855 2299 # THIS IS A GENERATED FILE. DO NOT EDIT! 1856 - xcbutilerrors = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xcbproto, xorgproto, m4, python3 }: stdenv.mkDerivation { 2300 + xcbutilerrors = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xcbproto, xorgproto, m4, python3, testers }: stdenv.mkDerivation (finalAttrs: { 1857 2301 pname = "xcb-util-errors"; 1858 2302 version = "1.0.1"; 1859 2303 builder = ./builder.sh; ··· 1865 2309 strictDeps = true; 1866 2310 nativeBuildInputs = [ pkg-config m4 python3 ]; 1867 2311 buildInputs = [ gperf libxcb xcbproto xorgproto ]; 1868 - meta.platforms = lib.platforms.unix; 1869 - }) {}; 2312 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2313 + meta = { 2314 + pkgConfigModules = [ "xcb-errors" ]; 2315 + platforms = lib.platforms.unix; 2316 + }; 2317 + })) {}; 1870 2318 1871 2319 # THIS IS A GENERATED FILE. DO NOT EDIT! 1872 - xcbutilimage = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xcbutil, xorgproto, m4 }: stdenv.mkDerivation { 2320 + xcbutilimage = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xcbutil, xorgproto, m4, testers }: stdenv.mkDerivation (finalAttrs: { 1873 2321 pname = "xcb-util-image"; 1874 2322 version = "0.4.1"; 1875 2323 builder = ./builder.sh; ··· 1881 2329 strictDeps = true; 1882 2330 nativeBuildInputs = [ pkg-config m4 ]; 1883 2331 buildInputs = [ gperf libxcb xcbutil xorgproto ]; 1884 - meta.platforms = lib.platforms.unix; 1885 - }) {}; 2332 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2333 + meta = { 2334 + pkgConfigModules = [ "xcb-image" ]; 2335 + platforms = lib.platforms.unix; 2336 + }; 2337 + })) {}; 1886 2338 1887 2339 # THIS IS A GENERATED FILE. DO NOT EDIT! 1888 - xcbutilkeysyms = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xorgproto, m4 }: stdenv.mkDerivation { 2340 + xcbutilkeysyms = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xorgproto, m4, testers }: stdenv.mkDerivation (finalAttrs: { 1889 2341 pname = "xcb-util-keysyms"; 1890 2342 version = "0.4.1"; 1891 2343 builder = ./builder.sh; ··· 1897 2349 strictDeps = true; 1898 2350 nativeBuildInputs = [ pkg-config m4 ]; 1899 2351 buildInputs = [ gperf libxcb xorgproto ]; 1900 - meta.platforms = lib.platforms.unix; 1901 - }) {}; 2352 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2353 + meta = { 2354 + pkgConfigModules = [ "xcb-keysyms" ]; 2355 + platforms = lib.platforms.unix; 2356 + }; 2357 + })) {}; 1902 2358 1903 2359 # THIS IS A GENERATED FILE. DO NOT EDIT! 1904 - xcbutilrenderutil = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xorgproto, m4 }: stdenv.mkDerivation { 2360 + xcbutilrenderutil = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xorgproto, m4, testers }: stdenv.mkDerivation (finalAttrs: { 1905 2361 pname = "xcb-util-renderutil"; 1906 2362 version = "0.3.10"; 1907 2363 builder = ./builder.sh; ··· 1913 2369 strictDeps = true; 1914 2370 nativeBuildInputs = [ pkg-config m4 ]; 1915 2371 buildInputs = [ gperf libxcb xorgproto ]; 1916 - meta.platforms = lib.platforms.unix; 1917 - }) {}; 2372 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2373 + meta = { 2374 + pkgConfigModules = [ "xcb-renderutil" ]; 2375 + platforms = lib.platforms.unix; 2376 + }; 2377 + })) {}; 1918 2378 1919 2379 # THIS IS A GENERATED FILE. DO NOT EDIT! 1920 - xcbutilwm = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xorgproto, m4 }: stdenv.mkDerivation { 2380 + xcbutilwm = callPackage ({ stdenv, pkg-config, fetchurl, gperf, libxcb, xorgproto, m4, testers }: stdenv.mkDerivation (finalAttrs: { 1921 2381 pname = "xcb-util-wm"; 1922 2382 version = "0.4.2"; 1923 2383 builder = ./builder.sh; ··· 1929 2389 strictDeps = true; 1930 2390 nativeBuildInputs = [ pkg-config m4 ]; 1931 2391 buildInputs = [ gperf libxcb xorgproto ]; 1932 - meta.platforms = lib.platforms.unix; 1933 - }) {}; 2392 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2393 + meta = { 2394 + pkgConfigModules = [ "xcb-icccm" "xcb-ewmh" ]; 2395 + platforms = lib.platforms.unix; 2396 + }; 2397 + })) {}; 1934 2398 1935 2399 # THIS IS A GENERATED FILE. DO NOT EDIT! 1936 - xclock = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXft, libxkbfile, libXmu, xorgproto, libXrender, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 2400 + xclock = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXft, libxkbfile, libXmu, xorgproto, libXrender, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 1937 2401 pname = "xclock"; 1938 2402 version = "1.1.1"; 1939 2403 builder = ./builder.sh; ··· 1945 2409 strictDeps = true; 1946 2410 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 1947 2411 buildInputs = [ libX11 libXaw libXft libxkbfile libXmu xorgproto libXrender libXt ]; 1948 - meta.platforms = lib.platforms.unix; 1949 - }) {}; 2412 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2413 + meta = { 2414 + pkgConfigModules = [ ]; 2415 + platforms = lib.platforms.unix; 2416 + }; 2417 + })) {}; 1950 2418 1951 2419 # THIS IS A GENERATED FILE. DO NOT EDIT! 1952 - xcmsdb = callPackage ({ stdenv, pkg-config, fetchurl, libX11 }: stdenv.mkDerivation { 2420 + xcmsdb = callPackage ({ stdenv, pkg-config, fetchurl, libX11, testers }: stdenv.mkDerivation (finalAttrs: { 1953 2421 pname = "xcmsdb"; 1954 2422 version = "1.0.6"; 1955 2423 builder = ./builder.sh; ··· 1961 2429 strictDeps = true; 1962 2430 nativeBuildInputs = [ pkg-config ]; 1963 2431 buildInputs = [ libX11 ]; 1964 - meta.platforms = lib.platforms.unix; 1965 - }) {}; 2432 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2433 + meta = { 2434 + pkgConfigModules = [ ]; 2435 + platforms = lib.platforms.unix; 2436 + }; 2437 + })) {}; 1966 2438 1967 2439 # THIS IS A GENERATED FILE. DO NOT EDIT! 1968 - xcompmgr = callPackage ({ stdenv, pkg-config, fetchurl, libXcomposite, libXdamage, libXext, libXfixes, xorgproto, libXrender }: stdenv.mkDerivation { 2440 + xcompmgr = callPackage ({ stdenv, pkg-config, fetchurl, libXcomposite, libXdamage, libXext, libXfixes, xorgproto, libXrender, testers }: stdenv.mkDerivation (finalAttrs: { 1969 2441 pname = "xcompmgr"; 1970 2442 version = "1.1.9"; 1971 2443 builder = ./builder.sh; ··· 1977 2449 strictDeps = true; 1978 2450 nativeBuildInputs = [ pkg-config ]; 1979 2451 buildInputs = [ libXcomposite libXdamage libXext libXfixes xorgproto libXrender ]; 1980 - meta.platforms = lib.platforms.unix; 1981 - }) {}; 2452 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2453 + meta = { 2454 + pkgConfigModules = [ ]; 2455 + platforms = lib.platforms.unix; 2456 + }; 2457 + })) {}; 1982 2458 1983 2459 # THIS IS A GENERATED FILE. DO NOT EDIT! 1984 - xconsole = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 2460 + xconsole = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 1985 2461 pname = "xconsole"; 1986 2462 version = "1.0.8"; 1987 2463 builder = ./builder.sh; ··· 1993 2469 strictDeps = true; 1994 2470 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 1995 2471 buildInputs = [ libX11 libXaw libXmu xorgproto libXt ]; 1996 - meta.platforms = lib.platforms.unix; 1997 - }) {}; 2472 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2473 + meta = { 2474 + pkgConfigModules = [ ]; 2475 + platforms = lib.platforms.unix; 2476 + }; 2477 + })) {}; 1998 2478 1999 2479 # THIS IS A GENERATED FILE. DO NOT EDIT! 2000 - xcursorgen = callPackage ({ stdenv, pkg-config, fetchurl, libpng, libX11, libXcursor, xorgproto }: stdenv.mkDerivation { 2480 + xcursorgen = callPackage ({ stdenv, pkg-config, fetchurl, libpng, libX11, libXcursor, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 2001 2481 pname = "xcursorgen"; 2002 2482 version = "1.0.8"; 2003 2483 builder = ./builder.sh; ··· 2009 2489 strictDeps = true; 2010 2490 nativeBuildInputs = [ pkg-config ]; 2011 2491 buildInputs = [ libpng libX11 libXcursor xorgproto ]; 2012 - meta.platforms = lib.platforms.unix; 2013 - }) {}; 2492 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2493 + meta = { 2494 + pkgConfigModules = [ ]; 2495 + platforms = lib.platforms.unix; 2496 + }; 2497 + })) {}; 2014 2498 2015 2499 # THIS IS A GENERATED FILE. DO NOT EDIT! 2016 - xcursorthemes = callPackage ({ stdenv, pkg-config, fetchurl, libXcursor }: stdenv.mkDerivation { 2500 + xcursorthemes = callPackage ({ stdenv, pkg-config, fetchurl, libXcursor, testers }: stdenv.mkDerivation (finalAttrs: { 2017 2501 pname = "xcursor-themes"; 2018 2502 version = "1.0.7"; 2019 2503 builder = ./builder.sh; ··· 2025 2509 strictDeps = true; 2026 2510 nativeBuildInputs = [ pkg-config ]; 2027 2511 buildInputs = [ libXcursor ]; 2028 - meta.platforms = lib.platforms.unix; 2029 - }) {}; 2512 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2513 + meta = { 2514 + pkgConfigModules = [ ]; 2515 + platforms = lib.platforms.unix; 2516 + }; 2517 + })) {}; 2030 2518 2031 2519 # THIS IS A GENERATED FILE. DO NOT EDIT! 2032 - xdm = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXau, libXaw, libXdmcp, libXext, libXft, libXinerama, libXmu, libXpm, xorgproto, libXrender, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 2520 + xdm = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXau, libXaw, libXdmcp, libXext, libXft, libXinerama, libXmu, libXpm, xorgproto, libXrender, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 2033 2521 pname = "xdm"; 2034 2522 version = "1.1.14"; 2035 2523 builder = ./builder.sh; ··· 2041 2529 strictDeps = true; 2042 2530 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 2043 2531 buildInputs = [ libX11 libXau libXaw libXdmcp libXext libXft libXinerama libXmu libXpm xorgproto libXrender libXt ]; 2044 - meta.platforms = lib.platforms.unix; 2045 - }) {}; 2532 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2533 + meta = { 2534 + pkgConfigModules = [ ]; 2535 + platforms = lib.platforms.unix; 2536 + }; 2537 + })) {}; 2046 2538 2047 2539 # THIS IS A GENERATED FILE. DO NOT EDIT! 2048 - xdpyinfo = callPackage ({ stdenv, pkg-config, fetchurl, libdmx, libX11, libxcb, libXcomposite, libXext, libXi, libXinerama, xorgproto, libXrender, libXtst, libXxf86dga, libXxf86misc, libXxf86vm }: stdenv.mkDerivation { 2540 + xdpyinfo = callPackage ({ stdenv, pkg-config, fetchurl, libdmx, libX11, libxcb, libXcomposite, libXext, libXi, libXinerama, xorgproto, libXrender, libXtst, libXxf86dga, libXxf86misc, libXxf86vm, testers }: stdenv.mkDerivation (finalAttrs: { 2049 2541 pname = "xdpyinfo"; 2050 2542 version = "1.3.4"; 2051 2543 builder = ./builder.sh; ··· 2057 2549 strictDeps = true; 2058 2550 nativeBuildInputs = [ pkg-config ]; 2059 2551 buildInputs = [ libdmx libX11 libxcb libXcomposite libXext libXi libXinerama xorgproto libXrender libXtst libXxf86dga libXxf86misc libXxf86vm ]; 2060 - meta.platforms = lib.platforms.unix; 2061 - }) {}; 2552 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2553 + meta = { 2554 + pkgConfigModules = [ ]; 2555 + platforms = lib.platforms.unix; 2556 + }; 2557 + })) {}; 2062 2558 2063 2559 # THIS IS A GENERATED FILE. DO NOT EDIT! 2064 - xdriinfo = callPackage ({ stdenv, pkg-config, fetchurl, libGL, xorgproto, libX11 }: stdenv.mkDerivation { 2560 + xdriinfo = callPackage ({ stdenv, pkg-config, fetchurl, libGL, xorgproto, libX11, testers }: stdenv.mkDerivation (finalAttrs: { 2065 2561 pname = "xdriinfo"; 2066 2562 version = "1.0.7"; 2067 2563 builder = ./builder.sh; ··· 2073 2569 strictDeps = true; 2074 2570 nativeBuildInputs = [ pkg-config ]; 2075 2571 buildInputs = [ libGL xorgproto libX11 ]; 2076 - meta.platforms = lib.platforms.unix; 2077 - }) {}; 2572 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2573 + meta = { 2574 + pkgConfigModules = [ ]; 2575 + platforms = lib.platforms.unix; 2576 + }; 2577 + })) {}; 2078 2578 2079 2579 # THIS IS A GENERATED FILE. DO NOT EDIT! 2080 - xev = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXrandr }: stdenv.mkDerivation { 2580 + xev = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXrandr, testers }: stdenv.mkDerivation (finalAttrs: { 2081 2581 pname = "xev"; 2082 2582 version = "1.2.5"; 2083 2583 builder = ./builder.sh; ··· 2089 2589 strictDeps = true; 2090 2590 nativeBuildInputs = [ pkg-config ]; 2091 2591 buildInputs = [ libX11 xorgproto libXrandr ]; 2092 - meta.platforms = lib.platforms.unix; 2093 - }) {}; 2592 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2593 + meta = { 2594 + pkgConfigModules = [ ]; 2595 + platforms = lib.platforms.unix; 2596 + }; 2597 + })) {}; 2094 2598 2095 2599 # THIS IS A GENERATED FILE. DO NOT EDIT! 2096 - xeyes = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxcb, libXext, libXi, libXmu, xorgproto, libXrender, libXt }: stdenv.mkDerivation { 2600 + xeyes = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxcb, libXext, libXi, libXmu, xorgproto, libXrender, libXt, testers }: stdenv.mkDerivation (finalAttrs: { 2097 2601 pname = "xeyes"; 2098 2602 version = "1.3.0"; 2099 2603 builder = ./builder.sh; ··· 2105 2609 strictDeps = true; 2106 2610 nativeBuildInputs = [ pkg-config ]; 2107 2611 buildInputs = [ libX11 libxcb libXext libXi libXmu xorgproto libXrender libXt ]; 2108 - meta.platforms = lib.platforms.unix; 2109 - }) {}; 2612 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2613 + meta = { 2614 + pkgConfigModules = [ ]; 2615 + platforms = lib.platforms.unix; 2616 + }; 2617 + })) {}; 2110 2618 2111 2619 # THIS IS A GENERATED FILE. DO NOT EDIT! 2112 - xf86inputevdev = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libevdev, udev, mtdev, xorgserver }: stdenv.mkDerivation { 2620 + xf86inputevdev = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libevdev, udev, mtdev, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2113 2621 pname = "xf86-input-evdev"; 2114 2622 version = "2.10.6"; 2115 2623 builder = ./builder.sh; ··· 2121 2629 strictDeps = true; 2122 2630 nativeBuildInputs = [ pkg-config ]; 2123 2631 buildInputs = [ xorgproto libevdev udev mtdev xorgserver ]; 2124 - meta.platforms = lib.platforms.unix; 2125 - }) {}; 2632 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2633 + meta = { 2634 + pkgConfigModules = [ "xorg-evdev" ]; 2635 + platforms = lib.platforms.unix; 2636 + }; 2637 + })) {}; 2126 2638 2127 2639 # THIS IS A GENERATED FILE. DO NOT EDIT! 2128 - xf86inputjoystick = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver }: stdenv.mkDerivation { 2640 + xf86inputjoystick = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2129 2641 pname = "xf86-input-joystick"; 2130 2642 version = "1.6.4"; 2131 2643 builder = ./builder.sh; ··· 2137 2649 strictDeps = true; 2138 2650 nativeBuildInputs = [ pkg-config ]; 2139 2651 buildInputs = [ xorgproto xorgserver ]; 2140 - meta.platforms = lib.platforms.unix; 2141 - }) {}; 2652 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2653 + meta = { 2654 + pkgConfigModules = [ "xorg-joystick" ]; 2655 + platforms = lib.platforms.unix; 2656 + }; 2657 + })) {}; 2142 2658 2143 2659 # THIS IS A GENERATED FILE. DO NOT EDIT! 2144 - xf86inputkeyboard = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver }: stdenv.mkDerivation { 2660 + xf86inputkeyboard = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2145 2661 pname = "xf86-input-keyboard"; 2146 2662 version = "2.0.0"; 2147 2663 builder = ./builder.sh; ··· 2153 2669 strictDeps = true; 2154 2670 nativeBuildInputs = [ pkg-config ]; 2155 2671 buildInputs = [ xorgproto xorgserver ]; 2156 - meta.platforms = lib.platforms.unix; 2157 - }) {}; 2672 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2673 + meta = { 2674 + pkgConfigModules = [ ]; 2675 + platforms = lib.platforms.unix; 2676 + }; 2677 + })) {}; 2158 2678 2159 2679 # THIS IS A GENERATED FILE. DO NOT EDIT! 2160 - xf86inputlibinput = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libinput, xorgserver }: stdenv.mkDerivation { 2680 + xf86inputlibinput = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libinput, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2161 2681 pname = "xf86-input-libinput"; 2162 2682 version = "1.4.0"; 2163 2683 builder = ./builder.sh; ··· 2169 2689 strictDeps = true; 2170 2690 nativeBuildInputs = [ pkg-config ]; 2171 2691 buildInputs = [ xorgproto libinput xorgserver ]; 2172 - meta.platforms = lib.platforms.unix; 2173 - }) {}; 2692 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2693 + meta = { 2694 + pkgConfigModules = [ "xorg-libinput" ]; 2695 + platforms = lib.platforms.unix; 2696 + }; 2697 + })) {}; 2174 2698 2175 2699 # THIS IS A GENERATED FILE. DO NOT EDIT! 2176 - xf86inputmouse = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver }: stdenv.mkDerivation { 2700 + xf86inputmouse = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2177 2701 pname = "xf86-input-mouse"; 2178 2702 version = "1.9.5"; 2179 2703 builder = ./builder.sh; ··· 2185 2709 strictDeps = true; 2186 2710 nativeBuildInputs = [ pkg-config ]; 2187 2711 buildInputs = [ xorgproto xorgserver ]; 2188 - meta.platforms = lib.platforms.unix; 2189 - }) {}; 2712 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2713 + meta = { 2714 + pkgConfigModules = [ "xorg-mouse" ]; 2715 + platforms = lib.platforms.unix; 2716 + }; 2717 + })) {}; 2190 2718 2191 2719 # THIS IS A GENERATED FILE. DO NOT EDIT! 2192 - xf86inputsynaptics = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libevdev, libX11, libXi, xorgserver, libXtst }: stdenv.mkDerivation { 2720 + xf86inputsynaptics = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libevdev, libX11, libXi, xorgserver, libXtst, testers }: stdenv.mkDerivation (finalAttrs: { 2193 2721 pname = "xf86-input-synaptics"; 2194 2722 version = "1.9.2"; 2195 2723 builder = ./builder.sh; ··· 2201 2729 strictDeps = true; 2202 2730 nativeBuildInputs = [ pkg-config ]; 2203 2731 buildInputs = [ xorgproto libevdev libX11 libXi xorgserver libXtst ]; 2204 - meta.platforms = lib.platforms.unix; 2205 - }) {}; 2732 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2733 + meta = { 2734 + pkgConfigModules = [ "xorg-synaptics" ]; 2735 + platforms = lib.platforms.unix; 2736 + }; 2737 + })) {}; 2206 2738 2207 2739 # THIS IS A GENERATED FILE. DO NOT EDIT! 2208 - xf86inputvmmouse = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, udev, xorgserver }: stdenv.mkDerivation { 2740 + xf86inputvmmouse = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, udev, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2209 2741 pname = "xf86-input-vmmouse"; 2210 2742 version = "13.2.0"; 2211 2743 builder = ./builder.sh; ··· 2217 2749 strictDeps = true; 2218 2750 nativeBuildInputs = [ pkg-config ]; 2219 2751 buildInputs = [ xorgproto udev xorgserver ]; 2220 - meta.platforms = lib.platforms.unix; 2221 - }) {}; 2752 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2753 + meta = { 2754 + pkgConfigModules = [ ]; 2755 + platforms = lib.platforms.unix; 2756 + }; 2757 + })) {}; 2222 2758 2223 2759 # THIS IS A GENERATED FILE. DO NOT EDIT! 2224 - xf86inputvoid = callPackage ({ stdenv, pkg-config, fetchurl, xorgserver, xorgproto }: stdenv.mkDerivation { 2760 + xf86inputvoid = callPackage ({ stdenv, pkg-config, fetchurl, xorgserver, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 2225 2761 pname = "xf86-input-void"; 2226 2762 version = "1.4.2"; 2227 2763 builder = ./builder.sh; ··· 2233 2769 strictDeps = true; 2234 2770 nativeBuildInputs = [ pkg-config ]; 2235 2771 buildInputs = [ xorgserver xorgproto ]; 2236 - meta.platforms = lib.platforms.unix; 2237 - }) {}; 2772 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2773 + meta = { 2774 + pkgConfigModules = [ ]; 2775 + platforms = lib.platforms.unix; 2776 + }; 2777 + })) {}; 2238 2778 2239 2779 # THIS IS A GENERATED FILE. DO NOT EDIT! 2240 - xf86videoamdgpu = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, mesa, libGL, libdrm, udev, xorgserver }: stdenv.mkDerivation { 2780 + xf86videoamdgpu = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, mesa, libGL, libdrm, udev, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2241 2781 pname = "xf86-video-amdgpu"; 2242 2782 version = "23.0.0"; 2243 2783 builder = ./builder.sh; ··· 2249 2789 strictDeps = true; 2250 2790 nativeBuildInputs = [ pkg-config ]; 2251 2791 buildInputs = [ xorgproto mesa libGL libdrm udev xorgserver ]; 2252 - meta.platforms = lib.platforms.unix; 2253 - }) {}; 2792 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2793 + meta = { 2794 + pkgConfigModules = [ ]; 2795 + platforms = lib.platforms.unix; 2796 + }; 2797 + })) {}; 2254 2798 2255 2799 # THIS IS A GENERATED FILE. DO NOT EDIT! 2256 - xf86videoapm = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 2800 + xf86videoapm = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2257 2801 pname = "xf86-video-apm"; 2258 2802 version = "1.3.0"; 2259 2803 builder = ./builder.sh; ··· 2265 2809 strictDeps = true; 2266 2810 nativeBuildInputs = [ pkg-config ]; 2267 2811 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2268 - meta.platforms = lib.platforms.unix; 2269 - }) {}; 2812 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2813 + meta = { 2814 + pkgConfigModules = [ ]; 2815 + platforms = lib.platforms.unix; 2816 + }; 2817 + })) {}; 2270 2818 2271 2819 # THIS IS A GENERATED FILE. DO NOT EDIT! 2272 - xf86videoark = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 2820 + xf86videoark = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2273 2821 pname = "xf86-video-ark"; 2274 2822 version = "0.7.6"; 2275 2823 builder = ./builder.sh; ··· 2281 2829 strictDeps = true; 2282 2830 nativeBuildInputs = [ pkg-config ]; 2283 2831 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2284 - meta.platforms = lib.platforms.unix; 2285 - }) {}; 2832 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2833 + meta = { 2834 + pkgConfigModules = [ ]; 2835 + platforms = lib.platforms.unix; 2836 + }; 2837 + })) {}; 2286 2838 2287 2839 # THIS IS A GENERATED FILE. DO NOT EDIT! 2288 - xf86videoast = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 2840 + xf86videoast = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2289 2841 pname = "xf86-video-ast"; 2290 2842 version = "1.1.6"; 2291 2843 builder = ./builder.sh; ··· 2297 2849 strictDeps = true; 2298 2850 nativeBuildInputs = [ pkg-config ]; 2299 2851 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2300 - meta.platforms = lib.platforms.unix; 2301 - }) {}; 2852 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2853 + meta = { 2854 + pkgConfigModules = [ ]; 2855 + platforms = lib.platforms.unix; 2856 + }; 2857 + })) {}; 2302 2858 2303 2859 # THIS IS A GENERATED FILE. DO NOT EDIT! 2304 - xf86videoati = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, mesa, libGL, libdrm, udev, libpciaccess, xorgserver }: stdenv.mkDerivation { 2860 + xf86videoati = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, mesa, libGL, libdrm, udev, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2305 2861 pname = "xf86-video-ati"; 2306 2862 version = "5eba006e4129e8015b822f9e1d2f1e613e252cda"; 2307 2863 builder = ./builder.sh; ··· 2313 2869 strictDeps = true; 2314 2870 nativeBuildInputs = [ pkg-config ]; 2315 2871 buildInputs = [ xorgproto mesa libGL libdrm udev libpciaccess xorgserver ]; 2316 - meta.platforms = lib.platforms.unix; 2317 - }) {}; 2872 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2873 + meta = { 2874 + pkgConfigModules = [ ]; 2875 + platforms = lib.platforms.unix; 2876 + }; 2877 + })) {}; 2318 2878 2319 2879 # THIS IS A GENERATED FILE. DO NOT EDIT! 2320 - xf86videochips = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 2880 + xf86videochips = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2321 2881 pname = "xf86-video-chips"; 2322 2882 version = "1.4.0"; 2323 2883 builder = ./builder.sh; ··· 2329 2889 strictDeps = true; 2330 2890 nativeBuildInputs = [ pkg-config ]; 2331 2891 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2332 - meta.platforms = lib.platforms.unix; 2333 - }) {}; 2892 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2893 + meta = { 2894 + pkgConfigModules = [ ]; 2895 + platforms = lib.platforms.unix; 2896 + }; 2897 + })) {}; 2334 2898 2335 2899 # THIS IS A GENERATED FILE. DO NOT EDIT! 2336 - xf86videocirrus = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 2900 + xf86videocirrus = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2337 2901 pname = "xf86-video-cirrus"; 2338 2902 version = "1.6.0"; 2339 2903 builder = ./builder.sh; ··· 2345 2909 strictDeps = true; 2346 2910 nativeBuildInputs = [ pkg-config ]; 2347 2911 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2348 - meta.platforms = lib.platforms.unix; 2349 - }) {}; 2912 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2913 + meta = { 2914 + pkgConfigModules = [ ]; 2915 + platforms = lib.platforms.unix; 2916 + }; 2917 + })) {}; 2350 2918 2351 2919 # THIS IS A GENERATED FILE. DO NOT EDIT! 2352 - xf86videodummy = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver }: stdenv.mkDerivation { 2920 + xf86videodummy = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2353 2921 pname = "xf86-video-dummy"; 2354 2922 version = "0.4.1"; 2355 2923 builder = ./builder.sh; ··· 2361 2929 strictDeps = true; 2362 2930 nativeBuildInputs = [ pkg-config ]; 2363 2931 buildInputs = [ xorgproto xorgserver ]; 2364 - meta.platforms = lib.platforms.unix; 2365 - }) {}; 2932 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2933 + meta = { 2934 + pkgConfigModules = [ ]; 2935 + platforms = lib.platforms.unix; 2936 + }; 2937 + })) {}; 2366 2938 2367 2939 # THIS IS A GENERATED FILE. DO NOT EDIT! 2368 - xf86videofbdev = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 2940 + xf86videofbdev = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2369 2941 pname = "xf86-video-fbdev"; 2370 2942 version = "0.5.0"; 2371 2943 builder = ./builder.sh; ··· 2377 2949 strictDeps = true; 2378 2950 nativeBuildInputs = [ pkg-config ]; 2379 2951 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2380 - meta.platforms = lib.platforms.unix; 2381 - }) {}; 2952 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2953 + meta = { 2954 + pkgConfigModules = [ ]; 2955 + platforms = lib.platforms.unix; 2956 + }; 2957 + })) {}; 2382 2958 2383 2959 # THIS IS A GENERATED FILE. DO NOT EDIT! 2384 - xf86videogeode = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 2960 + xf86videogeode = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2385 2961 pname = "xf86-video-geode"; 2386 2962 version = "2.11.21"; 2387 2963 builder = ./builder.sh; ··· 2393 2969 strictDeps = true; 2394 2970 nativeBuildInputs = [ pkg-config ]; 2395 2971 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2396 - meta.platforms = lib.platforms.unix; 2397 - }) {}; 2972 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2973 + meta = { 2974 + pkgConfigModules = [ ]; 2975 + platforms = lib.platforms.unix; 2976 + }; 2977 + })) {}; 2398 2978 2399 2979 # THIS IS A GENERATED FILE. DO NOT EDIT! 2400 - xf86videoglide = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver }: stdenv.mkDerivation { 2980 + xf86videoglide = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2401 2981 pname = "xf86-video-glide"; 2402 2982 version = "1.2.2"; 2403 2983 builder = ./builder.sh; ··· 2409 2989 strictDeps = true; 2410 2990 nativeBuildInputs = [ pkg-config ]; 2411 2991 buildInputs = [ xorgproto xorgserver ]; 2412 - meta.platforms = lib.platforms.unix; 2413 - }) {}; 2992 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 2993 + meta = { 2994 + pkgConfigModules = [ ]; 2995 + platforms = lib.platforms.unix; 2996 + }; 2997 + })) {}; 2414 2998 2415 2999 # THIS IS A GENERATED FILE. DO NOT EDIT! 2416 - xf86videoglint = callPackage ({ stdenv, pkg-config, fetchurl, libpciaccess, xorgproto, xorgserver }: stdenv.mkDerivation { 3000 + xf86videoglint = callPackage ({ stdenv, pkg-config, fetchurl, libpciaccess, xorgproto, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2417 3001 pname = "xf86-video-glint"; 2418 3002 version = "1.2.9"; 2419 3003 builder = ./builder.sh; ··· 2425 3009 strictDeps = true; 2426 3010 nativeBuildInputs = [ pkg-config ]; 2427 3011 buildInputs = [ libpciaccess xorgproto xorgserver ]; 2428 - meta.platforms = lib.platforms.unix; 2429 - }) {}; 3012 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3013 + meta = { 3014 + pkgConfigModules = [ ]; 3015 + platforms = lib.platforms.unix; 3016 + }; 3017 + })) {}; 2430 3018 2431 3019 # THIS IS A GENERATED FILE. DO NOT EDIT! 2432 - xf86videoi128 = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3020 + xf86videoi128 = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2433 3021 pname = "xf86-video-i128"; 2434 3022 version = "1.4.1"; 2435 3023 builder = ./builder.sh; ··· 2441 3029 strictDeps = true; 2442 3030 nativeBuildInputs = [ pkg-config ]; 2443 3031 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2444 - meta.platforms = lib.platforms.unix; 2445 - }) {}; 3032 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3033 + meta = { 3034 + pkgConfigModules = [ ]; 3035 + platforms = lib.platforms.unix; 3036 + }; 3037 + })) {}; 2446 3038 2447 3039 # THIS IS A GENERATED FILE. DO NOT EDIT! 2448 - xf86videoi740 = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3040 + xf86videoi740 = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2449 3041 pname = "xf86-video-i740"; 2450 3042 version = "1.4.0"; 2451 3043 builder = ./builder.sh; ··· 2457 3049 strictDeps = true; 2458 3050 nativeBuildInputs = [ pkg-config ]; 2459 3051 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2460 - meta.platforms = lib.platforms.unix; 2461 - }) {}; 3052 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3053 + meta = { 3054 + pkgConfigModules = [ ]; 3055 + platforms = lib.platforms.unix; 3056 + }; 3057 + })) {}; 2462 3058 2463 3059 # THIS IS A GENERATED FILE. DO NOT EDIT! 2464 - xf86videointel = callPackage ({ stdenv, pkg-config, fetchurl, cairo, xorgproto, libdrm, libpng, udev, libpciaccess, libX11, xcbutil, libxcb, libXcursor, libXdamage, libXext, libXfixes, xorgserver, libXrandr, libXrender, libxshmfence, libXtst, libXvMC }: stdenv.mkDerivation { 3060 + xf86videointel = callPackage ({ stdenv, pkg-config, fetchurl, cairo, xorgproto, libdrm, libpng, udev, libpciaccess, libX11, xcbutil, libxcb, libXcursor, libXdamage, libXext, libXfixes, xorgserver, libXrandr, libXrender, libxshmfence, libXtst, libXvMC, testers }: stdenv.mkDerivation (finalAttrs: { 2465 3061 pname = "xf86-video-intel"; 2466 3062 version = "2.99.917"; 2467 3063 builder = ./builder.sh; ··· 2473 3069 strictDeps = true; 2474 3070 nativeBuildInputs = [ pkg-config ]; 2475 3071 buildInputs = [ cairo xorgproto libdrm libpng udev libpciaccess libX11 xcbutil libxcb libXcursor libXdamage libXext libXfixes xorgserver libXrandr libXrender libxshmfence libXtst libXvMC ]; 2476 - meta.platforms = lib.platforms.unix; 2477 - }) {}; 3072 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3073 + meta = { 3074 + pkgConfigModules = [ ]; 3075 + platforms = lib.platforms.unix; 3076 + }; 3077 + })) {}; 2478 3078 2479 3079 # THIS IS A GENERATED FILE. DO NOT EDIT! 2480 - xf86videomga = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, libpciaccess, xorgserver }: stdenv.mkDerivation { 3080 + xf86videomga = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2481 3081 pname = "xf86-video-mga"; 2482 3082 version = "2.0.1"; 2483 3083 builder = ./builder.sh; ··· 2489 3089 strictDeps = true; 2490 3090 nativeBuildInputs = [ pkg-config ]; 2491 3091 buildInputs = [ xorgproto libdrm libpciaccess xorgserver ]; 2492 - meta.platforms = lib.platforms.unix; 2493 - }) {}; 3092 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3093 + meta = { 3094 + pkgConfigModules = [ ]; 3095 + platforms = lib.platforms.unix; 3096 + }; 3097 + })) {}; 2494 3098 2495 3099 # THIS IS A GENERATED FILE. DO NOT EDIT! 2496 - xf86videoneomagic = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3100 + xf86videoneomagic = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2497 3101 pname = "xf86-video-neomagic"; 2498 3102 version = "1.3.1"; 2499 3103 builder = ./builder.sh; ··· 2505 3109 strictDeps = true; 2506 3110 nativeBuildInputs = [ pkg-config ]; 2507 3111 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2508 - meta.platforms = lib.platforms.unix; 2509 - }) {}; 3112 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3113 + meta = { 3114 + pkgConfigModules = [ ]; 3115 + platforms = lib.platforms.unix; 3116 + }; 3117 + })) {}; 2510 3118 2511 3119 # THIS IS A GENERATED FILE. DO NOT EDIT! 2512 - xf86videonewport = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver }: stdenv.mkDerivation { 3120 + xf86videonewport = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2513 3121 pname = "xf86-video-newport"; 2514 3122 version = "0.2.4"; 2515 3123 builder = ./builder.sh; ··· 2521 3129 strictDeps = true; 2522 3130 nativeBuildInputs = [ pkg-config ]; 2523 3131 buildInputs = [ xorgproto xorgserver ]; 2524 - meta.platforms = lib.platforms.unix; 2525 - }) {}; 3132 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3133 + meta = { 3134 + pkgConfigModules = [ ]; 3135 + platforms = lib.platforms.unix; 3136 + }; 3137 + })) {}; 2526 3138 2527 3139 # THIS IS A GENERATED FILE. DO NOT EDIT! 2528 - xf86videonouveau = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, udev, libpciaccess, xorgserver }: stdenv.mkDerivation { 3140 + xf86videonouveau = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, udev, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2529 3141 pname = "xf86-video-nouveau"; 2530 3142 version = "3ee7cbca8f9144a3bb5be7f71ce70558f548d268"; 2531 3143 builder = ./builder.sh; ··· 2537 3149 strictDeps = true; 2538 3150 nativeBuildInputs = [ pkg-config ]; 2539 3151 buildInputs = [ xorgproto libdrm udev libpciaccess xorgserver ]; 2540 - meta.platforms = lib.platforms.unix; 2541 - }) {}; 3152 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3153 + meta = { 3154 + pkgConfigModules = [ ]; 3155 + platforms = lib.platforms.unix; 3156 + }; 3157 + })) {}; 2542 3158 2543 3159 # THIS IS A GENERATED FILE. DO NOT EDIT! 2544 - xf86videonv = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3160 + xf86videonv = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2545 3161 pname = "xf86-video-nv"; 2546 3162 version = "2.1.22"; 2547 3163 builder = ./builder.sh; ··· 2553 3169 strictDeps = true; 2554 3170 nativeBuildInputs = [ pkg-config ]; 2555 3171 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2556 - meta.platforms = lib.platforms.unix; 2557 - }) {}; 3172 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3173 + meta = { 3174 + pkgConfigModules = [ ]; 3175 + platforms = lib.platforms.unix; 3176 + }; 3177 + })) {}; 2558 3178 2559 3179 # THIS IS A GENERATED FILE. DO NOT EDIT! 2560 - xf86videoomap = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, xorgserver }: stdenv.mkDerivation { 3180 + xf86videoomap = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2561 3181 pname = "xf86-video-omap"; 2562 3182 version = "0.4.5"; 2563 3183 builder = ./builder.sh; ··· 2569 3189 strictDeps = true; 2570 3190 nativeBuildInputs = [ pkg-config ]; 2571 3191 buildInputs = [ xorgproto libdrm xorgserver ]; 2572 - meta.platforms = lib.platforms.unix; 2573 - }) {}; 3192 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3193 + meta = { 3194 + pkgConfigModules = [ ]; 3195 + platforms = lib.platforms.unix; 3196 + }; 3197 + })) {}; 2574 3198 2575 3199 # THIS IS A GENERATED FILE. DO NOT EDIT! 2576 - xf86videoopenchrome = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, udev, libpciaccess, libX11, libXext, xorgserver, libXvMC }: stdenv.mkDerivation { 3200 + xf86videoopenchrome = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, udev, libpciaccess, libX11, libXext, xorgserver, libXvMC, testers }: stdenv.mkDerivation (finalAttrs: { 2577 3201 pname = "xf86-video-openchrome"; 2578 3202 version = "0.6.0"; 2579 3203 builder = ./builder.sh; ··· 2585 3209 strictDeps = true; 2586 3210 nativeBuildInputs = [ pkg-config ]; 2587 3211 buildInputs = [ xorgproto libdrm udev libpciaccess libX11 libXext xorgserver libXvMC ]; 2588 - meta.platforms = lib.platforms.unix; 2589 - }) {}; 3212 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3213 + meta = { 3214 + pkgConfigModules = [ ]; 3215 + platforms = lib.platforms.unix; 3216 + }; 3217 + })) {}; 2590 3218 2591 3219 # THIS IS A GENERATED FILE. DO NOT EDIT! 2592 - xf86videoqxl = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, udev, libpciaccess, xorgserver }: stdenv.mkDerivation { 3220 + xf86videoqxl = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, udev, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2593 3221 pname = "xf86-video-qxl"; 2594 3222 version = "0.1.6"; 2595 3223 builder = ./builder.sh; ··· 2601 3229 strictDeps = true; 2602 3230 nativeBuildInputs = [ pkg-config ]; 2603 3231 buildInputs = [ xorgproto libdrm udev libpciaccess xorgserver ]; 2604 - meta.platforms = lib.platforms.unix; 2605 - }) {}; 3232 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3233 + meta = { 3234 + pkgConfigModules = [ ]; 3235 + platforms = lib.platforms.unix; 3236 + }; 3237 + })) {}; 2606 3238 2607 3239 # THIS IS A GENERATED FILE. DO NOT EDIT! 2608 - xf86videor128 = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, libpciaccess, xorgserver }: stdenv.mkDerivation { 3240 + xf86videor128 = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2609 3241 pname = "xf86-video-r128"; 2610 3242 version = "6.12.1"; 2611 3243 builder = ./builder.sh; ··· 2617 3249 strictDeps = true; 2618 3250 nativeBuildInputs = [ pkg-config ]; 2619 3251 buildInputs = [ xorgproto libdrm libpciaccess xorgserver ]; 2620 - meta.platforms = lib.platforms.unix; 2621 - }) {}; 3252 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3253 + meta = { 3254 + pkgConfigModules = [ ]; 3255 + platforms = lib.platforms.unix; 3256 + }; 3257 + })) {}; 2622 3258 2623 3259 # THIS IS A GENERATED FILE. DO NOT EDIT! 2624 - xf86videorendition = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3260 + xf86videorendition = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2625 3261 pname = "xf86-video-rendition"; 2626 3262 version = "4.2.7"; 2627 3263 builder = ./builder.sh; ··· 2633 3269 strictDeps = true; 2634 3270 nativeBuildInputs = [ pkg-config ]; 2635 3271 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2636 - meta.platforms = lib.platforms.unix; 2637 - }) {}; 3272 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3273 + meta = { 3274 + pkgConfigModules = [ ]; 3275 + platforms = lib.platforms.unix; 3276 + }; 3277 + })) {}; 2638 3278 2639 3279 # THIS IS A GENERATED FILE. DO NOT EDIT! 2640 - xf86videos3virge = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3280 + xf86videos3virge = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2641 3281 pname = "xf86-video-s3virge"; 2642 3282 version = "1.11.1"; 2643 3283 builder = ./builder.sh; ··· 2649 3289 strictDeps = true; 2650 3290 nativeBuildInputs = [ pkg-config ]; 2651 3291 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2652 - meta.platforms = lib.platforms.unix; 2653 - }) {}; 3292 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3293 + meta = { 3294 + pkgConfigModules = [ ]; 3295 + platforms = lib.platforms.unix; 3296 + }; 3297 + })) {}; 2654 3298 2655 3299 # THIS IS A GENERATED FILE. DO NOT EDIT! 2656 - xf86videosavage = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, libpciaccess, xorgserver }: stdenv.mkDerivation { 3300 + xf86videosavage = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2657 3301 pname = "xf86-video-savage"; 2658 3302 version = "2.4.0"; 2659 3303 builder = ./builder.sh; ··· 2665 3309 strictDeps = true; 2666 3310 nativeBuildInputs = [ pkg-config ]; 2667 3311 buildInputs = [ xorgproto libdrm libpciaccess xorgserver ]; 2668 - meta.platforms = lib.platforms.unix; 2669 - }) {}; 3312 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3313 + meta = { 3314 + pkgConfigModules = [ ]; 3315 + platforms = lib.platforms.unix; 3316 + }; 3317 + })) {}; 2670 3318 2671 3319 # THIS IS A GENERATED FILE. DO NOT EDIT! 2672 - xf86videosiliconmotion = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3320 + xf86videosiliconmotion = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2673 3321 pname = "xf86-video-siliconmotion"; 2674 3322 version = "1.7.10"; 2675 3323 builder = ./builder.sh; ··· 2681 3329 strictDeps = true; 2682 3330 nativeBuildInputs = [ pkg-config ]; 2683 3331 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2684 - meta.platforms = lib.platforms.unix; 2685 - }) {}; 3332 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3333 + meta = { 3334 + pkgConfigModules = [ ]; 3335 + platforms = lib.platforms.unix; 3336 + }; 3337 + })) {}; 2686 3338 2687 3339 # THIS IS A GENERATED FILE. DO NOT EDIT! 2688 - xf86videosis = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, libpciaccess, xorgserver }: stdenv.mkDerivation { 3340 + xf86videosis = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2689 3341 pname = "xf86-video-sis"; 2690 3342 version = "0.12.0"; 2691 3343 builder = ./builder.sh; ··· 2697 3349 strictDeps = true; 2698 3350 nativeBuildInputs = [ pkg-config ]; 2699 3351 buildInputs = [ xorgproto libdrm libpciaccess xorgserver ]; 2700 - meta.platforms = lib.platforms.unix; 2701 - }) {}; 3352 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3353 + meta = { 3354 + pkgConfigModules = [ ]; 3355 + platforms = lib.platforms.unix; 3356 + }; 3357 + })) {}; 2702 3358 2703 3359 # THIS IS A GENERATED FILE. DO NOT EDIT! 2704 - xf86videosisusb = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3360 + xf86videosisusb = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2705 3361 pname = "xf86-video-sisusb"; 2706 3362 version = "0.9.7"; 2707 3363 builder = ./builder.sh; ··· 2713 3369 strictDeps = true; 2714 3370 nativeBuildInputs = [ pkg-config ]; 2715 3371 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2716 - meta.platforms = lib.platforms.unix; 2717 - }) {}; 3372 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3373 + meta = { 3374 + pkgConfigModules = [ ]; 3375 + platforms = lib.platforms.unix; 3376 + }; 3377 + })) {}; 2718 3378 2719 3379 # THIS IS A GENERATED FILE. DO NOT EDIT! 2720 - xf86videosuncg6 = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver }: stdenv.mkDerivation { 3380 + xf86videosuncg6 = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2721 3381 pname = "xf86-video-suncg6"; 2722 3382 version = "1.1.3"; 2723 3383 builder = ./builder.sh; ··· 2729 3389 strictDeps = true; 2730 3390 nativeBuildInputs = [ pkg-config ]; 2731 3391 buildInputs = [ xorgproto xorgserver ]; 2732 - meta.platforms = lib.platforms.unix; 2733 - }) {}; 3392 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3393 + meta = { 3394 + pkgConfigModules = [ ]; 3395 + platforms = lib.platforms.unix; 3396 + }; 3397 + })) {}; 2734 3398 2735 3399 # THIS IS A GENERATED FILE. DO NOT EDIT! 2736 - xf86videosunffb = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver }: stdenv.mkDerivation { 3400 + xf86videosunffb = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2737 3401 pname = "xf86-video-sunffb"; 2738 3402 version = "1.2.3"; 2739 3403 builder = ./builder.sh; ··· 2745 3409 strictDeps = true; 2746 3410 nativeBuildInputs = [ pkg-config ]; 2747 3411 buildInputs = [ xorgproto xorgserver ]; 2748 - meta.platforms = lib.platforms.unix; 2749 - }) {}; 3412 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3413 + meta = { 3414 + pkgConfigModules = [ ]; 3415 + platforms = lib.platforms.unix; 3416 + }; 3417 + })) {}; 2750 3418 2751 3419 # THIS IS A GENERATED FILE. DO NOT EDIT! 2752 - xf86videosunleo = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver }: stdenv.mkDerivation { 3420 + xf86videosunleo = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2753 3421 pname = "xf86-video-sunleo"; 2754 3422 version = "1.2.3"; 2755 3423 builder = ./builder.sh; ··· 2761 3429 strictDeps = true; 2762 3430 nativeBuildInputs = [ pkg-config ]; 2763 3431 buildInputs = [ xorgproto xorgserver ]; 2764 - meta.platforms = lib.platforms.unix; 2765 - }) {}; 3432 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3433 + meta = { 3434 + pkgConfigModules = [ ]; 3435 + platforms = lib.platforms.unix; 3436 + }; 3437 + })) {}; 2766 3438 2767 3439 # THIS IS A GENERATED FILE. DO NOT EDIT! 2768 - xf86videotdfx = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, libpciaccess, xorgserver }: stdenv.mkDerivation { 3440 + xf86videotdfx = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2769 3441 pname = "xf86-video-tdfx"; 2770 3442 version = "1.5.0"; 2771 3443 builder = ./builder.sh; ··· 2777 3449 strictDeps = true; 2778 3450 nativeBuildInputs = [ pkg-config ]; 2779 3451 buildInputs = [ xorgproto libdrm libpciaccess xorgserver ]; 2780 - meta.platforms = lib.platforms.unix; 2781 - }) {}; 3452 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3453 + meta = { 3454 + pkgConfigModules = [ ]; 3455 + platforms = lib.platforms.unix; 3456 + }; 3457 + })) {}; 2782 3458 2783 3459 # THIS IS A GENERATED FILE. DO NOT EDIT! 2784 - xf86videotga = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3460 + xf86videotga = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2785 3461 pname = "xf86-video-tga"; 2786 3462 version = "1.2.2"; 2787 3463 builder = ./builder.sh; ··· 2793 3469 strictDeps = true; 2794 3470 nativeBuildInputs = [ pkg-config ]; 2795 3471 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2796 - meta.platforms = lib.platforms.unix; 2797 - }) {}; 3472 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3473 + meta = { 3474 + pkgConfigModules = [ ]; 3475 + platforms = lib.platforms.unix; 3476 + }; 3477 + })) {}; 2798 3478 2799 3479 # THIS IS A GENERATED FILE. DO NOT EDIT! 2800 - xf86videotrident = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3480 + xf86videotrident = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2801 3481 pname = "xf86-video-trident"; 2802 3482 version = "1.4.0"; 2803 3483 builder = ./builder.sh; ··· 2809 3489 strictDeps = true; 2810 3490 nativeBuildInputs = [ pkg-config ]; 2811 3491 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2812 - meta.platforms = lib.platforms.unix; 2813 - }) {}; 3492 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3493 + meta = { 3494 + pkgConfigModules = [ ]; 3495 + platforms = lib.platforms.unix; 3496 + }; 3497 + })) {}; 2814 3498 2815 3499 # THIS IS A GENERATED FILE. DO NOT EDIT! 2816 - xf86videov4l = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver }: stdenv.mkDerivation { 3500 + xf86videov4l = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2817 3501 pname = "xf86-video-v4l"; 2818 3502 version = "0.3.0"; 2819 3503 builder = ./builder.sh; ··· 2825 3509 strictDeps = true; 2826 3510 nativeBuildInputs = [ pkg-config ]; 2827 3511 buildInputs = [ xorgproto xorgserver ]; 2828 - meta.platforms = lib.platforms.unix; 2829 - }) {}; 3512 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3513 + meta = { 3514 + pkgConfigModules = [ ]; 3515 + platforms = lib.platforms.unix; 3516 + }; 3517 + })) {}; 2830 3518 2831 3519 # THIS IS A GENERATED FILE. DO NOT EDIT! 2832 - xf86videovboxvideo = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3520 + xf86videovboxvideo = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2833 3521 pname = "xf86-video-vboxvideo"; 2834 3522 version = "1.0.0"; 2835 3523 builder = ./builder.sh; ··· 2841 3529 strictDeps = true; 2842 3530 nativeBuildInputs = [ pkg-config ]; 2843 3531 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2844 - meta.platforms = lib.platforms.unix; 2845 - }) {}; 3532 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3533 + meta = { 3534 + pkgConfigModules = [ ]; 3535 + platforms = lib.platforms.unix; 3536 + }; 3537 + })) {}; 2846 3538 2847 3539 # THIS IS A GENERATED FILE. DO NOT EDIT! 2848 - xf86videovesa = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3540 + xf86videovesa = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2849 3541 pname = "xf86-video-vesa"; 2850 3542 version = "2.6.0"; 2851 3543 builder = ./builder.sh; ··· 2857 3549 strictDeps = true; 2858 3550 nativeBuildInputs = [ pkg-config ]; 2859 3551 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2860 - meta.platforms = lib.platforms.unix; 2861 - }) {}; 3552 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3553 + meta = { 3554 + pkgConfigModules = [ ]; 3555 + platforms = lib.platforms.unix; 3556 + }; 3557 + })) {}; 2862 3558 2863 3559 # THIS IS A GENERATED FILE. DO NOT EDIT! 2864 - xf86videovmware = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, udev, libpciaccess, libX11, libXext, xorgserver }: stdenv.mkDerivation { 3560 + xf86videovmware = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, udev, libpciaccess, libX11, libXext, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2865 3561 pname = "xf86-video-vmware"; 2866 3562 version = "13.4.0"; 2867 3563 builder = ./builder.sh; ··· 2873 3569 strictDeps = true; 2874 3570 nativeBuildInputs = [ pkg-config ]; 2875 3571 buildInputs = [ xorgproto libdrm udev libpciaccess libX11 libXext xorgserver ]; 2876 - meta.platforms = lib.platforms.unix; 2877 - }) {}; 3572 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3573 + meta = { 3574 + pkgConfigModules = [ ]; 3575 + platforms = lib.platforms.unix; 3576 + }; 3577 + })) {}; 2878 3578 2879 3579 # THIS IS A GENERATED FILE. DO NOT EDIT! 2880 - xf86videovoodoo = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation { 3580 + xf86videovoodoo = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2881 3581 pname = "xf86-video-voodoo"; 2882 3582 version = "1.2.6"; 2883 3583 builder = ./builder.sh; ··· 2889 3589 strictDeps = true; 2890 3590 nativeBuildInputs = [ pkg-config ]; 2891 3591 buildInputs = [ xorgproto libpciaccess xorgserver ]; 2892 - meta.platforms = lib.platforms.unix; 2893 - }) {}; 3592 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3593 + meta = { 3594 + pkgConfigModules = [ ]; 3595 + platforms = lib.platforms.unix; 3596 + }; 3597 + })) {}; 2894 3598 2895 3599 # THIS IS A GENERATED FILE. DO NOT EDIT! 2896 - xf86videowsfb = callPackage ({ stdenv, pkg-config, fetchurl, xorgserver, xorgproto }: stdenv.mkDerivation { 3600 + xf86videowsfb = callPackage ({ stdenv, pkg-config, fetchurl, xorgserver, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 2897 3601 pname = "xf86-video-wsfb"; 2898 3602 version = "0.4.0"; 2899 3603 builder = ./builder.sh; ··· 2905 3609 strictDeps = true; 2906 3610 nativeBuildInputs = [ pkg-config ]; 2907 3611 buildInputs = [ xorgserver xorgproto ]; 2908 - meta.platforms = lib.platforms.unix; 2909 - }) {}; 3612 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3613 + meta = { 3614 + pkgConfigModules = [ ]; 3615 + platforms = lib.platforms.unix; 3616 + }; 3617 + })) {}; 2910 3618 2911 3619 # THIS IS A GENERATED FILE. DO NOT EDIT! 2912 - xf86videoxgi = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, libpciaccess, xorgserver }: stdenv.mkDerivation { 3620 + xf86videoxgi = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libdrm, libpciaccess, xorgserver, testers }: stdenv.mkDerivation (finalAttrs: { 2913 3621 pname = "xf86-video-xgi"; 2914 3622 version = "1.6.1"; 2915 3623 builder = ./builder.sh; ··· 2921 3629 strictDeps = true; 2922 3630 nativeBuildInputs = [ pkg-config ]; 2923 3631 buildInputs = [ xorgproto libdrm libpciaccess xorgserver ]; 2924 - meta.platforms = lib.platforms.unix; 2925 - }) {}; 3632 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3633 + meta = { 3634 + pkgConfigModules = [ ]; 3635 + platforms = lib.platforms.unix; 3636 + }; 3637 + })) {}; 2926 3638 2927 3639 # THIS IS A GENERATED FILE. DO NOT EDIT! 2928 - xfd = callPackage ({ stdenv, pkg-config, fetchurl, libxkbfile, fontconfig, libXaw, libXft, libXmu, xorgproto, libXrender, libXt, gettext, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3640 + xfd = callPackage ({ stdenv, pkg-config, fetchurl, libxkbfile, fontconfig, libXaw, libXft, libXmu, xorgproto, libXrender, libXt, gettext, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 2929 3641 pname = "xfd"; 2930 3642 version = "1.1.4"; 2931 3643 builder = ./builder.sh; ··· 2937 3649 strictDeps = true; 2938 3650 nativeBuildInputs = [ pkg-config gettext wrapWithXFileSearchPathHook ]; 2939 3651 buildInputs = [ libxkbfile fontconfig libXaw libXft libXmu xorgproto libXrender libXt ]; 2940 - meta.platforms = lib.platforms.unix; 2941 - }) {}; 3652 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3653 + meta = { 3654 + pkgConfigModules = [ ]; 3655 + platforms = lib.platforms.unix; 3656 + }; 3657 + })) {}; 2942 3658 2943 3659 # THIS IS A GENERATED FILE. DO NOT EDIT! 2944 - xfontsel = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3660 + xfontsel = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 2945 3661 pname = "xfontsel"; 2946 3662 version = "1.1.0"; 2947 3663 builder = ./builder.sh; ··· 2953 3669 strictDeps = true; 2954 3670 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 2955 3671 buildInputs = [ libX11 libXaw libXmu xorgproto libXt ]; 2956 - meta.platforms = lib.platforms.unix; 2957 - }) {}; 3672 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3673 + meta = { 3674 + pkgConfigModules = [ ]; 3675 + platforms = lib.platforms.unix; 3676 + }; 3677 + })) {}; 2958 3678 2959 3679 # THIS IS A GENERATED FILE. DO NOT EDIT! 2960 - xfs = callPackage ({ stdenv, pkg-config, fetchurl, libXfont2, xorgproto, xtrans }: stdenv.mkDerivation { 3680 + xfs = callPackage ({ stdenv, pkg-config, fetchurl, libXfont2, xorgproto, xtrans, testers }: stdenv.mkDerivation (finalAttrs: { 2961 3681 pname = "xfs"; 2962 3682 version = "1.2.1"; 2963 3683 builder = ./builder.sh; ··· 2969 3689 strictDeps = true; 2970 3690 nativeBuildInputs = [ pkg-config ]; 2971 3691 buildInputs = [ libXfont2 xorgproto xtrans ]; 2972 - meta.platforms = lib.platforms.unix; 2973 - }) {}; 3692 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3693 + meta = { 3694 + pkgConfigModules = [ ]; 3695 + platforms = lib.platforms.unix; 3696 + }; 3697 + })) {}; 2974 3698 2975 3699 # THIS IS A GENERATED FILE. DO NOT EDIT! 2976 - xfsinfo = callPackage ({ stdenv, pkg-config, fetchurl, libFS, xorgproto }: stdenv.mkDerivation { 3700 + xfsinfo = callPackage ({ stdenv, pkg-config, fetchurl, libFS, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 2977 3701 pname = "xfsinfo"; 2978 3702 version = "1.0.7"; 2979 3703 builder = ./builder.sh; ··· 2985 3709 strictDeps = true; 2986 3710 nativeBuildInputs = [ pkg-config ]; 2987 3711 buildInputs = [ libFS xorgproto ]; 2988 - meta.platforms = lib.platforms.unix; 2989 - }) {}; 3712 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3713 + meta = { 3714 + pkgConfigModules = [ ]; 3715 + platforms = lib.platforms.unix; 3716 + }; 3717 + })) {}; 2990 3718 2991 3719 # THIS IS A GENERATED FILE. DO NOT EDIT! 2992 - xgamma = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXxf86vm }: stdenv.mkDerivation { 3720 + xgamma = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXxf86vm, testers }: stdenv.mkDerivation (finalAttrs: { 2993 3721 pname = "xgamma"; 2994 3722 version = "1.0.7"; 2995 3723 builder = ./builder.sh; ··· 3001 3729 strictDeps = true; 3002 3730 nativeBuildInputs = [ pkg-config ]; 3003 3731 buildInputs = [ libX11 xorgproto libXxf86vm ]; 3004 - meta.platforms = lib.platforms.unix; 3005 - }) {}; 3732 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3733 + meta = { 3734 + pkgConfigModules = [ ]; 3735 + platforms = lib.platforms.unix; 3736 + }; 3737 + })) {}; 3006 3738 3007 3739 # THIS IS A GENERATED FILE. DO NOT EDIT! 3008 - xgc = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3740 + xgc = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 3009 3741 pname = "xgc"; 3010 3742 version = "1.0.6"; 3011 3743 builder = ./builder.sh; ··· 3017 3749 strictDeps = true; 3018 3750 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 3019 3751 buildInputs = [ libXaw libXt ]; 3020 - meta.platforms = lib.platforms.unix; 3021 - }) {}; 3752 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3753 + meta = { 3754 + pkgConfigModules = [ ]; 3755 + platforms = lib.platforms.unix; 3756 + }; 3757 + })) {}; 3022 3758 3023 3759 # THIS IS A GENERATED FILE. DO NOT EDIT! 3024 - xhost = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXau, libXmu, xorgproto, gettext }: stdenv.mkDerivation { 3760 + xhost = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXau, libXmu, xorgproto, gettext, testers }: stdenv.mkDerivation (finalAttrs: { 3025 3761 pname = "xhost"; 3026 3762 version = "1.0.9"; 3027 3763 builder = ./builder.sh; ··· 3033 3769 strictDeps = true; 3034 3770 nativeBuildInputs = [ pkg-config gettext ]; 3035 3771 buildInputs = [ libX11 libXau libXmu xorgproto ]; 3036 - meta.platforms = lib.platforms.unix; 3037 - }) {}; 3772 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3773 + meta = { 3774 + pkgConfigModules = [ ]; 3775 + platforms = lib.platforms.unix; 3776 + }; 3777 + })) {}; 3038 3778 3039 3779 # THIS IS A GENERATED FILE. DO NOT EDIT! 3040 - xinit = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 3780 + xinit = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3041 3781 pname = "xinit"; 3042 3782 version = "1.4.2"; 3043 3783 builder = ./builder.sh; ··· 3049 3789 strictDeps = true; 3050 3790 nativeBuildInputs = [ pkg-config ]; 3051 3791 buildInputs = [ libX11 xorgproto ]; 3052 - meta.platforms = lib.platforms.unix; 3053 - }) {}; 3792 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3793 + meta = { 3794 + pkgConfigModules = [ ]; 3795 + platforms = lib.platforms.unix; 3796 + }; 3797 + })) {}; 3054 3798 3055 3799 # THIS IS A GENERATED FILE. DO NOT EDIT! 3056 - xinput = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXi, libXinerama, libXrandr }: stdenv.mkDerivation { 3800 + xinput = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXext, libXi, libXinerama, libXrandr, testers }: stdenv.mkDerivation (finalAttrs: { 3057 3801 pname = "xinput"; 3058 3802 version = "1.6.4"; 3059 3803 builder = ./builder.sh; ··· 3065 3809 strictDeps = true; 3066 3810 nativeBuildInputs = [ pkg-config ]; 3067 3811 buildInputs = [ xorgproto libX11 libXext libXi libXinerama libXrandr ]; 3068 - meta.platforms = lib.platforms.unix; 3069 - }) {}; 3812 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3813 + meta = { 3814 + pkgConfigModules = [ ]; 3815 + platforms = lib.platforms.unix; 3816 + }; 3817 + })) {}; 3070 3818 3071 3819 # THIS IS A GENERATED FILE. DO NOT EDIT! 3072 - xkbcomp = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile, xorgproto }: stdenv.mkDerivation { 3820 + xkbcomp = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3073 3821 pname = "xkbcomp"; 3074 3822 version = "1.4.6"; 3075 3823 builder = ./builder.sh; ··· 3081 3829 strictDeps = true; 3082 3830 nativeBuildInputs = [ pkg-config ]; 3083 3831 buildInputs = [ libX11 libxkbfile xorgproto ]; 3084 - meta.platforms = lib.platforms.unix; 3085 - }) {}; 3832 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3833 + meta = { 3834 + pkgConfigModules = [ "xkbcomp" ]; 3835 + platforms = lib.platforms.unix; 3836 + }; 3837 + })) {}; 3086 3838 3087 3839 # THIS IS A GENERATED FILE. DO NOT EDIT! 3088 - xkbevd = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile }: stdenv.mkDerivation { 3840 + xkbevd = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile, testers }: stdenv.mkDerivation (finalAttrs: { 3089 3841 pname = "xkbevd"; 3090 3842 version = "1.1.5"; 3091 3843 builder = ./builder.sh; ··· 3097 3849 strictDeps = true; 3098 3850 nativeBuildInputs = [ pkg-config ]; 3099 3851 buildInputs = [ libX11 libxkbfile ]; 3100 - meta.platforms = lib.platforms.unix; 3101 - }) {}; 3852 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3853 + meta = { 3854 + pkgConfigModules = [ ]; 3855 + platforms = lib.platforms.unix; 3856 + }; 3857 + })) {}; 3102 3858 3103 3859 # THIS IS A GENERATED FILE. DO NOT EDIT! 3104 - xkbprint = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile, xorgproto }: stdenv.mkDerivation { 3860 + xkbprint = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxkbfile, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3105 3861 pname = "xkbprint"; 3106 3862 version = "1.0.6"; 3107 3863 builder = ./builder.sh; ··· 3113 3869 strictDeps = true; 3114 3870 nativeBuildInputs = [ pkg-config ]; 3115 3871 buildInputs = [ libX11 libxkbfile xorgproto ]; 3116 - meta.platforms = lib.platforms.unix; 3117 - }) {}; 3872 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3873 + meta = { 3874 + pkgConfigModules = [ ]; 3875 + platforms = lib.platforms.unix; 3876 + }; 3877 + })) {}; 3118 3878 3119 3879 # THIS IS A GENERATED FILE. DO NOT EDIT! 3120 - xkbutils = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXaw, libXt }: stdenv.mkDerivation { 3880 + xkbutils = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, libX11, libXaw, libXt, testers }: stdenv.mkDerivation (finalAttrs: { 3121 3881 pname = "xkbutils"; 3122 3882 version = "1.0.5"; 3123 3883 builder = ./builder.sh; ··· 3129 3889 strictDeps = true; 3130 3890 nativeBuildInputs = [ pkg-config ]; 3131 3891 buildInputs = [ xorgproto libX11 libXaw libXt ]; 3132 - meta.platforms = lib.platforms.unix; 3133 - }) {}; 3892 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3893 + meta = { 3894 + pkgConfigModules = [ ]; 3895 + platforms = lib.platforms.unix; 3896 + }; 3897 + })) {}; 3134 3898 3135 3899 # THIS IS A GENERATED FILE. DO NOT EDIT! 3136 - xkeyboardconfig = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 3900 + xkeyboardconfig = callPackage ({ stdenv, pkg-config, fetchurl, testers }: stdenv.mkDerivation (finalAttrs: { 3137 3901 pname = "xkeyboard-config"; 3138 3902 version = "2.39"; 3139 3903 builder = ./builder.sh; ··· 3145 3909 strictDeps = true; 3146 3910 nativeBuildInputs = [ pkg-config ]; 3147 3911 buildInputs = [ ]; 3148 - meta.platforms = lib.platforms.unix; 3149 - }) {}; 3912 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3913 + meta = { 3914 + pkgConfigModules = [ ]; 3915 + platforms = lib.platforms.unix; 3916 + }; 3917 + })) {}; 3150 3918 3151 3919 # THIS IS A GENERATED FILE. DO NOT EDIT! 3152 - xkill = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation { 3920 + xkill = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3153 3921 pname = "xkill"; 3154 3922 version = "1.0.6"; 3155 3923 builder = ./builder.sh; ··· 3161 3929 strictDeps = true; 3162 3930 nativeBuildInputs = [ pkg-config ]; 3163 3931 buildInputs = [ libX11 libXmu xorgproto ]; 3164 - meta.platforms = lib.platforms.unix; 3165 - }) {}; 3932 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3933 + meta = { 3934 + pkgConfigModules = [ ]; 3935 + platforms = lib.platforms.unix; 3936 + }; 3937 + })) {}; 3166 3938 3167 3939 # THIS IS A GENERATED FILE. DO NOT EDIT! 3168 - xload = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, gettext, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 3940 + xload = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, xorgproto, libXt, gettext, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 3169 3941 pname = "xload"; 3170 3942 version = "1.1.4"; 3171 3943 builder = ./builder.sh; ··· 3177 3949 strictDeps = true; 3178 3950 nativeBuildInputs = [ pkg-config gettext wrapWithXFileSearchPathHook ]; 3179 3951 buildInputs = [ libX11 libXaw libXmu xorgproto libXt ]; 3180 - meta.platforms = lib.platforms.unix; 3181 - }) {}; 3952 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3953 + meta = { 3954 + pkgConfigModules = [ ]; 3955 + platforms = lib.platforms.unix; 3956 + }; 3957 + })) {}; 3182 3958 3183 3959 # THIS IS A GENERATED FILE. DO NOT EDIT! 3184 - xlsatoms = callPackage ({ stdenv, pkg-config, fetchurl, libxcb }: stdenv.mkDerivation { 3960 + xlsatoms = callPackage ({ stdenv, pkg-config, fetchurl, libxcb, testers }: stdenv.mkDerivation (finalAttrs: { 3185 3961 pname = "xlsatoms"; 3186 3962 version = "1.1.4"; 3187 3963 builder = ./builder.sh; ··· 3193 3969 strictDeps = true; 3194 3970 nativeBuildInputs = [ pkg-config ]; 3195 3971 buildInputs = [ libxcb ]; 3196 - meta.platforms = lib.platforms.unix; 3197 - }) {}; 3972 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3973 + meta = { 3974 + pkgConfigModules = [ ]; 3975 + platforms = lib.platforms.unix; 3976 + }; 3977 + })) {}; 3198 3978 3199 3979 # THIS IS A GENERATED FILE. DO NOT EDIT! 3200 - xlsclients = callPackage ({ stdenv, pkg-config, fetchurl, libxcb }: stdenv.mkDerivation { 3980 + xlsclients = callPackage ({ stdenv, pkg-config, fetchurl, libxcb, testers }: stdenv.mkDerivation (finalAttrs: { 3201 3981 pname = "xlsclients"; 3202 3982 version = "1.1.5"; 3203 3983 builder = ./builder.sh; ··· 3209 3989 strictDeps = true; 3210 3990 nativeBuildInputs = [ pkg-config ]; 3211 3991 buildInputs = [ libxcb ]; 3212 - meta.platforms = lib.platforms.unix; 3213 - }) {}; 3992 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 3993 + meta = { 3994 + pkgConfigModules = [ ]; 3995 + platforms = lib.platforms.unix; 3996 + }; 3997 + })) {}; 3214 3998 3215 3999 # THIS IS A GENERATED FILE. DO NOT EDIT! 3216 - xlsfonts = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 4000 + xlsfonts = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3217 4001 pname = "xlsfonts"; 3218 4002 version = "1.0.7"; 3219 4003 builder = ./builder.sh; ··· 3225 4009 strictDeps = true; 3226 4010 nativeBuildInputs = [ pkg-config ]; 3227 4011 buildInputs = [ libX11 xorgproto ]; 3228 - meta.platforms = lib.platforms.unix; 3229 - }) {}; 4012 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4013 + meta = { 4014 + pkgConfigModules = [ ]; 4015 + platforms = lib.platforms.unix; 4016 + }; 4017 + })) {}; 3230 4018 3231 4019 # THIS IS A GENERATED FILE. DO NOT EDIT! 3232 - xmag = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 4020 + xmag = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXaw, libXmu, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 3233 4021 pname = "xmag"; 3234 4022 version = "1.0.7"; 3235 4023 builder = ./builder.sh; ··· 3241 4029 strictDeps = true; 3242 4030 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 3243 4031 buildInputs = [ libX11 libXaw libXmu libXt ]; 3244 - meta.platforms = lib.platforms.unix; 3245 - }) {}; 4032 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4033 + meta = { 4034 + pkgConfigModules = [ ]; 4035 + platforms = lib.platforms.unix; 4036 + }; 4037 + })) {}; 3246 4038 3247 4039 # THIS IS A GENERATED FILE. DO NOT EDIT! 3248 - xmessage = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 4040 + xmessage = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 3249 4041 pname = "xmessage"; 3250 4042 version = "1.0.6"; 3251 4043 builder = ./builder.sh; ··· 3257 4049 strictDeps = true; 3258 4050 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 3259 4051 buildInputs = [ libXaw libXt ]; 3260 - meta.platforms = lib.platforms.unix; 3261 - }) {}; 4052 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4053 + meta = { 4054 + pkgConfigModules = [ ]; 4055 + platforms = lib.platforms.unix; 4056 + }; 4057 + })) {}; 3262 4058 3263 4059 # THIS IS A GENERATED FILE. DO NOT EDIT! 3264 - xmodmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 4060 + xmodmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3265 4061 pname = "xmodmap"; 3266 4062 version = "1.0.11"; 3267 4063 builder = ./builder.sh; ··· 3273 4069 strictDeps = true; 3274 4070 nativeBuildInputs = [ pkg-config ]; 3275 4071 buildInputs = [ libX11 xorgproto ]; 3276 - meta.platforms = lib.platforms.unix; 3277 - }) {}; 4072 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4073 + meta = { 4074 + pkgConfigModules = [ ]; 4075 + platforms = lib.platforms.unix; 4076 + }; 4077 + })) {}; 3278 4078 3279 4079 # THIS IS A GENERATED FILE. DO NOT EDIT! 3280 - xmore = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 4080 + xmore = callPackage ({ stdenv, pkg-config, fetchurl, libXaw, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 3281 4081 pname = "xmore"; 3282 4082 version = "1.0.3"; 3283 4083 builder = ./builder.sh; ··· 3289 4089 strictDeps = true; 3290 4090 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 3291 4091 buildInputs = [ libXaw libXt ]; 3292 - meta.platforms = lib.platforms.unix; 3293 - }) {}; 4092 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4093 + meta = { 4094 + pkgConfigModules = [ ]; 4095 + platforms = lib.platforms.unix; 4096 + }; 4097 + })) {}; 3294 4098 3295 4099 # THIS IS A GENERATED FILE. DO NOT EDIT! 3296 - xorgcffiles = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 4100 + xorgcffiles = callPackage ({ stdenv, pkg-config, fetchurl, testers }: stdenv.mkDerivation (finalAttrs: { 3297 4101 pname = "xorg-cf-files"; 3298 4102 version = "1.0.8"; 3299 4103 builder = ./builder.sh; ··· 3305 4109 strictDeps = true; 3306 4110 nativeBuildInputs = [ pkg-config ]; 3307 4111 buildInputs = [ ]; 3308 - meta.platforms = lib.platforms.unix; 3309 - }) {}; 4112 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4113 + meta = { 4114 + pkgConfigModules = [ ]; 4115 + platforms = lib.platforms.unix; 4116 + }; 4117 + })) {}; 3310 4118 3311 4119 # THIS IS A GENERATED FILE. DO NOT EDIT! 3312 - xorgdocs = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 4120 + xorgdocs = callPackage ({ stdenv, pkg-config, fetchurl, testers }: stdenv.mkDerivation (finalAttrs: { 3313 4121 pname = "xorg-docs"; 3314 4122 version = "1.7.2"; 3315 4123 builder = ./builder.sh; ··· 3321 4129 strictDeps = true; 3322 4130 nativeBuildInputs = [ pkg-config ]; 3323 4131 buildInputs = [ ]; 3324 - meta.platforms = lib.platforms.unix; 3325 - }) {}; 4132 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4133 + meta = { 4134 + pkgConfigModules = [ ]; 4135 + platforms = lib.platforms.unix; 4136 + }; 4137 + })) {}; 3326 4138 3327 4139 # THIS IS A GENERATED FILE. DO NOT EDIT! 3328 - xorgproto = callPackage ({ stdenv, pkg-config, fetchurl, libXt, python3 }: stdenv.mkDerivation { 4140 + xorgproto = callPackage ({ stdenv, pkg-config, fetchurl, libXt, python3, testers }: stdenv.mkDerivation (finalAttrs: { 3329 4141 pname = "xorgproto"; 3330 4142 version = "2023.2"; 3331 4143 builder = ./builder.sh; ··· 3337 4149 strictDeps = true; 3338 4150 nativeBuildInputs = [ pkg-config python3 ]; 3339 4151 buildInputs = [ libXt ]; 3340 - meta.platforms = lib.platforms.unix; 3341 - }) {}; 4152 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4153 + meta = { 4154 + pkgConfigModules = [ "xf86vidmodeproto" "xineramaproto" "xproxymngproto" "glproto" "presentproto" "applewmproto" "xcmiscproto" "recordproto" "resourceproto" "printproto" "xcalibrateproto" "renderproto" "fontsproto" "dpmsproto" "kbproto" "videoproto" "dri2proto" "bigreqsproto" "dri3proto" "evieproto" "inputproto" "fixesproto" "lg3dproto" "xf86rushproto" "compositeproto" "xwaylandproto" "trapproto" "dmxproto" "xextproto" "xproto" "xf86dgaproto" "xf86miscproto" "xf86bigfontproto" "windowswmproto" "scrnsaverproto" "damageproto" "xf86driproto" "randrproto" "fontcacheproto" ]; 4155 + platforms = lib.platforms.unix; 4156 + }; 4157 + })) {}; 3342 4158 3343 4159 # THIS IS A GENERATED FILE. DO NOT EDIT! 3344 - xorgserver = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, openssl, libX11, libXau, libxcb, xcbutil, xcbutilwm, xcbutilimage, xcbutilkeysyms, xcbutilrenderutil, libXdmcp, libXfixes, libxkbfile }: stdenv.mkDerivation { 4160 + xorgserver = callPackage ({ stdenv, pkg-config, fetchurl, xorgproto, openssl, libX11, libXau, libxcb, xcbutil, xcbutilwm, xcbutilimage, xcbutilkeysyms, xcbutilrenderutil, libXdmcp, libXfixes, libxkbfile, testers }: stdenv.mkDerivation (finalAttrs: { 3345 4161 pname = "xorg-server"; 3346 4162 version = "21.1.8"; 3347 4163 builder = ./builder.sh; ··· 3353 4169 strictDeps = true; 3354 4170 nativeBuildInputs = [ pkg-config ]; 3355 4171 buildInputs = [ xorgproto openssl libX11 libXau libxcb xcbutil xcbutilwm xcbutilimage xcbutilkeysyms xcbutilrenderutil libXdmcp libXfixes libxkbfile ]; 3356 - meta.platforms = lib.platforms.unix; 3357 - }) {}; 4172 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4173 + meta = { 4174 + pkgConfigModules = [ "xorg-server" ]; 4175 + platforms = lib.platforms.unix; 4176 + }; 4177 + })) {}; 3358 4178 3359 4179 # THIS IS A GENERATED FILE. DO NOT EDIT! 3360 - xorgsgmldoctools = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 4180 + xorgsgmldoctools = callPackage ({ stdenv, pkg-config, fetchurl, testers }: stdenv.mkDerivation (finalAttrs: { 3361 4181 pname = "xorg-sgml-doctools"; 3362 4182 version = "1.12"; 3363 4183 builder = ./builder.sh; ··· 3369 4189 strictDeps = true; 3370 4190 nativeBuildInputs = [ pkg-config ]; 3371 4191 buildInputs = [ ]; 3372 - meta.platforms = lib.platforms.unix; 3373 - }) {}; 4192 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4193 + meta = { 4194 + pkgConfigModules = [ "xorg-sgml-doctools" ]; 4195 + platforms = lib.platforms.unix; 4196 + }; 4197 + })) {}; 3374 4198 3375 4199 # THIS IS A GENERATED FILE. DO NOT EDIT! 3376 - xpr = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation { 4200 + xpr = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3377 4201 pname = "xpr"; 3378 4202 version = "1.1.0"; 3379 4203 builder = ./builder.sh; ··· 3385 4209 strictDeps = true; 3386 4210 nativeBuildInputs = [ pkg-config ]; 3387 4211 buildInputs = [ libX11 libXmu xorgproto ]; 3388 - meta.platforms = lib.platforms.unix; 3389 - }) {}; 4212 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4213 + meta = { 4214 + pkgConfigModules = [ ]; 4215 + platforms = lib.platforms.unix; 4216 + }; 4217 + })) {}; 3390 4218 3391 4219 # THIS IS A GENERATED FILE. DO NOT EDIT! 3392 - xprop = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 4220 + xprop = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3393 4221 pname = "xprop"; 3394 4222 version = "1.2.6"; 3395 4223 builder = ./builder.sh; ··· 3401 4229 strictDeps = true; 3402 4230 nativeBuildInputs = [ pkg-config ]; 3403 4231 buildInputs = [ libX11 xorgproto ]; 3404 - meta.platforms = lib.platforms.unix; 3405 - }) {}; 4232 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4233 + meta = { 4234 + pkgConfigModules = [ ]; 4235 + platforms = lib.platforms.unix; 4236 + }; 4237 + })) {}; 3406 4238 3407 4239 # THIS IS A GENERATED FILE. DO NOT EDIT! 3408 - xrandr = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXrandr, libXrender }: stdenv.mkDerivation { 4240 + xrandr = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXrandr, libXrender, testers }: stdenv.mkDerivation (finalAttrs: { 3409 4241 pname = "xrandr"; 3410 4242 version = "1.5.2"; 3411 4243 builder = ./builder.sh; ··· 3417 4249 strictDeps = true; 3418 4250 nativeBuildInputs = [ pkg-config ]; 3419 4251 buildInputs = [ libX11 xorgproto libXrandr libXrender ]; 3420 - meta.platforms = lib.platforms.unix; 3421 - }) {}; 4252 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4253 + meta = { 4254 + pkgConfigModules = [ ]; 4255 + platforms = lib.platforms.unix; 4256 + }; 4257 + })) {}; 3422 4258 3423 4259 # THIS IS A GENERATED FILE. DO NOT EDIT! 3424 - xrdb = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation { 4260 + xrdb = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3425 4261 pname = "xrdb"; 3426 4262 version = "1.2.2"; 3427 4263 builder = ./builder.sh; ··· 3433 4269 strictDeps = true; 3434 4270 nativeBuildInputs = [ pkg-config ]; 3435 4271 buildInputs = [ libX11 libXmu xorgproto ]; 3436 - meta.platforms = lib.platforms.unix; 3437 - }) {}; 4272 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4273 + meta = { 4274 + pkgConfigModules = [ ]; 4275 + platforms = lib.platforms.unix; 4276 + }; 4277 + })) {}; 3438 4278 3439 4279 # THIS IS A GENERATED FILE. DO NOT EDIT! 3440 - xrefresh = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 4280 + xrefresh = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3441 4281 pname = "xrefresh"; 3442 4282 version = "1.0.7"; 3443 4283 builder = ./builder.sh; ··· 3449 4289 strictDeps = true; 3450 4290 nativeBuildInputs = [ pkg-config ]; 3451 4291 buildInputs = [ libX11 xorgproto ]; 3452 - meta.platforms = lib.platforms.unix; 3453 - }) {}; 4292 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4293 + meta = { 4294 + pkgConfigModules = [ ]; 4295 + platforms = lib.platforms.unix; 4296 + }; 4297 + })) {}; 3454 4298 3455 4299 # THIS IS A GENERATED FILE. DO NOT EDIT! 3456 - xset = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, libXmu, xorgproto, libXxf86misc }: stdenv.mkDerivation { 4300 + xset = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXext, libXmu, xorgproto, libXxf86misc, testers }: stdenv.mkDerivation (finalAttrs: { 3457 4301 pname = "xset"; 3458 4302 version = "1.2.5"; 3459 4303 builder = ./builder.sh; ··· 3465 4309 strictDeps = true; 3466 4310 nativeBuildInputs = [ pkg-config ]; 3467 4311 buildInputs = [ libX11 libXext libXmu xorgproto libXxf86misc ]; 3468 - meta.platforms = lib.platforms.unix; 3469 - }) {}; 4312 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4313 + meta = { 4314 + pkgConfigModules = [ ]; 4315 + platforms = lib.platforms.unix; 4316 + }; 4317 + })) {}; 3470 4318 3471 4319 # THIS IS A GENERATED FILE. DO NOT EDIT! 3472 - xsetroot = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xbitmaps, libXcursor, libXmu, xorgproto }: stdenv.mkDerivation { 4320 + xsetroot = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xbitmaps, libXcursor, libXmu, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3473 4321 pname = "xsetroot"; 3474 4322 version = "1.1.3"; 3475 4323 builder = ./builder.sh; ··· 3481 4329 strictDeps = true; 3482 4330 nativeBuildInputs = [ pkg-config ]; 3483 4331 buildInputs = [ libX11 xbitmaps libXcursor libXmu xorgproto ]; 3484 - meta.platforms = lib.platforms.unix; 3485 - }) {}; 4332 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4333 + meta = { 4334 + pkgConfigModules = [ ]; 4335 + platforms = lib.platforms.unix; 4336 + }; 4337 + })) {}; 3486 4338 3487 4339 # THIS IS A GENERATED FILE. DO NOT EDIT! 3488 - xsm = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libSM, libX11, libXaw, xorgproto, libXt, wrapWithXFileSearchPathHook }: stdenv.mkDerivation { 4340 + xsm = callPackage ({ stdenv, pkg-config, fetchurl, libICE, libSM, libX11, libXaw, xorgproto, libXt, wrapWithXFileSearchPathHook, testers }: stdenv.mkDerivation (finalAttrs: { 3489 4341 pname = "xsm"; 3490 4342 version = "1.0.5"; 3491 4343 builder = ./builder.sh; ··· 3497 4349 strictDeps = true; 3498 4350 nativeBuildInputs = [ pkg-config wrapWithXFileSearchPathHook ]; 3499 4351 buildInputs = [ libICE libSM libX11 libXaw xorgproto libXt ]; 3500 - meta.platforms = lib.platforms.unix; 3501 - }) {}; 4352 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4353 + meta = { 4354 + pkgConfigModules = [ ]; 4355 + platforms = lib.platforms.unix; 4356 + }; 4357 + })) {}; 3502 4358 3503 4359 # THIS IS A GENERATED FILE. DO NOT EDIT! 3504 - xstdcmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation { 4360 + xstdcmap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3505 4361 pname = "xstdcmap"; 3506 4362 version = "1.0.5"; 3507 4363 builder = ./builder.sh; ··· 3513 4369 strictDeps = true; 3514 4370 nativeBuildInputs = [ pkg-config ]; 3515 4371 buildInputs = [ libX11 libXmu xorgproto ]; 3516 - meta.platforms = lib.platforms.unix; 3517 - }) {}; 4372 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4373 + meta = { 4374 + pkgConfigModules = [ ]; 4375 + platforms = lib.platforms.unix; 4376 + }; 4377 + })) {}; 3518 4378 3519 4379 # THIS IS A GENERATED FILE. DO NOT EDIT! 3520 - xtrans = callPackage ({ stdenv, pkg-config, fetchurl }: stdenv.mkDerivation { 4380 + xtrans = callPackage ({ stdenv, pkg-config, fetchurl, testers }: stdenv.mkDerivation (finalAttrs: { 3521 4381 pname = "xtrans"; 3522 4382 version = "1.5.0"; 3523 4383 builder = ./builder.sh; ··· 3529 4389 strictDeps = true; 3530 4390 nativeBuildInputs = [ pkg-config ]; 3531 4391 buildInputs = [ ]; 3532 - meta.platforms = lib.platforms.unix; 3533 - }) {}; 4392 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4393 + meta = { 4394 + pkgConfigModules = [ "xtrans" ]; 4395 + platforms = lib.platforms.unix; 4396 + }; 4397 + })) {}; 3534 4398 3535 4399 # THIS IS A GENERATED FILE. DO NOT EDIT! 3536 - xtrap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXt, libXTrap }: stdenv.mkDerivation { 4400 + xtrap = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXt, libXTrap, testers }: stdenv.mkDerivation (finalAttrs: { 3537 4401 pname = "xtrap"; 3538 4402 version = "1.0.3"; 3539 4403 builder = ./builder.sh; ··· 3545 4409 strictDeps = true; 3546 4410 nativeBuildInputs = [ pkg-config ]; 3547 4411 buildInputs = [ libX11 libXt libXTrap ]; 3548 - meta.platforms = lib.platforms.unix; 3549 - }) {}; 4412 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4413 + meta = { 4414 + pkgConfigModules = [ ]; 4415 + platforms = lib.platforms.unix; 4416 + }; 4417 + })) {}; 3550 4418 3551 4419 # THIS IS A GENERATED FILE. DO NOT EDIT! 3552 - xvinfo = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXv }: stdenv.mkDerivation { 4420 + xvinfo = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, libXv, testers }: stdenv.mkDerivation (finalAttrs: { 3553 4421 pname = "xvinfo"; 3554 4422 version = "1.1.5"; 3555 4423 builder = ./builder.sh; ··· 3561 4429 strictDeps = true; 3562 4430 nativeBuildInputs = [ pkg-config ]; 3563 4431 buildInputs = [ libX11 xorgproto libXv ]; 3564 - meta.platforms = lib.platforms.unix; 3565 - }) {}; 4432 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4433 + meta = { 4434 + pkgConfigModules = [ ]; 4435 + platforms = lib.platforms.unix; 4436 + }; 4437 + })) {}; 3566 4438 3567 4439 # THIS IS A GENERATED FILE. DO NOT EDIT! 3568 - xwd = callPackage ({ stdenv, pkg-config, fetchurl, libxkbfile, libX11, xorgproto }: stdenv.mkDerivation { 4440 + xwd = callPackage ({ stdenv, pkg-config, fetchurl, libxkbfile, libX11, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3569 4441 pname = "xwd"; 3570 4442 version = "1.0.9"; 3571 4443 builder = ./builder.sh; ··· 3577 4449 strictDeps = true; 3578 4450 nativeBuildInputs = [ pkg-config ]; 3579 4451 buildInputs = [ libxkbfile libX11 xorgproto ]; 3580 - meta.platforms = lib.platforms.unix; 3581 - }) {}; 4452 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4453 + meta = { 4454 + pkgConfigModules = [ ]; 4455 + platforms = lib.platforms.unix; 4456 + }; 4457 + })) {}; 3582 4458 3583 4459 # THIS IS A GENERATED FILE. DO NOT EDIT! 3584 - xwininfo = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxcb, xorgproto }: stdenv.mkDerivation { 4460 + xwininfo = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libxcb, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3585 4461 pname = "xwininfo"; 3586 4462 version = "1.1.6"; 3587 4463 builder = ./builder.sh; ··· 3593 4469 strictDeps = true; 3594 4470 nativeBuildInputs = [ pkg-config ]; 3595 4471 buildInputs = [ libX11 libxcb xorgproto ]; 3596 - meta.platforms = lib.platforms.unix; 3597 - }) {}; 4472 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4473 + meta = { 4474 + pkgConfigModules = [ ]; 4475 + platforms = lib.platforms.unix; 4476 + }; 4477 + })) {}; 3598 4478 3599 4479 # THIS IS A GENERATED FILE. DO NOT EDIT! 3600 - xwud = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto }: stdenv.mkDerivation { 4480 + xwud = callPackage ({ stdenv, pkg-config, fetchurl, libX11, xorgproto, testers }: stdenv.mkDerivation (finalAttrs: { 3601 4481 pname = "xwud"; 3602 4482 version = "1.0.6"; 3603 4483 builder = ./builder.sh; ··· 3609 4489 strictDeps = true; 3610 4490 nativeBuildInputs = [ pkg-config ]; 3611 4491 buildInputs = [ libX11 xorgproto ]; 3612 - meta.platforms = lib.platforms.unix; 3613 - }) {}; 4492 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 4493 + meta = { 4494 + pkgConfigModules = [ ]; 4495 + platforms = lib.platforms.unix; 4496 + }; 4497 + })) {}; 3614 4498 3615 4499 }
+14 -3
pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl
··· 18 18 my %pkgRequires; 19 19 my %pkgNativeRequires; 20 20 21 + my %pcProvides; 21 22 my %pcMap; 22 23 23 24 my %extraAttrs; ··· 112 113 my $pc = $pcFile; 113 114 $pc =~ s/.*\///; 114 115 $pc =~ s/.pc.in//; 116 + push @{$pcProvides{$pkg}}, $pc; 115 117 print "PROVIDES $pc\n"; 116 118 die "collision with $pcMap{$pc}" if defined $pcMap{$pc}; 117 119 $pcMap{$pc} = $pkg; ··· 328 330 $extraAttrsStr = join "", map { "\n " . $_ } @{$extraAttrs{$pkg}}; 329 331 } 330 332 333 + my $pcProvidesStr = ""; 334 + if (defined $pcProvides{$pkg}) { 335 + $pcProvidesStr = join "", map { "\"" . $_ . "\" " } @{$pcProvides{$pkg}}; 336 + } 337 + 331 338 print OUT <<EOF 332 339 # THIS IS A GENERATED FILE. DO NOT EDIT! 333 - $pkg = callPackage ({ $argumentsStr }: stdenv.mkDerivation { 340 + $pkg = callPackage ({ $argumentsStr, testers }: stdenv.mkDerivation (finalAttrs: { 334 341 pname = "$pkgNames{$pkg}"; 335 342 version = "$pkgVersions{$pkg}"; 336 343 builder = ./builder.sh; ··· 342 349 strictDeps = true; 343 350 nativeBuildInputs = [ pkg-config $nativeBuildInputsStr]; 344 351 buildInputs = [ $buildInputsStr];$extraAttrsStr 345 - meta.platforms = lib.platforms.unix; 346 - }) {}; 352 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 353 + meta = { 354 + pkgConfigModules = [ $pcProvidesStr]; 355 + platforms = lib.platforms.unix; 356 + }; 357 + })) {}; 347 358 348 359 EOF 349 360 }
+7 -3
pkgs/servers/x11/xorg/overrides.nix
··· 304 304 postInstall = '' 305 305 sed "/^Requires:/s/$/, freetype2/" -i "$dev/lib/pkgconfig/xft.pc" 306 306 ''; 307 - passthru = { 307 + passthru = attrs.passthru // { 308 308 inherit freetype fontconfig; 309 309 }; 310 310 }); ··· 834 834 done 835 835 ) 836 836 ''; 837 - passthru.version = version; # needed by virtualbox guest additions 837 + passthru = attrs.passthru // { 838 + inherit version; # needed by virtualbox guest additions 839 + }; 838 840 } else { 839 841 nativeBuildInputs = attrs.nativeBuildInputs ++ [ autoreconfHook bootstrap_cmds xorg.utilmacros xorg.fontutil ]; 840 842 buildInputs = commonBuildInputs ++ [ ··· 904 906 905 907 cp ${darwinOtherX}/share/man -rT $out/share/man 906 908 '' ; 907 - passthru.version = version; 909 + passthru = attrs.passthru // { 910 + inherit version; 911 + }; 908 912 })); 909 913 910 914 lndir = super.lndir.overrideAttrs (attrs: {
+3 -3
pkgs/shells/nushell/nu_scripts/default.nix
··· 6 6 7 7 stdenvNoCC.mkDerivation rec { 8 8 pname = "nu_scripts"; 9 - version = "unstable-2023-08-24"; 9 + version = "unstable-2023-10-07"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "nushell"; 13 13 repo = pname; 14 - rev = "36a45f28a39ee1526a748b53f438a41ae939fc7c"; 15 - hash = "sha256-QhERyWomyOOk9aYRjm69ykzOR3G/uGM/A4Pr9PlB71w="; 14 + rev = "85da8c2fb5967a7f575d8f63ebeb8d49d36fc139"; 15 + hash = "sha256-tT/BTnIXEgcMoyfujzWMFlOM7EclWT9LL/dt5jj7Y2M="; 16 16 }; 17 17 18 18 installPhase = ''
+2 -2
pkgs/tools/X11/ckbcomp/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ckbcomp"; 5 - version = "1.222"; 5 + version = "1.223"; 6 6 7 7 src = fetchFromGitLab { 8 8 domain = "salsa.debian.org"; 9 9 owner = "installer-team"; 10 10 repo = "console-setup"; 11 11 rev = version; 12 - sha256 = "sha256-2HviEt/PJS3QFgGPa8WsUeDhotGaHRLs51LlSimfTYQ="; 12 + sha256 = "sha256-B0wUMyYNpPddrE4feUaHoeTtoJdE+IS7nY8gOvPBYSU="; 13 13 }; 14 14 15 15 buildInputs = [ perl ];
+12 -2
pkgs/tools/filesystems/erofs-utils/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook, pkg-config, fuse, util-linux, lz4, zlib 1 + { lib, stdenv, fetchurl, fetchpatch, autoreconfHook, pkg-config, fuse, util-linux, lz4, zlib 2 2 , fuseSupport ? stdenv.isLinux 3 3 }: 4 4 ··· 13 13 hash = "sha256-tutSm7Qj6y3XecnanCYyhVSItLkeI1U6Mc4j8Rycziw="; 14 14 }; 15 15 16 + patches = [ 17 + # Fixes #261394. Can be dropped with the next erofs version. 18 + (fetchpatch { 19 + url = "https://github.com/erofs/erofs-utils/commit/8cbc205185a18b9510f4c1fbd54957354f696321.patch"; 20 + hash = "sha256-CQ5hxav5+HGnBVJW66St9FaVgkuqhkv89rjC/4cmXLs="; 21 + }) 22 + ]; 23 + 16 24 nativeBuildInputs = [ autoreconfHook pkg-config ]; 17 25 buildInputs = [ util-linux lz4 zlib ] 18 26 ++ lib.optionals fuseSupport [ fuse ]; 19 27 20 - configureFlags = lib.optionals fuseSupport [ "--enable-fuse" ]; 28 + configureFlags = [ 29 + "MAX_BLOCK_SIZE=4096" 30 + ] ++ lib.optional fuseSupport "--enable-fuse"; 21 31 22 32 meta = with lib; { 23 33 description = "Userspace utilities for linux-erofs file system";
+2 -2
pkgs/tools/filesystems/mtdutils/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mtd-utils"; 5 - version = "2.1.5"; 5 + version = "2.1.6"; 6 6 7 7 src = fetchgit { 8 8 url = "git://git.infradead.org/mtd-utils.git"; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-Ph9Xjb2Nyo7l3T1pDgW2gnSJxn0pOC6uvCGUfCh0MXU="; 10 + sha256 = "sha256-NMYzUPt/91lv8f7E1ytX91SqwbBEOtHjCL54EcumcZA="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ autoreconfHook pkg-config ] ++ lib.optional doCheck cmocka;
+18 -6
pkgs/tools/games/minecraft/optifine/versions.json
··· 1 1 { 2 + "optifine_1_20_1": { 3 + "version": "1.20.1_HD_U_I5", 4 + "sha256": "0mykd1lg37p59c168gi6qpykphqmbzdx3bs4sk9d8kg21aw7ijrp" 5 + }, 6 + "optifine_1_19_4": { 7 + "version": "1.19.4_HD_U_I4", 8 + "sha256": "0smgr2mxk8p7v7xzklj34kzqs36bl1kbb94lq41i1ks1wg50n09c" 9 + }, 10 + "optifine_1_19_3": { 11 + "version": "1.19.3_HD_U_I3", 12 + "sha256": "15xgw12sacq6bqssm1szmmg5gac24rsah2plwky67hi67bj894iv" 13 + }, 2 14 "optifine_1_19_2": { 3 - "version": "1.19.2_HD_U_H9", 4 - "sha256": "1xyg98i7zar5x3xbgpn2nm48mc3r9q6yqisxnqk3g254ghjcy4xx" 15 + "version": "1.19.2_HD_U_I2", 16 + "sha256": "0klhhzmr4l5alkyq8q1ishzach2jip5y6d6d4jk9whcbhia33sxg" 5 17 }, 6 18 "optifine_1_19_1": { 7 19 "version": "1.19.1_HD_U_H9", ··· 12 24 "sha256": "19zjvwg0sr6279plj5qxj7hdlw9w8q3qd78dg6911m356z6g87ah" 13 25 }, 14 26 "optifine_1_18_2": { 15 - "version": "1.18.2_HD_U_H7", 16 - "sha256": "169ajvw3zrb0xrz2h1z3x6vdr4122s8m3rxb461s8y2fk6i4y9kr" 27 + "version": "1.18.2_HD_U_H9", 28 + "sha256": "0lf16i7hjyral3704kzyhbhrc01crbpzaicsl4cyj6qx15z0lwxx" 17 29 }, 18 30 "optifine_1_18_1": { 19 31 "version": "1.18.1_HD_U_H6", ··· 136 148 "sha256": "18lzyh639mi7r2hzwnmxv0a6v1ay7dk9bzasvwff82dxq0y9zi7m" 137 149 }, 138 150 "optifine-latest": { 139 - "version": "1.19.2_HD_U_H9", 140 - "sha256": "1xyg98i7zar5x3xbgpn2nm48mc3r9q6yqisxnqk3g254ghjcy4xx" 151 + "version": "1.20.1_HD_U_I5", 152 + "sha256": "0mykd1lg37p59c168gi6qpykphqmbzdx3bs4sk9d8kg21aw7ijrp" 141 153 } 142 154 }
+2 -2
pkgs/tools/misc/lcdf-typetools/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "lcdf-typetools"; 5 - version = "2.108"; 5 + version = "2.110"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "kohler"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "0a6jqaqwq43ldjjjlnsh6mczs2la9363qav7v9fyrfzkfj8kw9ad"; 11 + sha256 = "sha256-hoILYYCef2R1v6aN9V+FoYnXYaKsnGN2jlpb/QFAN/w="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook ];
+3 -3
pkgs/tools/misc/opentelemetry-collector/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "opentelemetry-collector"; 8 - version = "0.86.0"; 8 + version = "0.87.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "open-telemetry"; 12 12 repo = "opentelemetry-collector"; 13 13 rev = "v${version}"; 14 - hash = "sha256-Ucp00OjyPtHA6so/NOzTLtPSuhXwz6A2708w2WIZb/E="; 14 + hash = "sha256-AfjCGxoXKXVfDnPkLqx2W3dGBFY9aiBPgltFMg1xKZI="; 15 15 }; 16 16 # there is a nested go.mod 17 17 sourceRoot = "${src.name}/cmd/otelcorecol"; 18 - vendorHash = "sha256-DfbG2qrhwVMXYjg2yJ6XlhrL27oPplvWIoP3C/JBKuA="; 18 + vendorHash = "sha256-OTeZL/mBYLKq47pJE26J+vbQkTZlgz0eVC1jwRmqw88="; 19 19 20 20 # upstream strongly recommends disabling CGO 21 21 # additionally dependencies have had issues when GCO was enabled that weren't caught upstream
+2 -2
pkgs/tools/misc/parallel/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "parallel"; 5 - version = "20230822"; 5 + version = "20230922"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://gnu/parallel/${pname}-${version}.tar.bz2"; 9 - sha256 = "sha256-S1lFmaPBE8KVLWsMG3zlRGAJjqIVrF9oUSAfme5r/F4="; 9 + sha256 = "sha256-EUR0Ft1eXfZQE897RULhQJOKO/1fPzCVye2xaPy/4GM="; 10 10 }; 11 11 12 12 outputs = [ "out" "man" "doc" ];
+2 -2
pkgs/tools/misc/tgpt/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "tgpt"; 8 - version = "2.0.3"; 8 + version = "2.0.4"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "aandrew-me"; 12 12 repo = "tgpt"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-4zm2dsYhN5itGto39p2Aq+9vF4iqqjCGwMWACuKSMs0="; 14 + hash = "sha256-+5hNcemVVuCX1FCL6U9SoJ/Jsef9exQXQFCdPj8qhCk="; 15 15 }; 16 16 17 17 vendorHash = "sha256-HXpSoihk0s218DVCHe9VCGLBggWY8I25sw2qSaiUz4I=";
+2 -2
pkgs/tools/networking/haproxy/default.nix
··· 18 18 19 19 stdenv.mkDerivation (finalAttrs: { 20 20 pname = "haproxy"; 21 - version = "2.8.2"; 21 + version = "2.8.3"; 22 22 23 23 src = fetchurl { 24 24 url = "https://www.haproxy.org/download/${lib.versions.majorMinor finalAttrs.version}/src/haproxy-${finalAttrs.version}.tar.gz"; 25 - hash = "sha256-aY1pBtFwlGqGl2mWTleBa6PaOt9h/3XomXKxN/RljbA="; 25 + hash = "sha256-nsxv/mepd9HtJ5EHu9q3kNc64qYmvDju4j+h9nhqdZ4="; 26 26 }; 27 27 28 28 buildInputs = [ openssl zlib libxcrypt ]
+2 -2
pkgs/tools/package-management/apt/default.nix
··· 28 28 29 29 stdenv.mkDerivation rec { 30 30 pname = "apt"; 31 - version = "2.7.3"; 31 + version = "2.7.6"; 32 32 33 33 src = fetchurl { 34 34 url = "mirror://debian/pool/main/a/apt/apt_${version}.tar.xz"; 35 - hash = "sha256-mtLrLE8lzjU12aXYBW4f6TLW27WMJkfNX8jfjJ+N71M="; 35 + hash = "sha256-hoP1Tv8L9U5R4CWzSL0HdND9Q3eZYW9IUSlWzxXAX2c="; 36 36 }; 37 37 38 38 nativeBuildInputs = [
+9 -7
pkgs/tools/security/age-plugin-tpm/default.nix
··· 2 2 , buildGoModule 3 3 , fetchFromGitHub 4 4 , swtpm 5 + , openssl 5 6 }: 6 7 7 8 buildGoModule rec { 8 9 pname = "age-plugin-tpm"; 9 - version = "0.1.0"; 10 + version = "0.2.0"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "Foxboron"; 13 14 repo = "age-plugin-tpm"; 14 15 rev = "v${version}"; 15 - hash = "sha256-Gp7n2/+vgQbsm/En6PQ1to/W6lvFam4Wh3LHdCZnafc="; 16 + hash = "sha256-oTvK8U5j+llHgoChhGb+vcUrUf9doVYxd3d5MEuCNz8="; 16 17 }; 17 18 18 - vendorHash = "sha256-oZni/n2J0N3ZxNhf+RlUWyWeOFwL4+6KUIk6DQF8YpA="; 19 + proxyVendor = true; 19 20 20 - postConfigure = '' 21 - substituteInPlace vendor/github.com/foxboron/swtpm_test/swtpm.go \ 22 - --replace "/usr/share/swtpm/swtpm-create-user-config-files" "${swtpm}/share/swtpm/swtpm-create-user-config-files" 23 - ''; 21 + vendorHash = "sha256-BSb+8p5+RJMfcYc2+BuT4YbhCWCbcYOt9upesD11Ytw="; 24 22 25 23 nativeCheckInputs = [ 26 24 swtpm 25 + ]; 26 + 27 + buildInputs = [ 28 + openssl 27 29 ]; 28 30 29 31 ldflags = [
+3 -2
pkgs/tools/security/nsjail/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "nsjail"; 7 - version = "3.3"; 7 + version = "3.4"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "google"; 11 11 repo = "nsjail"; 12 12 rev = version; 13 13 fetchSubmodules = true; 14 - hash = "sha256-L5x3rUDd1nXxDjoP/ZErQa02w2MJSkMBlgu00cy1D3M="; 14 + hash = "sha256-/K+qJV5Dq+my45Cpw6czdsWLtO9lnJwZTsOIRt4Iijk="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ autoconf bison flex installShellFiles libtool pkg-config which ]; ··· 32 32 meta = with lib; { 33 33 description = "A light-weight process isolation tool, making use of Linux namespaces and seccomp-bpf syscall filters"; 34 34 homepage = "https://nsjail.dev/"; 35 + changelog = "https://github.com/google/nsjail/releases/tag/${version}"; 35 36 license = licenses.asl20; 36 37 maintainers = with maintainers; [ arturcygan bosu c0bw3b ]; 37 38 platforms = platforms.linux;
+3 -3
pkgs/tools/security/osv-scanner/default.nix
··· 6 6 }: 7 7 buildGoModule rec { 8 8 pname = "osv-scanner"; 9 - version = "1.4.0"; 9 + version = "1.4.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "google"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-UJrqSzJ024IiQwuPOoxNGgTNNfhb00KjtIHQb5qpDPQ="; 15 + hash = "sha256-xc9qdzdJYg12twjLAGw1GEkfkFsk8UBgzSyOSg/FB20="; 16 16 }; 17 17 18 - vendorHash = "sha256-oT4pjsEfjlPZyVo7Ic0rpTEK/sSUz1ShWk7fOJq+EQ8="; 18 + vendorHash = "sha256-e1XG3DZGDBKKcEpMBi0vqKo3f9TnXdFKOUzZ7KZhPAw="; 19 19 20 20 subPackages = [ 21 21 "cmd/osv-scanner"
+3 -3
pkgs/tools/security/trufflehog/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "trufflehog"; 10 - version = "3.59.0"; 10 + version = "3.60.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "trufflesecurity"; 14 14 repo = "trufflehog"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-J+hmWEBjTFb7mE9uj0g4uq+VZjKS/3sIOtJyNweYkRw="; 16 + hash = "sha256-43KKw9/EdXoD4nzWEvll2LhgI6Ipt3PYN6EpiD8fhQc="; 17 17 }; 18 18 19 - vendorHash = "sha256-xsdtqRU3Exeo/EHkA8xars9+FUnrVZRdET0PGtv4ikI="; 19 + vendorHash = "sha256-axB0JcvGeiqz1dBKHknNqW3XzQWaLCHk6gsB9QV3PN8="; 20 20 21 21 ldflags = [ 22 22 "-s"
+3 -3
pkgs/tools/text/mdbook-admonish/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "mdbook-admonish"; 5 - version = "1.12.1"; 5 + version = "1.13.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tommilligan"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-U9boL+Ki4szDwhdPBvXA5iXYjL9LEMVyez8DX35i5gI="; 11 + hash = "sha256-jr77WC6b5PrPANivd6diAFfVqudtviIWBE7I8eFmCfs="; 12 12 }; 13 13 14 - cargoHash = "sha256-cqzY6z4e3ZAVG5HOxkTKYEcAxXu4OsUjpP6SD/LIX74="; 14 + cargoHash = "sha256-gBkRA8QRha46y5cp5aY2R+ekdfjUX5tDuNawCwzKFi4="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ]; 17 17
+2 -2
pkgs/tools/text/opencc/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "opencc"; 5 - version = "1.1.6"; 5 + version = "1.1.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "BYVoid"; 9 9 repo = "OpenCC"; 10 10 rev = "ver.${version}"; 11 - sha256 = "sha256-0aIYnUuG5XATruxwY6+LZbEdKkHP3X1N1ueVE7R37Qk="; 11 + sha256 = "sha256-N7nazA0xoQ2ewOGDiJg1vBBYMdF1/qiCfNjG5CFFbuk="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake python3 ];
+2
pkgs/top-level/aliases.nix
··· 795 795 sequoia = sequoia-sq; # Added 2023-06-26 796 796 sexp = sexpp; # Added 2023-07-03 797 797 sget = throw "sget has been removed from nixpkgs, as it is not supported upstream anymore see https://github.com/sigstore/sget/issues/145"; # Added 2023-05-26 798 + sgtpuzzles = throw "'sgtpuzzles' has been renamed to 'sgt-puzzles'"; # Added 2023-10-06 799 + sgtpuzzles-mobile = throw "'sgtpuzzles-mobile' has been renamed to 'sgt-puzzles-mobile'"; # Added 2023-10-06 798 800 inherit (libsForQt5.mauiPackages) shelf; # added 2022-05-17 799 801 shhgit = throw "shhgit is broken and is no longer maintained. See https://github.com/eth0izzle/shhgit#-shhgit-is-no-longer-maintained-" ; # Added 2023-08-08 800 802 shipyard = jumppad; # Added 2023-06-06
+2 -5
pkgs/top-level/all-packages.nix
··· 15550 15550 avra = callPackage ../development/compilers/avra { }; 15551 15551 15552 15552 ballerina = callPackage ../development/compilers/ballerina { 15553 - openjdk = openjdk11_headless; 15553 + openjdk = openjdk17_headless; 15554 15554 }; 15555 15555 15556 15556 beekeeper-studio = callPackage ../development/tools/database/beekeeper-studio { }; ··· 33607 33607 33608 33608 mediainfo-gui = callPackage ../applications/misc/mediainfo-gui { }; 33609 33609 33610 - mediathekview = callPackage ../applications/video/mediathekview { jre = temurin-bin-17; }; 33610 + mediathekview = callPackage ../applications/video/mediathekview { jre = temurin-bin-20; }; 33611 33611 33612 33612 megapixels = callPackage ../applications/graphics/megapixels { }; 33613 33613 ··· 38311 38311 sgt-puzzles-mobile = callPackage ../games/sgt-puzzles { 38312 38312 isMobile = true; 38313 38313 }; 38314 - 38315 - sgtpuzzles = throw "sgtpuzzles has been renamed to sgt-puzzles."; # 2023-10-06 38316 - sgtpuzzles-mobile = throw "sgtpuzzles-mobile has been renamed to sgt-puzzles-mobile."; # 2023-10-06 38317 38314 38318 38315 shattered-pixel-dungeon = callPackage ../games/shattered-pixel-dungeon { }; 38319 38316
+2
pkgs/top-level/qt5-packages.nix
··· 72 72 73 73 alkimia = callPackage ../development/libraries/alkimia { }; 74 74 75 + applet-window-appmenu = callPackage ../development/libraries/applet-window-appmenu { }; 76 + 75 77 applet-window-buttons = callPackage ../development/libraries/applet-window-buttons { }; 76 78 77 79 appstream-qt = callPackage ../development/libraries/appstream/qt.nix { };