Merge master into staging-next

authored by

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

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