id
stringlengths 4
10
| text
stringlengths 4
2.14M
| source
stringclasses 2
values | created
timestamp[s]date 2001-05-16 21:05:09
2025-01-01 03:38:30
| added
stringdate 2025-04-01 04:05:38
2025-04-01 07:14:06
| metadata
dict |
---|---|---|---|---|---|
2246336338
|
[Enhancement]: Change "File Path" header to "Path to SpikeGLX ap.bin or lf.bin file"
What would you like to see added to the NWB GUIDE?
On the source data page for SpikeGLX Converter and Recording, there is a description below the file selector box:
In my personal experience and experience observing the user tests, people click the box and are briefly confused before reading the smaller gray text below the box (and sometimes they don't even read that text - the gray makes it look like it is not particularly important and the fact that it is after the box suggests it is not relevant to the action of clicking the box). The headers "Folder Path" and "File Path" are generic and not very useful. I suggest that if the description exists, it replaces the header instead of being text after the box, or there is a new field per interface that provides a more descriptive replacement of the header. This affects only the handful of interfaces that have a description.
Do you have any interest in helping implement the feature?
No.
Code of Conduct
Yes
Did you confirm this feature was not already reported?
Yes
In general, I wonder whether the gray description should be moved above the text box / input field.
These were all updated on the NeuroConv side
|
gharchive/issue
| 2024-04-16T15:26:33 |
2025-04-01T04:55:25.197125
|
{
"authors": [
"CodyCBakerPhD",
"rly"
],
"repo": "NeurodataWithoutBorders/nwb-guide",
"url": "https://github.com/NeurodataWithoutBorders/nwb-guide/issues/748",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2194388687
|
fix: parsing success/error reponse version field fixed
Hi, thank you for your great package!
I've build the example app and have got an error in success response parser. The version field which comes from API is now integer and not String.
Because we don't really need that field I've just used toString() method instead of changing types of the response
Hello! LGTM. I will merge it and update the version and changelog accordingly
|
gharchive/pull-request
| 2024-03-19T08:57:56 |
2025-04-01T04:55:25.229298
|
{
"authors": [
"NedoPrograMax",
"OlegNovosad"
],
"repo": "Newgarden-Solutions/liqpay",
"url": "https://github.com/Newgarden-Solutions/liqpay/pull/3",
"license": "BSD-3-Clause",
"license_type": "permissive",
"license_source": "github-api"
}
|
156343379
|
Help I dont get why this is not working..
I dont udnerstand... It tells me no element was found.. But in my Controller i have:
(function(angular) {
var app = angular.module('ForumApp');
app.controller('authDescCtrl', ["$scope", "$mdDialog", "$state", "$firebaseObject","refService","currentAuth",authDescCtrl])
function authDescCtrl($scope, $mdDialog, $state, $firebaseObject,refService,currentAuth){
$scope.topic = $firebaseObject(refService.ref().child("Topics"))
$scope.goToPerson = function(person, event) {
$mdDialog.show(
$mdDialog.alert()
.title('Navigating')
.textContent('Inspect ' + person)
.ariaLabel('Person inspect demo')
.ok('Neat!')
.targetEvent(event)
);
};
$scope.goToTopic = function(avatar, date, email, title, uid, username, value) {
$state.go("authHome.topic", {
"AVATAR": avatar,
"DATE": date,
"EMAIL": email,
"TITLE": title,
"UID": uid,
"USERNAME": username,
"VALUE": value
})
}
}
new SimpleMDE({
element: document.getElementById("demo2"),
spellChecker: true,
autosave: {
enabled: true,
unique_id: "demo2",
},
});
})(angular);
And in my HTML I have:
<head>
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<textarea id="demo2">
# This one autosaves!
By default, it saves every 10 seconds, but this can be changed. When this textarea is included
in a form, it will automatically forget the saved value when the form is submitted.
</textarea>
</body>
And ofcourse included the stuff in index.html.. Im confused.
It would be so awesome if we can talk about it here: https://ide.c9.io/amanuel2/fourm2 ... The project im working on is there, and yes just quickly sign up to cloud9 if you didnt with your git... or google, etc..
Im putting it in a ui-view... AngularJS
http://stackoverflow.com/questions/37399541/element-not-found
Nvm solved it
|
gharchive/issue
| 2016-05-23T19:05:04 |
2025-04-01T04:55:25.238541
|
{
"authors": [
"amanuel2"
],
"repo": "NextStepWebs/simplemde-markdown-editor",
"url": "https://github.com/NextStepWebs/simplemde-markdown-editor/issues/332",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
481839825
|
Curl rpc commands give empty response
Im not sure if this is a bug, or if external RPC calls have been removed in favor of the new API interface being implemented, but I have run into an issue.
OS Info
Ubuntu 18.04, and 16.04
nexus LLL-TAO master repo 3.0.4rc3
Background
Most legacy wallets, including bitcoin, I can use an external source (such as curl) to access the rpc interface commands like dumpprivkey, getinfo, etc, without having to call the actual nexus binary with ./nexus. This is used often in pool software frontends and other web based applications like block explorers.
My Goal
Im attempting to add sk1024 algorithm into "Node-Open-Mining-Portal" open source pool software to allow community members to run their own pools. ( I have already spoken with multiple team members about this goal) After which I will attempt to add it to the popular YIIMP pool software aswell for further mining decentralization.
The Issue and replicating it
In .Nexus/nexus.conf set "llpallowip=127.0.0.1:9325", "mining=1", "daemon=1", "server=1"
Run the LLL-TAO Linux core and allow to sync.
attempt a basic curl connection "curl -v http://RPCUSER:RPCPASS@127.0.0.1:9325" and get:
`
Trying 127.0.0.1...
Connected to 127.0.0.1 (127.0.0.1) port 9325 (#0)
Server auth using Basic with user "x" <---- changed for posting
GET / HTTP/1.1
Host: 127.0.0.1:9325
Authorization: Basic x <---- changed for posting
User-Agent: curl/7.47.0
Accept: /
Empty reply from server
Connection #0 to host 127.0.0.1 left intact
curl: (52) Empty reply from server
`
Also tried the standard:
curl --data-binary '{"jsonrpc":"1.0","id":"curltext","method":"getinfo","params":[]}' -H 'content-type:text/plain;' http://RPCUSER:RPCPASS@127.0.0.1:9325
when running the frontend of Node-Open-Mining-Portal I am getting these errors due to the blank response from the nexus core daemon:
2019-08-16 19:36:49 [Website] [nexus] Could not dumpprivkey for nexus {"type":"request error","message":"socket hang up"}
2019-08-16 19:36:49 [Payments] [nexus] Error with payment processing daemon {"type":"request error","message":"socket hang up"}
2019-08-16 19:37:20 [Pool] [nexus] (Thread 1) Could not start pool, error with init batch RPC call: {"type":"request error","message":"socket hang up"}
2019-08-16 19:37:21 [Pool] [nexus] (Thread 2) Could not start pool, error with init batch RPC call: {"type":"request error","message":"socket hang up"}
Closing, user error...
|
gharchive/issue
| 2019-08-17T02:57:40 |
2025-04-01T04:55:25.320133
|
{
"authors": [
"l8nit3tr0ubl3"
],
"repo": "Nexusoft/LLL-TAO",
"url": "https://github.com/Nexusoft/LLL-TAO/issues/7",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1382165253
|
Let's encrypt auto generate certificate does not work
Checklist
Have you pulled and found the error with jc21/nginx-proxy-manager:latest docker image?
Yes
Are you sure you're not using someone else's docker image?
Yes
Have you searched for similar issues (both open and closed)?
Yes
Describe the bug
When creating a certificate with Let's encrypt the following invalid operation is thrown
Error: Command failed: certbot certonly --config "/etc/letsencrypt.ini" --cert-name "npm-12" --agree-tos --authenticator webroot --email "h@gmail.com" --preferred-challenges "dns,http" --domains "blabla.tk"
Saving debug log to /var/log/letsencrypt/letsencrypt.log
An unexpected error occurred:
OSError: [Errno 95] Operation not supported: '../../archive/npm-12/cert1.pem' -> '/etc/letsencrypt/live/npm-12/cert.pem'
Ask for help or search for solutions at https://community.letsencrypt.org. See the logfile /var/log/letsencrypt/letsencrypt.log or re-run Certbot with -v for more details.
at ChildProcess.exithandler (node:child_process:399:12)
at ChildProcess.emit (node:events:526:28)
at maybeClose (node:internal/child_process:1092:16)
at Process.ChildProcess._handle.onexit (node:internal/child_process:302:5)
Nginx Proxy Manager Version
v2.9.18
To Reproduce
Steps to reproduce the behavior:
Go to 'SSL Certificates'
Click on 'Add SSL Certificate'
Fill information
See error
Expected behavior
To create an ssl certificate
Screenshots
Operating System
given image from docker compose
confirmed on my end too
I am having a similar issue here. I could create a cert using udm-le.sh, and then pull from UDM Pro to my NPM and it worked. But I can't get CloudFlare DNS Challenge to work in NPM.
`Error: Command failed: pip install certbot-dns-cloudflare==$(certbot --version | grep -Eo '0-9+') cloudflare
error: subprocess-exited-with-error
× pip subprocess to install build dependencies did not run successfully.
│ exit code: 1
╰─> [124 lines of output]
Collecting setuptools!=60.9.0,>=40.6.0
Using cached setuptools-65.3.0-py3-none-any.whl (1.2 MB)
Collecting wheel
Using cached wheel-0.37.1-py2.py3-none-any.whl (35 kB)
Collecting cffi>=1.12
Downloading cffi-1.15.1.tar.gz (508 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 508.5/508.5 KB 3.2 MB/s eta 0:00:00
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'done'
Collecting setuptools-rust>=0.11.4
Downloading setuptools_rust-1.5.2-py3-none-any.whl (23 kB)
Collecting pycparser
Downloading pycparser-2.21-py2.py3-none-any.whl (118 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 118.7/118.7 KB 1.7 MB/s eta 0:00:00
Collecting typing-extensions>=3.7.4.3
Downloading typing_extensions-4.3.0-py3-none-any.whl (25 kB)
Collecting semantic-version<3,>=2.8.2
Downloading semantic_version-2.10.0-py2.py3-none-any.whl (15 kB)
Building wheels for collected packages: cffi
Building wheel for cffi (setup.py): started
Building wheel for cffi (setup.py): finished with status 'error'
error: subprocess-exited-with-error
× python setup.py bdist_wheel did not run successfully.
│ exit code: 1
╰─> [36 lines of output]
running bdist_wheel
running build
running build_py
creating build
creating build/lib.linux-armv7l-3.7
creating build/lib.linux-armv7l-3.7/cffi
copying cffi/vengine_gen.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/model.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/error.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/setuptools_ext.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/pkgconfig.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/commontypes.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/cparser.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/__init__.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/lock.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/recompiler.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/api.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/cffi_opcode.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/verifier.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/backend_ctypes.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/ffiplatform.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/vengine_cpy.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_cffi_include.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/parse_c_type.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_embedding.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_cffi_errors.h -> build/lib.linux-armv7l-3.7/cffi
running build_ext
building '_cffi_backend' extension
creating build/temp.linux-armv7l-3.7
creating build/temp.linux-armv7l-3.7/c
arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DFFI_BUILDING=1 -DUSE__THREAD -DHAVE_SYNC_SYNCHRONIZE -I/usr/include/ffi -I/usr/include/libffi -I/usr/include/python3.7m -c c/_cffi_backend.c -o build/temp.linux-armv7l-3.7/c/_cffi_backend.o
c/_cffi_backend.c:2:10: fatal error: Python.h: No such file or directory
#include
^~~~~~~~~~
compilation terminated.
error: command 'arm-linux-gnueabihf-gcc' failed with exit status 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for cffi
Running setup.py clean for cffi
Failed to build cffi
Installing collected packages: wheel, typing-extensions, setuptools, semantic-version, pycparser, setuptools-rust, cffi
Running setup.py install for cffi: started
Running setup.py install for cffi: finished with status 'error'
error: subprocess-exited-with-error
× Running setup.py install for cffi did not run successfully.
│ exit code: 1
╰─> [36 lines of output]
running install
running build
running build_py
creating build
creating build/lib.linux-armv7l-3.7
creating build/lib.linux-armv7l-3.7/cffi
copying cffi/vengine_gen.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/model.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/error.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/setuptools_ext.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/pkgconfig.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/commontypes.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/cparser.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/__init__.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/lock.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/recompiler.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/api.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/cffi_opcode.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/verifier.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/backend_ctypes.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/ffiplatform.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/vengine_cpy.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_cffi_include.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/parse_c_type.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_embedding.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_cffi_errors.h -> build/lib.linux-armv7l-3.7/cffi
running build_ext
building '_cffi_backend' extension
creating build/temp.linux-armv7l-3.7
creating build/temp.linux-armv7l-3.7/c
arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DFFI_BUILDING=1 -DUSE__THREAD -DHAVE_SYNC_SYNCHRONIZE -I/usr/include/ffi -I/usr/include/libffi -I/usr/include/python3.7m -c c/_cffi_backend.c -o build/temp.linux-armv7l-3.7/c/_cffi_backend.o
c/_cffi_backend.c:2:10: fatal error: Python.h: No such file or directory
#include
^~~~~~~~~~
compilation terminated.
error: command 'arm-linux-gnueabihf-gcc' failed with exit status 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: legacy-install-failure
× Encountered error while trying to install package.
╰─> cffi
note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.
WARNING: You are using pip version 22.0.4; however, version 22.2.2 is available.
You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error
× pip subprocess to install build dependencies did not run successfully.
│ exit code: 1
╰─> See above for output.
note: This error originates from a subprocess, and is likely not a problem with pip.
WARNING: You are using pip version 22.0.4; however, version 22.2.2 is available.
You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.
at ChildProcess.exithandler (node:child_process:399:12)
at ChildProcess.emit (node:events:526:28)
at maybeClose (node:internal/child_process:1092:16)
at Process.ChildProcess._handle.onexit (node:internal/child_process:302:5)`
Are you using Clouflare Dynamic DNS ?
No. I was using the DNS Challenge with the Authentication token.
Sent from Yahoo Mail for iPhone
On Sunday, September 25, 2022, 3:45 AM, Anh Hoang Tuan @.***> wrote:
Are you using Clouflare Dynamic DNS ?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: @.***>
I am having a similar issue here. I could create a cert using udm-le.sh, and then pull from UDM Pro to my NPM and it worked. But I can't get CloudFlare DNS Challenge to work in NPM.
`Error: Command failed: pip install certbot-dns-cloudflare==$(certbot --version | grep -Eo '0-9+') cloudflare error: subprocess-exited-with-error
× pip subprocess to install build dependencies did not run successfully. │ exit code: 1 ╰─> [124 lines of output] Collecting setuptools!=60.9.0,>=40.6.0 Using cached setuptools-65.3.0-py3-none-any.whl (1.2 MB) Collecting wheel Using cached wheel-0.37.1-py2.py3-none-any.whl (35 kB) Collecting cffi>=1.12 Downloading cffi-1.15.1.tar.gz (508 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 508.5/508.5 KB 3.2 MB/s eta 0:00:00 Preparing metadata (setup.py): started Preparing metadata (setup.py): finished with status 'done' Collecting setuptools-rust>=0.11.4 Downloading setuptools_rust-1.5.2-py3-none-any.whl (23 kB) Collecting pycparser Downloading pycparser-2.21-py2.py3-none-any.whl (118 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 118.7/118.7 KB 1.7 MB/s eta 0:00:00 Collecting typing-extensions>=3.7.4.3 Downloading typing_extensions-4.3.0-py3-none-any.whl (25 kB) Collecting semantic-version<3,>=2.8.2 Downloading semantic_version-2.10.0-py2.py3-none-any.whl (15 kB) Building wheels for collected packages: cffi Building wheel for cffi (setup.py): started Building wheel for cffi (setup.py): finished with status 'error' error: subprocess-exited-with-error
× python setup.py bdist_wheel did not run successfully.
│ exit code: 1
╰─> [36 lines of output]
running bdist_wheel
running build
running build_py
creating build
creating build/lib.linux-armv7l-3.7
creating build/lib.linux-armv7l-3.7/cffi
copying cffi/vengine_gen.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/model.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/error.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/setuptools_ext.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/pkgconfig.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/commontypes.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/cparser.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/__init__.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/lock.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/recompiler.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/api.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/cffi_opcode.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/verifier.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/backend_ctypes.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/ffiplatform.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/vengine_cpy.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_cffi_include.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/parse_c_type.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_embedding.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_cffi_errors.h -> build/lib.linux-armv7l-3.7/cffi
running build_ext
building '_cffi_backend' extension
creating build/temp.linux-armv7l-3.7
creating build/temp.linux-armv7l-3.7/c
arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DFFI_BUILDING=1 -DUSE__THREAD -DHAVE_SYNC_SYNCHRONIZE -I/usr/include/ffi -I/usr/include/libffi -I/usr/include/python3.7m -c c/_cffi_backend.c -o build/temp.linux-armv7l-3.7/c/_cffi_backend.o
c/_cffi_backend.c:2:10: fatal error: Python.h: No such file or directory
#include
^~~~~~~~~~
compilation terminated.
error: command 'arm-linux-gnueabihf-gcc' failed with exit status 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for cffi
Running setup.py clean for cffi
Failed to build cffi
Installing collected packages: wheel, typing-extensions, setuptools, semantic-version, pycparser, setuptools-rust, cffi
Running setup.py install for cffi: started
Running setup.py install for cffi: finished with status 'error'
error: subprocess-exited-with-error
× Running setup.py install for cffi did not run successfully.
│ exit code: 1
╰─> [36 lines of output]
running install
running build
running build_py
creating build
creating build/lib.linux-armv7l-3.7
creating build/lib.linux-armv7l-3.7/cffi
copying cffi/vengine_gen.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/model.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/error.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/setuptools_ext.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/pkgconfig.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/commontypes.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/cparser.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/__init__.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/lock.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/recompiler.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/api.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/cffi_opcode.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/verifier.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/backend_ctypes.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/ffiplatform.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/vengine_cpy.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_cffi_include.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/parse_c_type.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_embedding.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_cffi_errors.h -> build/lib.linux-armv7l-3.7/cffi
running build_ext
building '_cffi_backend' extension
creating build/temp.linux-armv7l-3.7
creating build/temp.linux-armv7l-3.7/c
arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DFFI_BUILDING=1 -DUSE__THREAD -DHAVE_SYNC_SYNCHRONIZE -I/usr/include/ffi -I/usr/include/libffi -I/usr/include/python3.7m -c c/_cffi_backend.c -o build/temp.linux-armv7l-3.7/c/_cffi_backend.o
c/_cffi_backend.c:2:10: fatal error: Python.h: No such file or directory
#include
^~~~~~~~~~
compilation terminated.
error: command 'arm-linux-gnueabihf-gcc' failed with exit status 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: legacy-install-failure
× Encountered error while trying to install package.
╰─> cffi
note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.
WARNING: You are using pip version 22.0.4; however, version 22.2.2 is available.
You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip. error: subprocess-exited-with-error
× pip subprocess to install build dependencies did not run successfully. │ exit code: 1 ╰─> See above for output.
note: This error originates from a subprocess, and is likely not a problem with pip. WARNING: You are using pip version 22.0.4; however, version 22.2.2 is available. You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.
at ChildProcess.exithandler (node:child_process:399:12)
at ChildProcess.emit (node:events:526:28)
at maybeClose (node:internal/child_process:1092:16)
at Process.ChildProcess._handle.onexit (node:internal/child_process:302:5)`
Your problem is related to this issue https://github.com/NginxProxyManager/nginx-proxy-manager/issues/1769
downgrade your NginxProxyManager and u ll be able to work with certs
I think mine is related to #2190, actually. Apologies for the confusion!
I am having a similar issue here. I could create a cert using udm-le.sh, and then pull from UDM Pro to my NPM and it worked. But I can't get CloudFlare DNS Challenge to work in NPM.
`Error: Command failed: pip install certbot-dns-cloudflare==$(certbot --version | grep -Eo '0-9+') cloudflare error: subprocess-exited-with-error
× pip subprocess to install build dependencies did not run successfully. │ exit code: 1 ╰─> [124 lines of output] Collecting setuptools!=60.9.0,>=40.6.0 Using cached setuptools-65.3.0-py3-none-any.whl (1.2 MB) Collecting wheel Using cached wheel-0.37.1-py2.py3-none-any.whl (35 kB) Collecting cffi>=1.12 Downloading cffi-1.15.1.tar.gz (508 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 508.5/508.5 KB 3.2 MB/s eta 0:00:00 Preparing metadata (setup.py): started Preparing metadata (setup.py): finished with status 'done' Collecting setuptools-rust>=0.11.4 Downloading setuptools_rust-1.5.2-py3-none-any.whl (23 kB) Collecting pycparser Downloading pycparser-2.21-py2.py3-none-any.whl (118 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 118.7/118.7 KB 1.7 MB/s eta 0:00:00 Collecting typing-extensions>=3.7.4.3 Downloading typing_extensions-4.3.0-py3-none-any.whl (25 kB) Collecting semantic-version<3,>=2.8.2 Downloading semantic_version-2.10.0-py2.py3-none-any.whl (15 kB) Building wheels for collected packages: cffi Building wheel for cffi (setup.py): started Building wheel for cffi (setup.py): finished with status 'error' error: subprocess-exited-with-error
× python setup.py bdist_wheel did not run successfully.
│ exit code: 1
╰─> [36 lines of output]
running bdist_wheel
running build
running build_py
creating build
creating build/lib.linux-armv7l-3.7
creating build/lib.linux-armv7l-3.7/cffi
copying cffi/vengine_gen.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/model.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/error.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/setuptools_ext.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/pkgconfig.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/commontypes.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/cparser.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/__init__.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/lock.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/recompiler.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/api.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/cffi_opcode.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/verifier.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/backend_ctypes.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/ffiplatform.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/vengine_cpy.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_cffi_include.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/parse_c_type.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_embedding.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_cffi_errors.h -> build/lib.linux-armv7l-3.7/cffi
running build_ext
building '_cffi_backend' extension
creating build/temp.linux-armv7l-3.7
creating build/temp.linux-armv7l-3.7/c
arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DFFI_BUILDING=1 -DUSE__THREAD -DHAVE_SYNC_SYNCHRONIZE -I/usr/include/ffi -I/usr/include/libffi -I/usr/include/python3.7m -c c/_cffi_backend.c -o build/temp.linux-armv7l-3.7/c/_cffi_backend.o
c/_cffi_backend.c:2:10: fatal error: Python.h: No such file or directory
#include
^~~~~~~~~~
compilation terminated.
error: command 'arm-linux-gnueabihf-gcc' failed with exit status 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for cffi
Running setup.py clean for cffi
Failed to build cffi
Installing collected packages: wheel, typing-extensions, setuptools, semantic-version, pycparser, setuptools-rust, cffi
Running setup.py install for cffi: started
Running setup.py install for cffi: finished with status 'error'
error: subprocess-exited-with-error
× Running setup.py install for cffi did not run successfully.
│ exit code: 1
╰─> [36 lines of output]
running install
running build
running build_py
creating build
creating build/lib.linux-armv7l-3.7
creating build/lib.linux-armv7l-3.7/cffi
copying cffi/vengine_gen.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/model.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/error.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/setuptools_ext.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/pkgconfig.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/commontypes.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/cparser.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/__init__.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/lock.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/recompiler.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/api.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/cffi_opcode.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/verifier.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/backend_ctypes.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/ffiplatform.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/vengine_cpy.py -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_cffi_include.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/parse_c_type.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_embedding.h -> build/lib.linux-armv7l-3.7/cffi
copying cffi/_cffi_errors.h -> build/lib.linux-armv7l-3.7/cffi
running build_ext
building '_cffi_backend' extension
creating build/temp.linux-armv7l-3.7
creating build/temp.linux-armv7l-3.7/c
arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DFFI_BUILDING=1 -DUSE__THREAD -DHAVE_SYNC_SYNCHRONIZE -I/usr/include/ffi -I/usr/include/libffi -I/usr/include/python3.7m -c c/_cffi_backend.c -o build/temp.linux-armv7l-3.7/c/_cffi_backend.o
c/_cffi_backend.c:2:10: fatal error: Python.h: No such file or directory
#include
^~~~~~~~~~
compilation terminated.
error: command 'arm-linux-gnueabihf-gcc' failed with exit status 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: legacy-install-failure
× Encountered error while trying to install package.
╰─> cffi
note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.
WARNING: You are using pip version 22.0.4; however, version 22.2.2 is available.
You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip. error: subprocess-exited-with-error
× pip subprocess to install build dependencies did not run successfully. │ exit code: 1 ╰─> See above for output.
note: This error originates from a subprocess, and is likely not a problem with pip. WARNING: You are using pip version 22.0.4; however, version 22.2.2 is available. You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.
at ChildProcess.exithandler (node:child_process:399:12)
at ChildProcess.emit (node:events:526:28)
at maybeClose (node:internal/child_process:1092:16)
at Process.ChildProcess._handle.onexit (node:internal/child_process:302:5)`
Your problem is related to this issue #1769
downgrade your NginxProxyManager and u ll be able to work with certs
Any guidance on how to downgrade NPM when it is being used as a docker on unRaid?
|
gharchive/issue
| 2022-09-22T09:53:07 |
2025-04-01T04:55:25.358763
|
{
"authors": [
"NSerbin",
"NicholasRoberge",
"anhhtz",
"rightsaidfred99",
"skirven4",
"soubhi8"
],
"repo": "NginxProxyManager/nginx-proxy-manager",
"url": "https://github.com/NginxProxyManager/nginx-proxy-manager/issues/2282",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
279109936
|
ApplyTemplate
Thank you for submitting a contribution to Apache NiFi - MiNiFi C++.
In order to streamline the review of the contribution we ask you
to ensure the following steps have been taken:
For all changes:
[ ] Is there a JIRA ticket associated with this PR? Is it referenced
in the commit message?
[ ] Does your PR title start with MINIFI-XXXX where XXXX is the JIRA number you are trying to resolve? Pay particular attention to the hyphen "-" character.
[ ] Has your PR been rebased against the latest commit within the target branch (typically master)?
[ ] Is your initial contribution a single, squashed commit?
For code changes:
[ ] If adding new dependencies to the code, are these dependencies licensed in a way that is compatible for inclusion under ASF 2.0?
[ ] If applicable, have you updated the LICENSE file?
[ ] If applicable, have you updated the NOTICE file?
For documentation related changes:
[ ] Have you ensured that format looks appropriate for the output in which it is rendered?
Note:
Please ensure that once the PR is submitted, you check travis-ci for build issues and submit an update to your PR as soon as possible.
@calebj With this merged into your PR you will see the failure and we can document it.
GitHub isn't seeing the cherry-pick, but I've added this to the branch.
|
gharchive/pull-request
| 2017-12-04T19:01:39 |
2025-04-01T04:55:25.367209
|
{
"authors": [
"calebj",
"phrocker"
],
"repo": "NiFiLocal/nifi-minifi-cpp",
"url": "https://github.com/NiFiLocal/nifi-minifi-cpp/pull/1",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
1501939705
|
Is import datetime and import glob necessary?
Is it necessary to import and install datetime and glob modules? They should be in the base distro.
They are used but do not need to be imported.
|
gharchive/issue
| 2022-12-18T15:15:25 |
2025-04-01T04:55:25.368447
|
{
"authors": [
"NiceGuyIT"
],
"repo": "NiceGuyIT/synology_abfb_log_parser",
"url": "https://github.com/NiceGuyIT/synology_abfb_log_parser/issues/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1428991412
|
🛑 cedro is down
In 57993a3, cedro (https://www.cedro.org) was down:
HTTP code: 0
Response time: 0 ms
Resolved: cedro is back up in 9851129.
|
gharchive/issue
| 2022-10-30T19:32:36 |
2025-04-01T04:55:25.385563
|
{
"authors": [
"NicolasAbihaggle"
],
"repo": "NicolasAbihaggle/serviciosestados",
"url": "https://github.com/NicolasAbihaggle/serviciosestados/issues/366",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1761581271
|
Create a timeline
Add a list of all your activities, achievements, work experience. Add as much info as you can remember. In case you don't have working experience tell about your pet-projects or student projects.
As a student and at the beginning of my career I won first place in a programming contest, I participated for two semesters in a row in the mathematics olympics organized by my university along with other universities. I made mobile and web development projects, which were presented as a representation of the university in events such as "UNIMINUTO open doors". Participate in a research seedbed of the university called Kepler, during both semesters of the year 2021. Thanks to the university I managed to participate in development courses in Java (mobile development) and Python (OOP, databases, data structures, etc.) which I successfully completed and of which I have the certificates. Finally, and at the present time I am doing my internship in the financial sector company "Banco de Bogota".
|
gharchive/issue
| 2023-06-17T01:54:35 |
2025-04-01T04:55:25.387125
|
{
"authors": [
"NicolasCorredor02"
],
"repo": "NicolasCorredor02/homepage",
"url": "https://github.com/NicolasCorredor02/homepage/issues/7",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2353980616
|
Create New Page for Liked Products
Is your feature request related to a problem? Please describe.
Currently, the application lacks a dedicated route for users to see the products they have liked. Implementing a favorites route will enhance user experience by providing easy access to their preferred items without navigating through the entire product catalog.
Describe the solution you'd like
Backend Implementation:
Introduce a new endpoint /favorites in our backend API.
Implement logic to retrieve liked products for the current user from the database.
Ensure the endpoint returns a JSON response containing relevant product information (e.g., ID, name, image URL, price).
Frontend Integration:
Create a new route /favorites in our frontend application that triggers a request to the backend /favorites endpoint.
Display the list of liked products in a user-friendly manner, such as a grid or list view.
Each product should include at least basic information (name, image, price) and a link to view more details.
I would like to work on this feature under SSOC.
same as wishlist feature
|
gharchive/issue
| 2024-06-14T19:44:30 |
2025-04-01T04:55:25.426697
|
{
"authors": [
"Kritika30032002",
"vineet1202"
],
"repo": "Niharika0104/TrendTrove",
"url": "https://github.com/Niharika0104/TrendTrove/issues/102",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
262259722
|
Send API Exception Metrics to SignalFx
If SignalFx reporting is enabled, send API Exception metrics.
Coverage decreased (-0.5%) to 57.622% when pulling 5699f13e0162c888e1939b258bff1fff726906d7 on feature/add_api_exception_metrics into f1303e3f6d9dfe380d67b3175ce4708478aad878 on master.
|
gharchive/pull-request
| 2017-10-02T23:26:44 |
2025-04-01T04:55:25.432642
|
{
"authors": [
"coveralls",
"sdford"
],
"repo": "Nike-Inc/cerberus-management-service",
"url": "https://github.com/Nike-Inc/cerberus-management-service/pull/72",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
2705166142
|
fix: typos in documentation files
This pull request contains changes to improve clarity, correctness and structure.
Description correction:
Corrected putted to put
Deleted extra table in the sentence.
Please review the changes and let me know if any additional changes are needed.
@AndreyMlashkin Hi! Apologies for the inconvenience. I just wanted to check if there’s anything I can improve in my pull request. Please feel free to ask any questions or let me know if any changes are needed to meet the project's merge requirements. I’m happy to make adjustments!
|
gharchive/pull-request
| 2024-11-29T13:37:53 |
2025-04-01T04:55:25.441390
|
{
"authors": [
"leopardracer"
],
"repo": "NilFoundation/zkllvm-blueprint",
"url": "https://github.com/NilFoundation/zkllvm-blueprint/pull/424",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
838506073
|
Minimum Difficulty of a Job Schedule
Problem Link
https://leetcode.com/problems/minimum-difficulty-of-a-job-schedule/
Coding platform
Leetcode
Programming language
[ ] C
[ ] C++
[ ] Java
[ ] Python
Additional context (OPTIONAL)
I want to solve it in Java
Hi @Nivedita967
I would like to solve it in Python. Please assign it to me.
@Nivedita967 I can do in C++.
@Nivedita967 I want to solve it in C
Please assign it to me
@Nivedita967 Please check my pull request
Please check my pull request
|
gharchive/issue
| 2021-03-23T09:05:54 |
2025-04-01T04:55:25.500936
|
{
"authors": [
"Akash20x",
"Amit366",
"abhinav5481",
"greenblade29"
],
"repo": "Nivedita967/Data-Structure-and-Algorithms",
"url": "https://github.com/Nivedita967/Data-Structure-and-Algorithms/issues/945",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
656567355
|
"font" search results
When i search for "font", i get much less results (191) than the current search (365).
https://search.nixos.org/packages?query=font&from=45&size=15&sort=relevance&channel=unstable
https://nixos.org/nixos/packages.html?channel=nixpkgs-unstable&query=font
I don't know what the issue is, but maybe it can be figured out with those terms:
For literacy:
https://nixos.org/nixos/packages.html?channel=nixpkgs-unstable&query=literacy
https://search.nixos.org/packages?query=literacy&from=0&size=15&sort=alpha_asc&channel=unstable
For Unicode-compliant:
https://nixos.org/nixos/packages.html?channel=nixpkgs-unstable&query=Unicode-compliant
https://search.nixos.org/packages?query=Unicode-compliant&from=0&size=15&sort=alpha_asc&channel=unstable
Both are a 1-result search for the andika font. The package is indexed:
https://nixos.org/nixos/packages.html?channel=nixpkgs-unstable&query=andika
https://search.nixos.org/packages?show=andika&query=andika&from=0&size=15&sort=alpha_asc&channel=unstable
So it's not simply a question of something missing from the index.
The search results don't return "andika" for one of the test:
For Unicode-compliant:
https://nixos.org/nixos/packages.html?channel=nixpkgs-unstable&query=Unicode-compliant
https://search.nixos.org/packages?query=Unicode-compliant&from=0&size=15&sort=alpha_asc&channel=unstable
Going from the results for the single word compliant, it looks like the long description might not be used properly? clightning is a result for compliant in the old search, while not in the new search; which is too only found in the long description field.
(It is okay to split this off into a new issue if it's rude to re-open, though strictly speaking, it's part of this issue AFAICT)
|
gharchive/issue
| 2020-07-14T12:16:28 |
2025-04-01T04:55:25.562440
|
{
"authors": [
"davidak",
"samueldr"
],
"repo": "NixOS/nixos-search",
"url": "https://github.com/NixOS/nixos-search/issues/134",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
772582187
|
veracrypt: Add formatting tools like exfat-utils to PATH
I think the veracrypt package should depend on e.g. exfat-utils and similar so that creation of such file systems from the GUI works out of the box, instead of requiring that they are on the user's PATH.
CC @chpatrick
Still relevant
|
gharchive/issue
| 2020-12-22T02:08:20 |
2025-04-01T04:55:25.564161
|
{
"authors": [
"nh2"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/107360",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
980374165
|
nixos/noXlibs breaks gtk2 / gtk3 / gtk4
:EDIT:
I changed the title from noXlibs breaks gtk ... to noXlibs breaks jre since the real problem is that once noXlibs is enabled, it seems one cannot have any form of jre anymore.
Describe the bug
When building a nixos profile with
{
config.environment.noXlibs = true;
config.environment.systemPackages = [ pkgs.gtk2 ];
}
You get a failing builder with:
configure: error: Package requirements (cairo-xlib >= 1.6) were not met:
No package 'cairo-xlib' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables CAIRO_BACKEND_CFLAGS
and CAIRO_BACKEND_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
builder for '/nix/store/97p47bwvg0x8wgf7a9ri0blcc5yq9p04-gtk+-2.24.32.drv' failed with exit code 1
error: build of '/nix/store/97p47bwvg0x8wgf7a9ri0blcc5yq9p04-gtk+-2.24.32.drv' on 'ssh://builder' failed: builder for '/nix/store/97p47bwvg0x8wgf7a9ri0blcc5yq9p04-gtk+-2.24.32.drv' failed with exit code 1
builder for '/nix/store/97p47bwvg0x8wgf7a9ri0blcc5yq9p04-gtk+-2.24.32.drv' failed with exit code 1
cannot build derivation '/nix/store/1j2vbnrcxdjz9m5jdr53fssv6jsfcil5-system-path.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/inzihrq5b385g1yj7fw24c99bd8jzxfl-nixos-system-unifi-21.05pre-git.drv': 1 dependencies couldn't be built
cannot build derivation '/nix/store/3lysliyhi5ffaiwq6qfllmhrajr0ygbm-morph.drv': 1 dependencies couldn't be built
error: build of '/nix/store/3lysliyhi5ffaiwq6qfllmhrajr0ygbm-morph.drv' failed
Error while running `/run/current-system/sw/bin/nix-build /run/user/1000/morph-977101554/morph/eval-machines.nix -A machines --arg networkExpr /home/dminuoso/private/network/network.nix --argstr argsFile /run/user/1000/morph-726395305/morph-args.json --out-link /run/user/1000/morph-726395305/result --option max-jobs 0 ...`: See above.%
Similar errors for gtk3 and gtk4.
This is somewhat annoying since I generally like <nixpkgs/nixos/modules/profiles/minimal.nix> for my servers, but gtk is a dependency of openjdk that I need for some things.
Steps To Reproduce
Steps to reproduce the behavior:
See above.
Notify maintainers
@lopsided98 (introduced the cairo modification in no-x-libs)
@lovek323 @7c6f434c (gtk maintainers)
Metadata
N/A
This happens on 21.05 or on nixos-unstable.
Maintainer information:
# a list of nixpkgs attributes affected by the problem
attribute:
- gtk2
- gtk3
- gtk4
# a list of nixos modules affected by the problem
module:
adoptopenjdk-bin uses autoPatchelfHook to link X11 libraries. We may able to use patchelf --remove-needed to tell autoPatchelfHook not requireing X11, or just ignore errors by autoPatchelfIgnoreMissingDeps. adoptopenjdk-bin works just fine without X11 libraries unless classes using X11 is used.
We are barking up the wrong tree here. After a good nights sleep I realized that it's just gtk3 that's failing. So all we need to do is remove the GTK dependency from the bootstrap JDK, and use a headless jre, and all seems well.
jre8_trueHeadless = (pkgs.openjdk8.override
{ openjdk8-bootstrap = pkgs.openjdk8-bootstrap.override { gtkSupport = false; };
headless = true;
enableGnome2 = false;
}).jre;
Seems to do the job. @edwtjo is it sensible to disable gtkSupport on the bootstrap JDK? I don't fully understand what the bootstrap JDK needs to be able to do. Is this just needed for building OpenJDK?
This is currently preventing me from updating my NixOS boxes as well. 4 different machines actually which share similar configs.
gtk4 basically hangs. nix dumps logs griping about meson and ninja ( perhaps a battle tested build system might be more suitable for a project like gtk 😡 ).
I doubt this is a Nix issue. My guess based on the logs is that ninja attempts rm -r $PWD or a similar directory deletion which has open file descriptors.
This is currently preventing me from updating my NixOS boxes as well. 4 different machines actually which share similar configs.
gtk4 basically hangs. nix dumps logs griping about meson and ninja ( perhaps a battle tested build system might be more suitable for a project like gtk 😡 ).
I doubt this is a Nix issue. My guess based on the logs is that ninja attempts rm -r $PWD or a similar directory deletion which has open file descriptors.
Of you really think this is the same issue couldn't you just disable noXLibs? And why does this only occur since a recent update? I think the issue mentioned here exists since forever.
This is currently preventing me from updating my NixOS boxes as well. 4 different machines actually which share similar configs.
gtk4 basically hangs. nix dumps logs griping about meson and ninja ( perhaps a battle tested build system might be more suitable for a project like gtk rage ).
I doubt this is a Nix issue. My guess based on the logs is that ninja attempts rm -r $PWD or a similar directory deletion which has open file descriptors.
Of you really think this is the same issue couldn't you just disable noXLibs? And why does this only occur since a recent update? I think the issue mentioned here exists since forever.
You're right my issue is different. The debug output has a lot of similarities so this popped up in my search results; likely just because it's the most recent NixOS + gtkX issue.
I don't fully understand what the bootstrap JDK needs to be able to do. Is this just needed for building OpenJDK?
Yeah the bootstrap jdk (nowerdays called boot jdk) is needed to build the jdk itself.
see https://github.com/openjdk/jdk17u/blob/master/doc/building.md#boot-jdk-requirements
This is still a problem stale bot
I also don't like this but I think this is more or less "intended" behaviour and probably not easily fixable.
Yes and I personally stumbled over this option a couple of times and rather would remove it to reduce unexpected build failures in containers.
It also breaks nixos-rebuild build-vm, for some reason. I don't see why an option of the guest system would affect the build of the VM on the host, but it does. To reproduce it's enough to do:
imports = [ (modulesPath + "/profiles/minimal.nix") ];
and nixos-rebuild build-vm.
There are mixed different problems into this issue, hence I am closing it to untangle them.
That GTK is not working without x11 or on a headless system, is acceptable in my opinion as it is a pure GUI library and already disabled in multiple places in noXlibs.
That the openjdk bootstrapping breaks with it, is unrelated to the original issue and I would suggest to just booststrap without GUI which would also speed the build process up.
Also the build-vm comment above this one is probably a totally separate issue not belonging into this one.
Also the build-vm comment above this one is probably a totally separate issue not belonging into this one.
Maybe, but the build fails with exactly the same error reported here.
@SuperSandro2000
These two issues are precisely related. It is because the bootstrap JDK induces an (unneeded) gnome dependency that config.environment.noXlibs conflicts with the presence of a JRE.
I've made a proposal that went unnoticed by the maintainer.
We are barking up the wrong tree here. After a good nights sleep I realized that it's just gtk3 that's failing. So all we need to do is remove the GTK dependency from the bootstrap JDK, and use a headless jre, and all seems well.
jre8_trueHeadless = (pkgs.openjdk8.override
{ openjdk8-bootstrap = pkgs.openjdk8-bootstrap.override { gtkSupport = false; };
headless = true;
enableGnome2 = false;
}).jre;
Seems to do the job. @edwtjo is it sensible to disable gtkSupport on the bootstrap JDK? I don't fully understand what the bootstrap JDK needs to be able to do. Is this just needed for building OpenJDK?
I think I fixed that with #213812
|
gharchive/issue
| 2021-08-26T15:24:59 |
2025-04-01T04:55:25.580410
|
{
"authors": [
"SuperSandro2000",
"Thomasdezeeuw",
"aakropotkin",
"asbachb",
"dminuoso",
"mohe2015",
"rnhmjoj",
"taku0"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/135810",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
983066164
|
awscli2 build fails on nixpkgs-unstable on Darwin
Describe the bug
awscli2 build fails on Darwin during test phase.
Steps To Reproduce
nix-build -A awscli2
Expected behavior
It builds.
Additional context
Test failures
======================================================================
FAIL: test_download_sync_using_crt_client (tests.functional.s3.test_sync_command.TestSyncWithCRTClient)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/functional/s3/test_sync_command.py", line 407, in test_download_sync_using_crt_client
self.run_command(cmdline)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/functional/s3/__init__.py", line 374, in run_command
result = self.cli_runner.run(cmdline)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/__init__.py", line 46, in run
runner_result = self._do_run(cmdline)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/__init__.py", line 77, in _do_run
self._session_stubber.assert_no_remaining_responses()
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/__init__.py", line 107, in assert_no_remaining_responses
raise AssertionError(
AssertionError: The following queued responses are remaining: deque([<tests.HTTPResponse object at 0x199d7be80>])
-------------------- >> begin captured logging << --------------------
awscli.plugin: DEBUG: Importing plugin __builtin__: awscli.handlers
awscli.plugin: DEBUG: Initializing plugin __builtin__: <module 'awscli.handlers' from '/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/handlers.py'>
awscli.plugin: DEBUG: cli_legacy_plugin_path not defined in plugin section. Not importing additional plugins.
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_s3 at 0x10d5abca0>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_ddb at 0x10e0e78b0>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <bound method BasicCommand.add_command of <class 'awscli.customizations.configure.configure.ConfigureCommand'>>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function change_name at 0x10e0e7280>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function change_name at 0x10e0e7670>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function alias_opsworks_cm at 0x10e142f70>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_history_commands at 0x10d43ca60>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <bound method BasicCommand.add_command of <class 'awscli.customizations.devcommands.CLIDevCommand'>>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_waiters at 0x10d8f3ca0>
botocore.loaders: DEBUG: Loading JSON file: /private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/data/cli.json
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_types at 0x10d844ca0>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function no_sign_request at 0x10d844ee0>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_verify_ssl at 0x10d844e50>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_cli_read_timeout at 0x10d893040>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_cli_connect_timeout at 0x10d844f70>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <built-in method update of dict object at 0x199d9b040>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function add_timestamp_parser at 0x10d8c6550>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function register_uri_param_handler at 0x10d7e5160>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function add_binary_formatter at 0x10d7c5c10>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function no_pager_handler at 0x10ca94af0>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function inject_assume_role_provider_cache at 0x10d0d0ca0>
botocore.utils: DEBUG: IMDS ENDPOINT: http://169.254.169.254/
botocore.hooks: DEBUG: Event session-initialized: calling handler <function attach_history_handler at 0x10d43c940>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function inject_json_file_cache at 0x10d0d1700>
botocore.hooks: DEBUG: Event building-command-table.s3: calling handler <function add_waiters at 0x10d8f3ca0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.s3.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event building-command-table.s3_sync: calling handler <function register_sync_strategies at 0x10d4cbd30>
botocore.hooks: DEBUG: Event building-command-table.s3_sync: calling handler <function add_waiters at 0x10d8f3ca0>
botocore.hooks: DEBUG: Event building-arg-table.s3_sync: calling handler <bound method BaseSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.sizeonly.SizeOnlySync object at 0x199dc9dc0>>
botocore.hooks: DEBUG: Event building-arg-table.s3_sync: calling handler <bound method BaseSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.exacttimestamps.ExactTimestampsSync object at 0x199dc9c10>>
botocore.hooks: DEBUG: Event building-arg-table.s3_sync: calling handler <bound method BaseSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.delete.DeleteSync object at 0x199dc9c40>>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.paths: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.dryrun: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x199d4adf0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.quiet: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x199d4adf0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.acl: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.follow-symlinks: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x199d4adf0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c-key: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-kms-key-id: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c-copy-source: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c-copy-source-key: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.storage-class: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.grants: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.website-redirect: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-type: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.cache-control: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-disposition: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-encoding: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-language: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.expires: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.source-region: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.only-show-errors: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x199d4adf0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.page-size: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.ignore-glacier-warnings: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x199d4adf0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.force-glacier-transfer: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x199d4adf0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.request-payer: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.metadata: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.copy-props: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x199d4adf0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.metadata-directive: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.size-only: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x199d4adf0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.exact-timestamps: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x199d4adf0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.delete: calling handler <awscli.paramfile.URIArgumentHandler object at 0x199dcefd0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x199d4adf0>
botocore.credentials: DEBUG: Looking for credentials via: env
botocore.credentials: INFO: Found credentials in environment variables.
botocore.loaders: DEBUG: Loading JSON file: /nix/store/gxz7gris0qnwswg21y4q05zms79b98zr-python3.9-botocore-2.0.0dev138/lib/python3.9/site-packages/botocore/data/endpoints.json
botocore.hooks: DEBUG: Event choose-service-name: calling handler <function handle_service_name_alias at 0x10c1c1040>
botocore.loaders: DEBUG: Loading JSON file: /nix/store/gxz7gris0qnwswg21y4q05zms79b98zr-python3.9-botocore-2.0.0dev138/lib/python3.9/site-packages/botocore/data/s3/2006-03-01/service-2.json
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x10c15f550>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x10c15f310>
botocore.endpoint: DEBUG: Setting s3 timeout as (60, 60)
botocore.hooks: DEBUG: Event choose-service-name: calling handler <function handle_service_name_alias at 0x10c1c1040>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x10c15f550>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x10c15f310>
botocore.endpoint: DEBUG: Setting s3 timeout as (60, 60)
botocore.hooks: DEBUG: Event choose-service-name: calling handler <function handle_service_name_alias at 0x10c1c1040>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x10c15f550>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x10c15f310>
botocore.endpoint: DEBUG: Setting s3 timeout as (60, 60)
awscli.clidriver: DEBUG: Exception caught in main()
Traceback (most recent call last):
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/clidriver.py", line 459, in main
return command_table[parsed_args.command](remaining, parsed_args)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/commands.py", line 197, in __call__
return self.subcommand_table[parsed_args.subcommand](remaining,
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/commands.py", line 191, in __call__
rc = self._run_main(parsed_args, parsed_globals)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/subcommands.py", line 716, in _run_main
transfer_manager = self._get_transfer_manager(
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/subcommands.py", line 758, in _get_transfer_manager
return TransferManagerFactory(self._session).create_transfer_manager(
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/factory.py", line 65, in create_transfer_manager
return self._create_crt_transfer_manager(params, runtime_config)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/factory.py", line 80, in _create_crt_transfer_manager
self._create_crt_client(params, runtime_config),
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/factory.py", line 103, in _create_crt_client
return create_s3_crt_client(**create_crt_client_kwargs)
File "/nix/store/5aay6x7y2f0hqqbr5hmqgxr66h7nmhli-python3.9-s3transfer-0.4.2/lib/python3.9/site-packages/s3transfer/crt.py", line 105, in create_s3_crt_client
event_loop_group = EventLoopGroup(num_threads)
File "/nix/store/3dk3kphj5xw1rjxz9a3lgjar23s5ahsn-python3.9-awscrt-0.11.24/lib/python3.9/site-packages/awscrt/io.py", line 84, in __init__
self._binding = _awscrt.event_loop_group_new(num_threads, is_pinned, cpu_group, on_shutdown)
RuntimeError: 30 (AWS_ERROR_PRIORITY_QUEUE_EMPTY): Attempt to pop an item from an empty queue.
--------------------- >> end captured logging << ---------------------
======================================================================
FAIL: test_download_sync_with_delete_using_crt_client (tests.functional.s3.test_sync_command.TestSyncWithCRTClient)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/functional/s3/test_sync_command.py", line 448, in test_download_sync_with_delete_using_crt_client
self.run_command(cmdline)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/functional/s3/__init__.py", line 374, in run_command
result = self.cli_runner.run(cmdline)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/__init__.py", line 46, in run
runner_result = self._do_run(cmdline)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/__init__.py", line 77, in _do_run
self._session_stubber.assert_no_remaining_responses()
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/__init__.py", line 107, in assert_no_remaining_responses
raise AssertionError(
AssertionError: The following queued responses are remaining: deque([<tests.HTTPResponse object at 0x19a32b700>])
-------------------- >> begin captured logging << --------------------
awscli.plugin: DEBUG: Importing plugin __builtin__: awscli.handlers
awscli.plugin: DEBUG: Initializing plugin __builtin__: <module 'awscli.handlers' from '/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/handlers.py'>
awscli.plugin: DEBUG: cli_legacy_plugin_path not defined in plugin section. Not importing additional plugins.
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_s3 at 0x10d5abca0>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_ddb at 0x10e0e78b0>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <bound method BasicCommand.add_command of <class 'awscli.customizations.configure.configure.ConfigureCommand'>>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function change_name at 0x10e0e7280>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function change_name at 0x10e0e7670>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function alias_opsworks_cm at 0x10e142f70>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_history_commands at 0x10d43ca60>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <bound method BasicCommand.add_command of <class 'awscli.customizations.devcommands.CLIDevCommand'>>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_waiters at 0x10d8f3ca0>
botocore.loaders: DEBUG: Loading JSON file: /private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/data/cli.json
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_types at 0x10d844ca0>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function no_sign_request at 0x10d844ee0>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_verify_ssl at 0x10d844e50>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_cli_read_timeout at 0x10d893040>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_cli_connect_timeout at 0x10d844f70>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <built-in method update of dict object at 0x19a257bc0>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function add_timestamp_parser at 0x10d8c6550>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function register_uri_param_handler at 0x10d7e5160>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function add_binary_formatter at 0x10d7c5c10>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function no_pager_handler at 0x10ca94af0>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function inject_assume_role_provider_cache at 0x10d0d0ca0>
botocore.utils: DEBUG: IMDS ENDPOINT: http://169.254.169.254/
botocore.hooks: DEBUG: Event session-initialized: calling handler <function attach_history_handler at 0x10d43c940>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function inject_json_file_cache at 0x10d0d1700>
botocore.hooks: DEBUG: Event building-command-table.s3: calling handler <function add_waiters at 0x10d8f3ca0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.s3.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event building-command-table.s3_sync: calling handler <function register_sync_strategies at 0x10d4cbd30>
botocore.hooks: DEBUG: Event building-command-table.s3_sync: calling handler <function add_waiters at 0x10d8f3ca0>
botocore.hooks: DEBUG: Event building-arg-table.s3_sync: calling handler <bound method BaseSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.sizeonly.SizeOnlySync object at 0x19a256100>>
botocore.hooks: DEBUG: Event building-arg-table.s3_sync: calling handler <bound method BaseSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.exacttimestamps.ExactTimestampsSync object at 0x19a256250>>
botocore.hooks: DEBUG: Event building-arg-table.s3_sync: calling handler <bound method BaseSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.delete.DeleteSync object at 0x19a2561f0>>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.paths: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.dryrun: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a33fac0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.quiet: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a33fac0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.acl: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.follow-symlinks: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a33fac0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c-key: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-kms-key-id: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c-copy-source: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c-copy-source-key: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.storage-class: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.grants: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.website-redirect: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-type: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.cache-control: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-disposition: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-encoding: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-language: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.expires: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.source-region: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.only-show-errors: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a33fac0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.page-size: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.ignore-glacier-warnings: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a33fac0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.force-glacier-transfer: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a33fac0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.request-payer: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.metadata: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.copy-props: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a33fac0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.metadata-directive: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.size-only: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a33fac0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.exact-timestamps: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a33fac0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.delete: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198d98400>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a33fac0>
botocore.credentials: DEBUG: Looking for credentials via: env
botocore.credentials: INFO: Found credentials in environment variables.
botocore.loaders: DEBUG: Loading JSON file: /nix/store/gxz7gris0qnwswg21y4q05zms79b98zr-python3.9-botocore-2.0.0dev138/lib/python3.9/site-packages/botocore/data/endpoints.json
botocore.hooks: DEBUG: Event choose-service-name: calling handler <function handle_service_name_alias at 0x10c1c1040>
botocore.loaders: DEBUG: Loading JSON file: /nix/store/gxz7gris0qnwswg21y4q05zms79b98zr-python3.9-botocore-2.0.0dev138/lib/python3.9/site-packages/botocore/data/s3/2006-03-01/service-2.json
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x10c15f550>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x10c15f310>
botocore.endpoint: DEBUG: Setting s3 timeout as (60, 60)
botocore.hooks: DEBUG: Event choose-service-name: calling handler <function handle_service_name_alias at 0x10c1c1040>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x10c15f550>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x10c15f310>
botocore.endpoint: DEBUG: Setting s3 timeout as (60, 60)
botocore.hooks: DEBUG: Event choose-service-name: calling handler <function handle_service_name_alias at 0x10c1c1040>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x10c15f550>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x10c15f310>
botocore.endpoint: DEBUG: Setting s3 timeout as (60, 60)
awscli.clidriver: DEBUG: Exception caught in main()
Traceback (most recent call last):
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/clidriver.py", line 459, in main
return command_table[parsed_args.command](remaining, parsed_args)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/commands.py", line 197, in __call__
return self.subcommand_table[parsed_args.subcommand](remaining,
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/commands.py", line 191, in __call__
rc = self._run_main(parsed_args, parsed_globals)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/subcommands.py", line 716, in _run_main
transfer_manager = self._get_transfer_manager(
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/subcommands.py", line 758, in _get_transfer_manager
return TransferManagerFactory(self._session).create_transfer_manager(
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/factory.py", line 65, in create_transfer_manager
return self._create_crt_transfer_manager(params, runtime_config)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/factory.py", line 80, in _create_crt_transfer_manager
self._create_crt_client(params, runtime_config),
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/factory.py", line 103, in _create_crt_client
return create_s3_crt_client(**create_crt_client_kwargs)
File "/nix/store/5aay6x7y2f0hqqbr5hmqgxr66h7nmhli-python3.9-s3transfer-0.4.2/lib/python3.9/site-packages/s3transfer/crt.py", line 105, in create_s3_crt_client
event_loop_group = EventLoopGroup(num_threads)
File "/nix/store/3dk3kphj5xw1rjxz9a3lgjar23s5ahsn-python3.9-awscrt-0.11.24/lib/python3.9/site-packages/awscrt/io.py", line 84, in __init__
self._binding = _awscrt.event_loop_group_new(num_threads, is_pinned, cpu_group, on_shutdown)
RuntimeError: 30 (AWS_ERROR_PRIORITY_QUEUE_EMPTY): Attempt to pop an item from an empty queue.
--------------------- >> end captured logging << ---------------------
======================================================================
FAIL: test_upload_sync_using_crt_client (tests.functional.s3.test_sync_command.TestSyncWithCRTClient)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/functional/s3/test_sync_command.py", line 391, in test_upload_sync_using_crt_client
self.run_command(cmdline)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/functional/s3/__init__.py", line 374, in run_command
result = self.cli_runner.run(cmdline)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/__init__.py", line 46, in run
runner_result = self._do_run(cmdline)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/__init__.py", line 77, in _do_run
self._session_stubber.assert_no_remaining_responses()
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/__init__.py", line 107, in assert_no_remaining_responses
raise AssertionError(
AssertionError: The following queued responses are remaining: deque([<tests.HTTPResponse object at 0x19a8527f0>])
-------------------- >> begin captured logging << --------------------
awscli.plugin: DEBUG: Importing plugin __builtin__: awscli.handlers
awscli.plugin: DEBUG: Initializing plugin __builtin__: <module 'awscli.handlers' from '/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/handlers.py'>
awscli.plugin: DEBUG: cli_legacy_plugin_path not defined in plugin section. Not importing additional plugins.
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_s3 at 0x10d5abca0>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_ddb at 0x10e0e78b0>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <bound method BasicCommand.add_command of <class 'awscli.customizations.configure.configure.ConfigureCommand'>>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function change_name at 0x10e0e7280>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function change_name at 0x10e0e7670>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function alias_opsworks_cm at 0x10e142f70>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_history_commands at 0x10d43ca60>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <bound method BasicCommand.add_command of <class 'awscli.customizations.devcommands.CLIDevCommand'>>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_waiters at 0x10d8f3ca0>
botocore.loaders: DEBUG: Loading JSON file: /private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/data/cli.json
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_types at 0x10d844ca0>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function no_sign_request at 0x10d844ee0>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_verify_ssl at 0x10d844e50>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_cli_read_timeout at 0x10d893040>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_cli_connect_timeout at 0x10d844f70>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <built-in method update of dict object at 0x19a7e8100>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function add_timestamp_parser at 0x10d8c6550>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function register_uri_param_handler at 0x10d7e5160>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function add_binary_formatter at 0x10d7c5c10>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function no_pager_handler at 0x10ca94af0>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function inject_assume_role_provider_cache at 0x10d0d0ca0>
botocore.utils: DEBUG: IMDS ENDPOINT: http://169.254.169.254/
botocore.hooks: DEBUG: Event session-initialized: calling handler <function attach_history_handler at 0x10d43c940>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function inject_json_file_cache at 0x10d0d1700>
botocore.hooks: DEBUG: Event building-command-table.s3: calling handler <function add_waiters at 0x10d8f3ca0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.s3.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event building-command-table.s3_sync: calling handler <function register_sync_strategies at 0x10d4cbd30>
botocore.hooks: DEBUG: Event building-command-table.s3_sync: calling handler <function add_waiters at 0x10d8f3ca0>
botocore.hooks: DEBUG: Event building-arg-table.s3_sync: calling handler <bound method BaseSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.sizeonly.SizeOnlySync object at 0x19a81cd60>>
botocore.hooks: DEBUG: Event building-arg-table.s3_sync: calling handler <bound method BaseSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.exacttimestamps.ExactTimestampsSync object at 0x19a81cd00>>
botocore.hooks: DEBUG: Event building-arg-table.s3_sync: calling handler <bound method BaseSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.delete.DeleteSync object at 0x19a81cf40>>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.paths: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.dryrun: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a83fd30>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.quiet: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a83fd30>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.acl: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.follow-symlinks: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a83fd30>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c-key: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-kms-key-id: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c-copy-source: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c-copy-source-key: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.storage-class: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.grants: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.website-redirect: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-type: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.cache-control: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-disposition: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-encoding: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-language: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.expires: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.source-region: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.only-show-errors: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a83fd30>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.page-size: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.ignore-glacier-warnings: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a83fd30>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.force-glacier-transfer: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a83fd30>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.request-payer: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.metadata: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.copy-props: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a83fd30>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.metadata-directive: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.size-only: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a83fd30>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.exact-timestamps: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a83fd30>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.delete: calling handler <awscli.paramfile.URIArgumentHandler object at 0x19a81c880>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19a83fd30>
botocore.credentials: DEBUG: Looking for credentials via: env
botocore.credentials: INFO: Found credentials in environment variables.
botocore.loaders: DEBUG: Loading JSON file: /nix/store/gxz7gris0qnwswg21y4q05zms79b98zr-python3.9-botocore-2.0.0dev138/lib/python3.9/site-packages/botocore/data/endpoints.json
botocore.hooks: DEBUG: Event choose-service-name: calling handler <function handle_service_name_alias at 0x10c1c1040>
botocore.loaders: DEBUG: Loading JSON file: /nix/store/gxz7gris0qnwswg21y4q05zms79b98zr-python3.9-botocore-2.0.0dev138/lib/python3.9/site-packages/botocore/data/s3/2006-03-01/service-2.json
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x10c15f550>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x10c15f310>
botocore.endpoint: DEBUG: Setting s3 timeout as (60, 60)
botocore.hooks: DEBUG: Event choose-service-name: calling handler <function handle_service_name_alias at 0x10c1c1040>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x10c15f550>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x10c15f310>
botocore.endpoint: DEBUG: Setting s3 timeout as (60, 60)
botocore.hooks: DEBUG: Event choose-service-name: calling handler <function handle_service_name_alias at 0x10c1c1040>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x10c15f550>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x10c15f310>
botocore.endpoint: DEBUG: Setting s3 timeout as (60, 60)
awscli.clidriver: DEBUG: Exception caught in main()
Traceback (most recent call last):
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/clidriver.py", line 459, in main
return command_table[parsed_args.command](remaining, parsed_args)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/commands.py", line 197, in __call__
return self.subcommand_table[parsed_args.subcommand](remaining,
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/commands.py", line 191, in __call__
rc = self._run_main(parsed_args, parsed_globals)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/subcommands.py", line 716, in _run_main
transfer_manager = self._get_transfer_manager(
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/subcommands.py", line 758, in _get_transfer_manager
return TransferManagerFactory(self._session).create_transfer_manager(
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/factory.py", line 65, in create_transfer_manager
return self._create_crt_transfer_manager(params, runtime_config)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/factory.py", line 80, in _create_crt_transfer_manager
self._create_crt_client(params, runtime_config),
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/factory.py", line 103, in _create_crt_client
return create_s3_crt_client(**create_crt_client_kwargs)
File "/nix/store/5aay6x7y2f0hqqbr5hmqgxr66h7nmhli-python3.9-s3transfer-0.4.2/lib/python3.9/site-packages/s3transfer/crt.py", line 105, in create_s3_crt_client
event_loop_group = EventLoopGroup(num_threads)
File "/nix/store/3dk3kphj5xw1rjxz9a3lgjar23s5ahsn-python3.9-awscrt-0.11.24/lib/python3.9/site-packages/awscrt/io.py", line 84, in __init__
self._binding = _awscrt.event_loop_group_new(num_threads, is_pinned, cpu_group, on_shutdown)
RuntimeError: 30 (AWS_ERROR_PRIORITY_QUEUE_EMPTY): Attempt to pop an item from an empty queue.
--------------------- >> end captured logging << ---------------------
======================================================================
FAIL: test_upload_sync_with_delete_using_crt_client (tests.functional.s3.test_sync_command.TestSyncWithCRTClient)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/functional/s3/test_sync_command.py", line 424, in test_upload_sync_with_delete_using_crt_client
self.run_command(cmdline)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/functional/s3/__init__.py", line 374, in run_command
result = self.cli_runner.run(cmdline)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/__init__.py", line 46, in run
runner_result = self._do_run(cmdline)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/__init__.py", line 77, in _do_run
self._session_stubber.assert_no_remaining_responses()
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/tests/__init__.py", line 107, in assert_no_remaining_responses
raise AssertionError(
AssertionError: The following queued responses are remaining: deque([<tests.HTTPResponse object at 0x19ad13700>])
-------------------- >> begin captured logging << --------------------
awscli.plugin: DEBUG: Importing plugin __builtin__: awscli.handlers
awscli.plugin: DEBUG: Initializing plugin __builtin__: <module 'awscli.handlers' from '/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/handlers.py'>
awscli.plugin: DEBUG: cli_legacy_plugin_path not defined in plugin section. Not importing additional plugins.
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_s3 at 0x10d5abca0>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_ddb at 0x10e0e78b0>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <bound method BasicCommand.add_command of <class 'awscli.customizations.configure.configure.ConfigureCommand'>>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function change_name at 0x10e0e7280>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function change_name at 0x10e0e7670>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function alias_opsworks_cm at 0x10e142f70>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_history_commands at 0x10d43ca60>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <bound method BasicCommand.add_command of <class 'awscli.customizations.devcommands.CLIDevCommand'>>
botocore.hooks: DEBUG: Event building-command-table.main: calling handler <function add_waiters at 0x10d8f3ca0>
botocore.loaders: DEBUG: Loading JSON file: /private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/data/cli.json
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_types at 0x10d844ca0>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function no_sign_request at 0x10d844ee0>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_verify_ssl at 0x10d844e50>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_cli_read_timeout at 0x10d893040>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <function resolve_cli_connect_timeout at 0x10d844f70>
botocore.hooks: DEBUG: Event top-level-args-parsed: calling handler <built-in method update of dict object at 0x19ad7f6c0>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function add_timestamp_parser at 0x10d8c6550>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function register_uri_param_handler at 0x10d7e5160>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function add_binary_formatter at 0x10d7c5c10>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function no_pager_handler at 0x10ca94af0>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function inject_assume_role_provider_cache at 0x10d0d0ca0>
botocore.utils: DEBUG: IMDS ENDPOINT: http://169.254.169.254/
botocore.hooks: DEBUG: Event session-initialized: calling handler <function attach_history_handler at 0x10d43c940>
botocore.hooks: DEBUG: Event session-initialized: calling handler <function inject_json_file_cache at 0x10d0d1700>
botocore.hooks: DEBUG: Event building-command-table.s3: calling handler <function add_waiters at 0x10d8f3ca0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.s3.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event building-command-table.s3_sync: calling handler <function register_sync_strategies at 0x10d4cbd30>
botocore.hooks: DEBUG: Event building-command-table.s3_sync: calling handler <function add_waiters at 0x10d8f3ca0>
botocore.hooks: DEBUG: Event building-arg-table.s3_sync: calling handler <bound method BaseSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.sizeonly.SizeOnlySync object at 0x19ada4b80>>
botocore.hooks: DEBUG: Event building-arg-table.s3_sync: calling handler <bound method BaseSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.exacttimestamps.ExactTimestampsSync object at 0x19adb1a60>>
botocore.hooks: DEBUG: Event building-arg-table.s3_sync: calling handler <bound method BaseSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.delete.DeleteSync object at 0x19adb1b50>>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.paths: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.dryrun: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19ad34b50>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.quiet: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19ad34b50>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.acl: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.follow-symlinks: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19ad34b50>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c-key: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-kms-key-id: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c-copy-source: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.sse-c-copy-source-key: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.storage-class: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.grants: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.website-redirect: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-type: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.cache-control: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-disposition: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-encoding: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.content-language: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.expires: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.source-region: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.only-show-errors: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19ad34b50>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.anonymous: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.page-size: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.ignore-glacier-warnings: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19ad34b50>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.force-glacier-transfer: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19ad34b50>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.request-payer: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.metadata: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.copy-props: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19ad34b50>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.metadata-directive: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.size-only: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19ad34b50>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.exact-timestamps: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19ad34b50>
botocore.hooks: DEBUG: Event load-cli-arg.custom.sync.delete: calling handler <awscli.paramfile.URIArgumentHandler object at 0x198eea1f0>
botocore.hooks: DEBUG: Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthandParser object at 0x19ad34b50>
botocore.credentials: DEBUG: Looking for credentials via: env
botocore.credentials: INFO: Found credentials in environment variables.
botocore.loaders: DEBUG: Loading JSON file: /nix/store/gxz7gris0qnwswg21y4q05zms79b98zr-python3.9-botocore-2.0.0dev138/lib/python3.9/site-packages/botocore/data/endpoints.json
botocore.hooks: DEBUG: Event choose-service-name: calling handler <function handle_service_name_alias at 0x10c1c1040>
botocore.loaders: DEBUG: Loading JSON file: /nix/store/gxz7gris0qnwswg21y4q05zms79b98zr-python3.9-botocore-2.0.0dev138/lib/python3.9/site-packages/botocore/data/s3/2006-03-01/service-2.json
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x10c15f550>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x10c15f310>
botocore.endpoint: DEBUG: Setting s3 timeout as (60, 60)
botocore.hooks: DEBUG: Event choose-service-name: calling handler <function handle_service_name_alias at 0x10c1c1040>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x10c15f550>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x10c15f310>
botocore.endpoint: DEBUG: Setting s3 timeout as (60, 60)
botocore.hooks: DEBUG: Event choose-service-name: calling handler <function handle_service_name_alias at 0x10c1c1040>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x10c15f550>
botocore.hooks: DEBUG: Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x10c15f310>
botocore.endpoint: DEBUG: Setting s3 timeout as (60, 60)
awscli.clidriver: DEBUG: Exception caught in main()
Traceback (most recent call last):
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/clidriver.py", line 459, in main
return command_table[parsed_args.command](remaining, parsed_args)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/commands.py", line 197, in __call__
return self.subcommand_table[parsed_args.subcommand](remaining,
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/commands.py", line 191, in __call__
rc = self._run_main(parsed_args, parsed_globals)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/subcommands.py", line 716, in _run_main
transfer_manager = self._get_transfer_manager(
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/subcommands.py", line 758, in _get_transfer_manager
return TransferManagerFactory(self._session).create_transfer_manager(
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/factory.py", line 65, in create_transfer_manager
return self._create_crt_transfer_manager(params, runtime_config)
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/factory.py", line 80, in _create_crt_transfer_manager
self._create_crt_client(params, runtime_config),
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/awscli/customizations/s3/factory.py", line 103, in _create_crt_client
return create_s3_crt_client(**create_crt_client_kwargs)
File "/nix/store/5aay6x7y2f0hqqbr5hmqgxr66h7nmhli-python3.9-s3transfer-0.4.2/lib/python3.9/site-packages/s3transfer/crt.py", line 105, in create_s3_crt_client
event_loop_group = EventLoopGroup(num_threads)
File "/nix/store/3dk3kphj5xw1rjxz9a3lgjar23s5ahsn-python3.9-awscrt-0.11.24/lib/python3.9/site-packages/awscrt/io.py", line 84, in __init__
self._binding = _awscrt.event_loop_group_new(num_threads, is_pinned, cpu_group, on_shutdown)
RuntimeError: 30 (AWS_ERROR_PRIORITY_QUEUE_EMPTY): Attempt to pop an item from an empty queue.
--------------------- >> end captured logging << ---------------------
Name Stmts Miss Cover
-------------------------------------------------------------------------------------------
awscli/__init__.py 13 0 100%
awscli/alias.py 109 1 99%
awscli/argparser.py 106 7 93%
awscli/argprocess.py 248 14 94%
awscli/arguments.py 243 11 95%
awscli/autocomplete/__init__.py 19 0 100%
awscli/autocomplete/autogen.py 147 2 99%
awscli/autocomplete/completer.py 26 2 92%
awscli/autocomplete/custom.py 7 0 100%
awscli/autocomplete/db.py 34 1 97%
awscli/autocomplete/filters.py 19 0 100%
awscli/autocomplete/generator.py 7 0 100%
awscli/autocomplete/local/__init__.py 0 0 100%
awscli/autocomplete/local/basic.py 327 10 97%
awscli/autocomplete/local/fetcher.py 26 0 100%
awscli/autocomplete/local/indexer.py 45 0 100%
awscli/autocomplete/local/model.py 39 0 100%
awscli/autocomplete/main.py 21 3 86%
awscli/autocomplete/parser.py 160 1 99%
awscli/autocomplete/serverside/__init__.py 5 0 100%
awscli/autocomplete/serverside/custom_completers/__init__.py 0 0 100%
awscli/autocomplete/serverside/custom_completers/ddb/__init__.py 0 0 100%
awscli/autocomplete/serverside/custom_completers/ddb/autocomplete.py 11 0 100%
awscli/autocomplete/serverside/custom_completers/logs/__init__.py 0 0 100%
awscli/autocomplete/serverside/custom_completers/logs/autocomplete.py 11 0 100%
awscli/autocomplete/serverside/indexer.py 59 0 100%
awscli/autocomplete/serverside/model.py 11 0 100%
awscli/autocomplete/serverside/servercomp.py 78 1 99%
awscli/autoprompt/__init__.py 0 0 100%
awscli/autoprompt/core.py 53 6 89%
awscli/autoprompt/doc.py 63 0 100%
awscli/autoprompt/factory.py 173 36 79%
awscli/autoprompt/filters.py 42 0 100%
awscli/autoprompt/history.py 54 4 93%
awscli/autoprompt/logger.py 17 3 82%
awscli/autoprompt/output.py 66 2 97%
awscli/autoprompt/prompttoolkit.py 206 5 98%
awscli/autoprompt/widgets.py 156 6 96%
awscli/bcdoc/__init__.py 1 0 100%
awscli/bcdoc/docevents.py 34 0 100%
awscli/bcdoc/docstringparser.py 119 2 98%
awscli/bcdoc/restdoc.py 112 1 99%
awscli/bcdoc/style.py 288 20 93%
awscli/bcdoc/textwriter.py 556 261 53%
awscli/clidocs.py 497 4 99%
awscli/clidriver.py 461 6 99%
awscli/commands.py 20 2 90%
awscli/compat.py 245 96 61%
awscli/completer.py 98 17 83%
awscli/constants.py 4 0 100%
awscli/customizations/__init__.py 1 0 100%
awscli/customizations/addexamples.py 14 0 100%
awscli/customizations/argrename.py 21 0 100%
awscli/customizations/arguments.py 64 0 100%
awscli/customizations/assumerole.py 18 0 100%
awscli/customizations/awslambda.py 65 1 98%
awscli/customizations/binaryformat.py 48 0 100%
awscli/customizations/cliinput.py 60 1 98%
awscli/customizations/cloudformation/__init__.py 7 0 100%
awscli/customizations/cloudformation/artifact_exporter.py 299 4 99%
awscli/customizations/cloudformation/deploy.py 127 2 98%
awscli/customizations/cloudformation/deployer.py 92 3 97%
awscli/customizations/cloudformation/exceptions.py 22 0 100%
awscli/customizations/cloudformation/package.py 47 9 81%
awscli/customizations/cloudformation/yamlhelper.py 44 0 100%
awscli/customizations/cloudfront.py 99 1 99%
awscli/customizations/cloudsearch.py 24 2 92%
awscli/customizations/cloudsearchdomain.py 7 0 100%
awscli/customizations/cloudtrail/__init__.py 5 0 100%
awscli/customizations/cloudtrail/utils.py 8 0 100%
awscli/customizations/cloudtrail/validation.py 406 9 98%
awscli/customizations/codeartifact/__init__.py 5 0 100%
awscli/customizations/codeartifact/login.py 285 6 98%
awscli/customizations/codecommit.py 102 3 97%
awscli/customizations/codedeploy/__init__.py 0 0 100%
awscli/customizations/codedeploy/codedeploy.py 21 0 100%
awscli/customizations/codedeploy/deregister.py 81 13 84%
awscli/customizations/codedeploy/install.py 52 7 87%
awscli/customizations/codedeploy/locationargs.py 46 1 98%
awscli/customizations/codedeploy/push.py 100 3 97%
awscli/customizations/codedeploy/register.py 64 4 94%
awscli/customizations/codedeploy/systems.py 109 15 86%
awscli/customizations/codedeploy/uninstall.py 34 7 79%
awscli/customizations/codedeploy/utils.py 68 0 100%
awscli/customizations/commands.py 245 2 99%
awscli/customizations/configservice/__init__.py 0 0 100%
awscli/customizations/configservice/getstatus.py 58 0 100%
awscli/customizations/configservice/putconfigurationrecorder.py 29 1 97%
awscli/customizations/configservice/rename_cmd.py 5 0 100%
awscli/customizations/configservice/subscribe.py 83 0 100%
awscli/customizations/configure/__init__.py 26 0 100%
awscli/customizations/configure/addmodel.py 37 0 100%
awscli/customizations/configure/configure.py 71 0 100%
awscli/customizations/configure/get.py 61 1 98%
awscli/customizations/configure/importer.py 112 2 98%
awscli/customizations/configure/list.py 62 4 94%
awscli/customizations/configure/listprofiles.py 16 0 100%
awscli/customizations/configure/set.py 57 0 100%
awscli/customizations/configure/sso.py 197 0 100%
awscli/customizations/configure/writer.py 105 1 99%
awscli/customizations/datapipeline/__init__.py 188 20 89%
awscli/customizations/datapipeline/constants.py 6 0 100%
awscli/customizations/datapipeline/createdefaultroles.py 72 11 85%
awscli/customizations/datapipeline/listrunsformatter.py 30 0 100%
awscli/customizations/datapipeline/translator.py 122 3 98%
awscli/customizations/devcommands.py 7 0 100%
awscli/customizations/dlm/__init__.py 0 0 100%
awscli/customizations/dlm/constants.py 9 0 100%
awscli/customizations/dlm/createdefaultrole.py 60 3 95%
awscli/customizations/dlm/dlm.py 5 0 100%
awscli/customizations/dlm/iam.py 24 0 100%
awscli/customizations/dynamodb/__init__.py 0 0 100%
awscli/customizations/dynamodb/ast.py 26 0 100%
awscli/customizations/dynamodb/ddb.py 14 0 100%
awscli/customizations/dynamodb/exceptions.py 42 0 100%
awscli/customizations/dynamodb/extractor.py 66 0 100%
awscli/customizations/dynamodb/formatter.py 23 0 100%
awscli/customizations/dynamodb/lexer.py 146 0 100%
awscli/customizations/dynamodb/paginatorfix.py 22 0 100%
awscli/customizations/dynamodb/params.py 16 0 100%
awscli/customizations/dynamodb/parser.py 213 0 100%
awscli/customizations/dynamodb/subcommands.py 178 0 100%
awscli/customizations/dynamodb/transform.py 37 0 100%
awscli/customizations/dynamodb/types.py 161 0 100%
awscli/customizations/ec2/__init__.py 0 0 100%
awscli/customizations/ec2/addcount.py 50 3 94%
awscli/customizations/ec2/bundleinstance.py 74 0 100%
awscli/customizations/ec2/decryptpassword.py 68 7 90%
awscli/customizations/ec2/paginate.py 27 0 100%
awscli/customizations/ec2/protocolarg.py 15 0 100%
awscli/customizations/ec2/runinstances.py 75 4 95%
awscli/customizations/ec2/secgroupsimplify.py 100 11 89%
awscli/customizations/ecr.py 20 0 100%
awscli/customizations/ecr_public.py 20 0 100%
awscli/customizations/ecs/__init__.py 8 0 100%
awscli/customizations/ecs/deploy.py 190 13 93%
awscli/customizations/ecs/exceptions.py 18 0 100%
awscli/customizations/ecs/executecommand.py 49 0 100%
awscli/customizations/ecs/filehelpers.py 41 1 98%
awscli/customizations/eks/__init__.py 7 0 100%
awscli/customizations/eks/exceptions.py 2 0 100%
awscli/customizations/eks/get_token.py 66 0 100%
awscli/customizations/eks/kubeconfig.py 100 5 95%
awscli/customizations/eks/ordered_yaml.py 15 0 100%
awscli/customizations/eks/update_kubeconfig.py 99 2 98%
awscli/customizations/emr/__init__.py 0 0 100%
awscli/customizations/emr/addinstancegroups.py 27 0 100%
awscli/customizations/emr/addsteps.py 16 0 100%
awscli/customizations/emr/addtags.py 10 1 90%
awscli/customizations/emr/applicationutils.py 68 4 94%
awscli/customizations/emr/argumentschema.py 18 0 100%
awscli/customizations/emr/command.py 49 1 98%
awscli/customizations/emr/config.py 64 3 95%
awscli/customizations/emr/configutils.py 35 5 86%
awscli/customizations/emr/constants.py 140 0 100%
awscli/customizations/emr/createcluster.py 240 4 98%
awscli/customizations/emr/createdefaultroles.py 154 10 94%
awscli/customizations/emr/describecluster.py 47 3 94%
awscli/customizations/emr/emr.py 35 0 100%
awscli/customizations/emr/emrfsutils.py 107 0 100%
awscli/customizations/emr/emrutils.py 144 14 90%
awscli/customizations/emr/exceptions.py 69 0 100%
awscli/customizations/emr/hbase.py 98 0 100%
awscli/customizations/emr/hbaseutils.py 7 0 100%
awscli/customizations/emr/helptext.py 52 0 100%
awscli/customizations/emr/installapplications.py 25 0 100%
awscli/customizations/emr/instancefleetsutils.py 29 0 100%
awscli/customizations/emr/instancegroupsutils.py 50 0 100%
awscli/customizations/emr/listclusters.py 45 4 91%
awscli/customizations/emr/modifyclusterattributes.py 24 0 100%
awscli/customizations/emr/ssh.py 85 57 33%
awscli/customizations/emr/sshutils.py 41 11 73%
awscli/customizations/emr/steputils.py 111 0 100%
awscli/customizations/emr/terminateclusters.py 11 0 100%
awscli/customizations/emrcontainers/__init__.py 5 0 100%
awscli/customizations/emrcontainers/base36.py 13 0 100%
awscli/customizations/emrcontainers/constants.py 3 0 100%
awscli/customizations/emrcontainers/eks.py 14 8 43%
awscli/customizations/emrcontainers/iam.py 9 2 78%
awscli/customizations/emrcontainers/update_role_trust_policy.py 74 2 97%
awscli/customizations/exceptions.py 2 0 100%
awscli/customizations/flatten.py 84 3 96%
awscli/customizations/gamelift/__init__.py 7 0 100%
awscli/customizations/gamelift/getlog.py 19 0 100%
awscli/customizations/gamelift/uploadbuild.py 73 7 90%
awscli/customizations/generatecliskeleton.py 111 2 98%
awscli/customizations/globalargs.py 65 0 100%
awscli/customizations/history/__init__.py 55 0 100%
awscli/customizations/history/commands.py 37 1 97%
awscli/customizations/history/constants.py 3 0 100%
awscli/customizations/history/db.py 152 13 91%
awscli/customizations/history/filters.py 14 0 100%
awscli/customizations/history/list.py 60 0 100%
awscli/customizations/history/show.py 167 3 98%
awscli/customizations/iamvirtmfa.py 34 0 100%
awscli/customizations/iot.py 9 0 100%
awscli/customizations/iot_data.py 7 0 100%
awscli/customizations/kms.py 4 0 100%
awscli/customizations/lightsail/__init__.py 5 0 100%
awscli/customizations/lightsail/helptext.py 3 0 100%
awscli/customizations/lightsail/push_container_image.py 62 9 85%
awscli/customizations/logs/__init__.py 5 0 100%
awscli/customizations/logs/tail.py 148 2 99%
awscli/customizations/opsworks.py 238 5 98%
awscli/customizations/opsworkscm.py 5 0 100%
awscli/customizations/paginate.py 147 3 98%
awscli/customizations/putmetricdata.py 63 0 100%
awscli/customizations/rds.py 37 0 100%
awscli/customizations/rekognition.py 45 1 98%
awscli/customizations/removals.py 25 2 92%
awscli/customizations/route53.py 5 0 100%
awscli/customizations/s3/__init__.py 0 0 100%
awscli/customizations/s3/comparator.py 64 1 98%
awscli/customizations/s3/constants.py 2 0 100%
awscli/customizations/s3/factory.py 79 0 100%
awscli/customizations/s3/fileformat.py 32 0 100%
awscli/customizations/s3/filegenerator.py 185 2 99%
awscli/customizations/s3/fileinfo.py 33 0 100%
awscli/customizations/s3/fileinfobuilder.py 32 0 100%
awscli/customizations/s3/filters.py 72 1 99%
awscli/customizations/s3/results.py 290 4 99%
awscli/customizations/s3/s3.py 20 0 100%
awscli/customizations/s3/s3handler.py 262 6 98%
awscli/customizations/s3/subcommands.py 506 14 97%
awscli/customizations/s3/subscribers.py 204 3 99%
awscli/customizations/s3/syncstrategy/__init__.py 0 0 100%
awscli/customizations/s3/syncstrategy/base.py 81 0 100%
awscli/customizations/s3/syncstrategy/delete.py 10 0 100%
awscli/customizations/s3/syncstrategy/exacttimestamps.py 14 0 100%
awscli/customizations/s3/syncstrategy/register.py 10 0 100%
awscli/customizations/s3/syncstrategy/sizeonly.py 12 0 100%
awscli/customizations/s3/transferconfig.py 70 1 99%
awscli/customizations/s3/utils.py 303 3 99%
awscli/customizations/s3errormsg.py 26 0 100%
awscli/customizations/s3events.py 39 2 95%
awscli/customizations/s3uploader.py 103 5 95%
awscli/customizations/servicecatalog/__init__.py 5 0 100%
awscli/customizations/servicecatalog/exceptions.py 9 0 100%
awscli/customizations/servicecatalog/generate.py 11 0 100%
awscli/customizations/servicecatalog/generatebase.py 22 0 100%
awscli/customizations/servicecatalog/generateproduct.py 37 0 100%
awscli/customizations/servicecatalog/generateprovisioningartifact.py 21 0 100%
awscli/customizations/servicecatalog/helptext.py 17 0 100%
awscli/customizations/servicecatalog/utils.py 11 0 100%
awscli/customizations/sessendemail.py 49 0 100%
awscli/customizations/sessionmanager.py 34 0 100%
awscli/customizations/sso/__init__.py 19 0 100%
awscli/customizations/sso/login.py 28 0 100%
awscli/customizations/sso/logout.py 56 1 98%
awscli/customizations/sso/utils.py 42 2 95%
awscli/customizations/streamingoutputarg.py 58 1 98%
awscli/customizations/timestampformat.py 23 0 100%
awscli/customizations/toplevelbool.py 56 0 100%
awscli/customizations/translate.py 30 2 93%
awscli/customizations/utils.py 127 0 100%
awscli/customizations/waiters.py 119 3 97%
awscli/customizations/wizard/__init__.py 0 0 100%
awscli/customizations/wizard/app.py 229 3 99%
awscli/customizations/wizard/commands.py 73 9 88%
awscli/customizations/wizard/core.py 348 6 98%
awscli/customizations/wizard/devcommands.py 35 6 83%
awscli/customizations/wizard/exceptions.py 18 0 100%
awscli/customizations/wizard/factory.py 23 0 100%
awscli/customizations/wizard/loader.py 29 10 66%
awscli/customizations/wizard/ui/__init__.py 38 11 71%
awscli/customizations/wizard/ui/keybindings.py 75 5 93%
awscli/customizations/wizard/ui/layout.py 184 0 100%
awscli/customizations/wizard/ui/prompt.py 114 0 100%
awscli/customizations/wizard/ui/section.py 43 0 100%
awscli/customizations/wizard/ui/selectmenu.py 142 42 70%
awscli/customizations/wizard/ui/style.py 8 0 100%
awscli/customizations/wizard/ui/utils.py 32 0 100%
awscli/errorhandler.py 90 1 99%
awscli/formatter.py 212 8 96%
awscli/handlers.py 151 0 100%
awscli/help.py 199 7 96%
awscli/logger.py 26 0 100%
awscli/paramfile.py 41 0 100%
awscli/plugin.py 37 0 100%
awscli/schema.py 73 0 100%
awscli/shorthand.py 266 1 99%
awscli/table.py 264 13 95%
awscli/text.py 68 0 100%
awscli/topictags.py 102 0 100%
awscli/utils.py 295 18 94%
-------------------------------------------------------------------------------------------
TOTAL 21204 1080 95%
----------------------------------------------------------------------
Ran 28260 tests in 348.479s
FAILED (SKIP=3, failures=4)
Traceback (most recent call last):
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/scripts/ci/run-tests", line 19, in <module>
run('nosetests --with-coverage --cover-erase --cover-package awscli '
File "/private/var/folders/1s/gpt7p1x559sb7qjb_4bhq7zc75yv8y/T/nix-build-awscli2-2.2.30.drv-0/source/scripts/ci/run-tests", line 16, in run
return check_call(command, shell=True)
File "/nix/store/amn854jw94m1cph654w91pfyvz5r5a6h-python3-3.9.6/lib/python3.9/subprocess.py", line 373, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command 'nosetests --with-coverage --cover-erase --cover-package awscli --traverse-namespace --with-xunit --cover-xml unit/ functional/' returned non-zero exit status 1.
builder for '/nix/store/jnzww6kqxrcbaxnbia720422ivicjjkw-awscli2-2.2.30.drv' failed with exit code 1
error: build of '/nix/store/jnzww6kqxrcbaxnbia720422ivicjjkw-awscli2-2.2.30.drv' failed
Notify maintainers
@bhipple @davegallant @pawbur
Metadata
- system: `"x86_64-darwin"`
- host os: `Darwin 20.4.0, macOS 10.16`
- multi-user?: `no`
- sandbox: `no`
- version: `nix-env (Nix) 2.3.6`
- channels(abutler): `"home-manager, nixpkgs-21.11pre312229.08ef0f28e3a"`
- nixpkgs: `/Users/abutler/.nix-defexpr/channels/nixpkgs`
Maintainer information:
# a list of nixpkgs attributes affected by the problem
attribute:
- awscli2
# a list of nixos modules affected by the problem
module:
I don't have Darwin setup locally to test but I've used github actions with macos runner and all tests seem to pass:
https://github.com/pawbur/nixpkgs-awscli2/runs/3475414472?check_suite_focus=true
I'm unable to repro this on a mac using what is currently in master.
Interestingly this error has been mentioned before.
Running all tests in test_sync_command.py passes, broadening that to all tests in functional/s3 repros the failure. Wondering now if it's some previous test not doing proper teardown.
Alright, got it passing on my machine with two tweaks:
Set num_threads to 1 (disable multithreading) in awscrt: https://github.com/awslabs/aws-crt-python/blob/df54d9529a2b645efaab865b02ee4c6b9faddd71/awscrt/io.py#L68
In awscli2 checkPhase:export TMPDIR="/tmp"
export HOME="$TMPDIR"
@austinbutler did you do 1 by patching the default value from None to 1?
awscli2 has been failing to build on nixpkgs-21.05-darwin as well.
Is this caused by the same issue as one in nixpkgs-unstable?
https://hydra.nixos.org/build/152940542
@austinbutler did you do 1 by patching the default value from None to 1?
Yes.
@vroad from home-manager switch, got awscli2 among installed packages. I'll try using different installation method.
We've been seeing this error as well.
Isn't this something that needs to be reported to upstream (awscli repo)? I don't know why tests are failing without patch though.
I would disable checkPhase with overlay until the problem get fixed in nixpkgs...
{
nixpkgs.overlays = [
(self: super: {
awscli2 = super.awscli2.overrideAttrs (oldAttrs: {
doCheck = false;
});
})
];
}
This is the full output of nix-env -iA nixos.awscli2 on an older version of the unstable channel: https://gist.github.com/cptMikky/fbea4287747057f4c10a1c9237d0a559
With the latest channel (nixos-21.11pre318500.51bcdc4cdaa) the build comes through successfully!
@vroad not sure if the issue is related to macOS version or not, but good to know it works for you on Catalina. For me on Big Sur (11.6) it doesn't build (tests don't pass).
The problematic tests were removed in https://github.com/NixOS/nixpkgs/pull/143689, so closing this.
|
gharchive/issue
| 2021-08-30T18:13:31 |
2025-04-01T04:55:25.617710
|
{
"authors": [
"austinbutler",
"chrisportela",
"cptMikky",
"davegallant",
"pawbur",
"shepting",
"vroad"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/136214",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
991450542
|
metasploit no longer builds on unstable
Describe the bug
Metasploit no longer builds when pulled from unstable branch.
Steps To Reproduce
Steps to reproduce the behavior:
nix run nixpkgs/nixos-unstable#metasploit
Additional context
The commit https://github.com/NixOS/nixpkgs/commit/ee79ba102299e06b0b3d2cde443c85282a6a8588 seems to be the point at which it stops building.
Example of failing build
This fails for me:
nix run nixpkgs/ee79ba102299e06b0b3d2cde443c85282a6a8588#metasploit
This runs as expected:
nix run nixpkgs/c0e1f01e435e69be409a98d92934a51495ceb2c4#metasploit
Notify maintainers
@makefu
Metadata
Please run nix-shell -p nix-info --run "nix-info -m" and paste the result.
$ nix-shell -p nix-info --run "nix-info -m"
- system: `"x86_64-linux"`
- host os: `Linux 5.10.61, NixOS, 21.05.20210902.6bfe71f (Okapi)`
- multi-user?: `yes`
- sandbox: `yes`
- version: `nix-env (Nix) 2.4pre20210802_47e96bb`
- channels(root): `""`
- nixpkgs: `/etc/nixpkgs`
Maintainer information:
# a list of nixpkgs attributes affected by the problem
attribute:
metasploit
# a list of nixos modules affected by the problem
module:
Looks like that nokogiri is causing trouble again.
Can confirm I am hitting this bug.
|
gharchive/issue
| 2021-09-08T19:17:47 |
2025-04-01T04:55:25.627571
|
{
"authors": [
"RaitoBezarius",
"buckley310",
"fabaff"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/137125",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1036089328
|
Use the correct JAVA_HOME value
We create a weird symlink ($out/lib/src.zip) in the jdk package. I guess that symlink is only needed if $JAVA_HOME is set to $pkgs.jdk rather than the correct $pkgs.jdk.home or $pkgs.jdk/lib/openjdk.
grep JAVA_HOME -r shows many JAVA_HOME variables in the nixpkgs repository are incorrectly set to $pkgs.jdk. Should we change these variables to $pkgs.jdk.home and delete $out/lib/src.zip from jdk package?
References:
What is correct location of src.zip file in JDK?
#95081 openjdk11: add src.zip for IDEs
#140257 openjdk17: init at 17.0.1+12
If https://github.com/NixOS/nixpkgs/issues/23557 was fixed, we could simply change all --set JAVA_HOMEs to --set JAVA_HOME "$JAVA_HOME".
|
gharchive/issue
| 2021-10-26T10:00:48 |
2025-04-01T04:55:25.631927
|
{
"authors": [
"pmeiyu",
"tomodachi94"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/142938",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1092140657
|
libvlc-3.0.16: fails to build on nixpkgs-unstable, affects KDE Plasma 5
Describe the bug
libvlc package fails to build. Breaks building elisa and subsequently Plasma 5 if services.xserver.desktopManager.plasma5 is enabled.
Steps To Reproduce
Steps to reproduce the behavior:
Checkout nixpkgs-unstable of nixpkgs
Run nix build .#libvlc
Encounter an error
Expected behavior
libvlc builds normally.
Additional context
Full build log:
https://gist.github.com/azahi/fcc77da55dae5384b2360ba49fbe93a1
Notify maintainers
@NixOS/qt-kde (Affects elisa and Plasma 5)
@AndersonTorres (Could be a libcaca issue)
Metadata
- system: `"x86_64-linux"`
- host os: `Linux 5.15.12, NixOS, 22.05 (Quokka)`
- multi-user?: `yes`
- sandbox: `yes`
- version: `nix-env (Nix) 2.5.1`
- channels(azahi): `""`
- nixpkgs: `/nix/store/rfv5vc72q69qb9qzp8qif35pq3a8nfbi-source`
This bisects to https://github.com/NixOS/nixpkgs/pull/153140
Upstream issue: https://code.videolan.org/videolan/vlc/-/issues/26389
Apply the not-yet-merged patch from upstream? I have no clue about the libcaca changes, but at least the patch looks like trivial renames:
https://code.videolan.org/videolan/vlc/-/merge_requests/889/diffs?commit_id=d35391caa03c046149e7fe2497f51bf59ed8551d
To me that sounds better than reverting the update (though my information is very limited):
(side note, the beta20 libcaca update fixes several security issues).
Yes. I will do this.
|
gharchive/issue
| 2022-01-03T00:40:31 |
2025-04-01T04:55:25.638088
|
{
"authors": [
"AndersonTorres",
"K900",
"azahi",
"r-burns",
"vcunat"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/153284",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1433780627
|
mesa fails to build on aarch64-darwin
Steps To Reproduce
Steps to reproduce the behavior:
build mesa
Build log
[1077/1078] Linking static target src/glx/libglx.a
[1078/1078] Linking target src/glx/libGL.1.dylib
buildPhase completed in 33 seconds
installing
install flags: install
[1/9] Generating src/git_sha1.h with a custom command
[1/2] Installing files.
Installing src/mapi/shared-glapi/libglapi.0.dylib to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/lib
Installing src/mapi/es1api/libGLESv1_CM.1.dylib to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/lib
Installing src/mapi/es2api/libGLESv2.2.dylib to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/lib
Installing src/gallium/targets/dri/libgallium_dri.so to /nix/store/7pmab9bri6pc4y5phkmfdqlwavmc01jx-mesa-22.2.2-drivers/lib/dri
Installing src/glx/libGL.1.dylib to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/lib
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/KHR/khrplatform.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/KHR/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GLES/egl.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GLES/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GLES/gl.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GLES/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GLES/glext.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GLES/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GLES/glplatform.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GLES/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GLES2/gl2.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GLES2/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GLES2/gl2ext.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GLES2/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GLES2/gl2platform.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GLES2/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GLES3/gl3.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GLES3/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GLES3/gl31.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GLES3/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GLES3/gl32.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GLES3/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GLES3/gl3ext.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GLES3/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GLES3/gl3platform.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GLES3/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GL/gl.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GL/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GL/glcorearb.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GL/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GL/glext.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GL/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GL/glx.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GL/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GL/glxext.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GL/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/include/GL/internal/dri_interface.h to /nix/store/1ds2sh20vns2zq2zljcgv6kycib4i0nh-mesa-22.2.2-dev/include/GL/internal/
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/src/util/00-mesa-defaults.conf to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/share/drirc.d
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/build/meson-private/glesv1_cm.pc to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/lib/pkgconfig
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/build/meson-private/glesv2.pc to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/lib/pkgconfig
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/build/meson-private/dri.pc to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/lib/pkgconfig
Installing /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/build/meson-private/gl.pc to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/lib/pkgconfig
Installing symlink pointing to libglapi.0.dylib to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/lib/libglapi.dylib
Installing symlink pointing to libGLESv1_CM.1.dylib to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/lib/libGLESv1_CM.dylib
Installing symlink pointing to libGLESv2.2.dylib to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/lib/libGLESv2.dylib
Installing symlink pointing to libGL.1.dylib to /nix/store/xf9hi5h9ynjjpnrmdbijnhg153zr3fnh-mesa-22.2.2/lib/libGL.dylib
Running custom install script '/nix/store/14sv2h3nag638062j87lg3ic4z8ipgis-python3-3.10.8/bin/python3.10 /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/bin/install_megadrivers.py /private/tmp/nix-build-mesa-22.2.2.drv-0/mesa-22.2.2/build/src/gallium/targets/dri/libgallium_dri.so /nix/store/7pmab9bri6pc4y5phkmfdqlwavmc01jx-mesa-22.2.2-drivers/lib/dri swrast_dri.so'
mv: missing file operand
Try 'mv --help' for more information.
Additional context
#196310
Notify maintainers
@primeos @vcunat
Metadata
Please run nix-shell -p nix-info --run "nix-info -m" and paste the result.
[user@system:~]$ nix-shell -p nix-info --run "nix-info -m"
- system: `"aarch64-darwin"`
- host os: `Darwin 22.1.0, macOS 13.0`
- multi-user?: `yes`
- sandbox: `no`
- version: `nix-env (Nix) 2.11.0`
- channels(user): `"darwin, home-manager, nixpkgs, nur-packages"`
- channels(root): `"nixpkgs"`
- nixpkgs: `/Users/user/.nix-defexpr/channels/nixpkgs`
Sorry about that :(
Is there a way I can test changes for aarch64-darwin without a darwin device to avoid this in future?
It looks like pkgsCross.aarch64-darwin is broken.
$ nix-build '<nixpkgs>' -A pkgsCross.aarch64-darwin.mesa
error: infinite recursion encountered
at /nix/store/rn8y2gw3n33mawaxqw8j0zlfcd63wyv8-source/pkgs/os-specific/darwin/apple-sdk-11.0/libSystem.nix:32:12:
31| for dir in $includeDirs; do
32| from=${MacOSX-SDK}/usr/include/$dir
| ^
33| if [ -e "$from" ];
|
gharchive/issue
| 2022-11-02T20:58:27 |
2025-04-01T04:55:25.642633
|
{
"authors": [
"LunNova",
"wegank"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/199220",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1550290432
|
platformio depends on <= starlette 0.21.0, but attempts to build with Nixpkgs's 0.23.0
Steps To Reproduce
Steps to reproduce the behavior:
build platformio
Build log
Executing pipInstallPhase
/build/source/dist /build/source
Processing ./platformio-6.1.5-py3-none-any.whl
Requirement already satisfied: ajsonrpc==1.* in /nix/store/9p9ws2gx11wqc5z0zvifswnx17na52mc-python3.10-ajsonrpc-1.2.0/lib/python3.10/site-packages (from platformio==6.1.5) (1.2.0)
Requirement already satisfied: marshmallow==3.* in /nix/store/61snn19046kbh7ammdjxlhsbajjr316k-python3.10-marshmallow-3.16.0/lib/python3.10/site-packages (from platformio==6.1.5) (3.16.0)
Requirement already satisfied: bottle==0.12.* in /nix/store/n6rz9z3z2ky6pzxj6s043l55yymkvzd4-python3.10-bottle-0.12.23/lib/python3.10/site-packages (from platformio==6.1.5) (0.12.23)
Requirement already satisfied: pyserial==3.5.* in /nix/store/jxzz20a7i2byxh0zqfk0vhh3cx8yafcz-python3.10-pyserial-3.5/lib/python3.10/site-packages (from platformio==6.1.5) (3.5)
Requirement already satisfied: click<9,>=8.0.4 in /nix/store/whih1qwwfq8a4zyzx2kdnpjvwdr9b83k-python3.10-click-8.1.3/lib/python3.10/site-packages (from platformio==6.1.5) (8.1.3)
Requirement already satisfied: semantic-version==2.10.* in /nix/store/c0rzd0dim0i5j4g6jpa5hjhajacy5g2m-python3.10-semantic-version-2.10.0/lib/python3.10/site-packages (from platformio==6.1.5) (2.10.0)
ERROR: Could not find a version that satisfies the requirement starlette<=0.21,>=0.19.1 (from platformio) (from versions: none)
ERROR: No matching distribution found for starlette<=0.21,>=0.19.1
error: builder for '/nix/store/gfbrpq67jyw8gfz5288rs3f12w7v0dx3-platformio-6.1.5.drv' failed with exit code 1
error: 1 dependencies of derivation '/nix/store/dqzgjy56m0kbda2zf7rqbb6v537gdxyx-platformio-usr-target.drv' failed to build
error: 1 dependencies of derivation '/nix/store/jzmwgkna6daw1czdzxfkb0hk3dp4kjg0-platformio-fhs.drv' failed to build
error: 1 dependencies of derivation '/nix/store/3n8l3q1p3bhryfbqw0651dw4rpj7n6i6-platformio-init.drv' failed to build
error: 1 dependencies of derivation '/nix/store/cjfsdl2ywkhzsg82clr6p95rim6rcd51-platformio.drv' failed to build
Additional context
The platformio develop branch supports Starlette 0.23.0.
Not much changed between 0.21.0 and 0.23.0 either. The latest version may just work with 0.23.0 if setup.py is patched.
On another note:
This issue could be worked around immediately by overriding Starlette with an older version, but it's not possible to override the platformio derivation used in the FHS from core.nix. It'd be great if there was a way to modify the derivation used in the FHS.
Notify maintainers
@mogorman
Metadata
[user@system:~]$ nix-shell -p nix-info --run "nix-info -m"
- system: `"x86_64-linux"`
- host os: `Linux 5.15.86, NixOS, 23.05 (Stoat), 23.05pre443927.6dccdc45851`
- multi-user?: `yes`
- sandbox: `yes`
- version: `nix-env (Nix) 2.12.0`
- channels(root): `"home-manager, nixos"`
- nixpkgs: `/nix/var/nix/profiles/per-user/root/channels/nixos`
Here's my workaround to get it to build again:
diff --git a/pkgs/development/embedded/platformio/core.nix b/pkgs/development/embedded/platformio/core.nix
index a9b6e156b87..1d5cd60022f 100644
--- a/pkgs/development/embedded/platformio/core.nix
+++ b/pkgs/development/embedded/platformio/core.nix
@@ -42,7 +42,18 @@ with python3.pkgs; buildPythonApplication rec {
requests
semantic-version
spdx-license-list-data.json
- starlette
+ (starlette.overrideAttrs
+ (old: rec {
+ version = "0.21.0";
+ src = fetchPypi {
+ pname = "starlette";
+ inherit version;
+ hash = "sha256-sbUjBe6PfPxIzeODSW98EauJfNcRKzPZmLExfcjvkCc=";
+ };
+ postPatch = "";
+ doCheck = false;
+ doInstallCheck = false;
+ }))
tabulate
uvicorn
wsproto
Here's my workaround to get it to build again:
diff --git a/pkgs/development/embedded/platformio/core.nix b/pkgs/development/embedded/platformio/core.nix
index a9b6e156b87..1d5cd60022f 100644
--- a/pkgs/development/embedded/platformio/core.nix
+++ b/pkgs/development/embedded/platformio/core.nix
@@ -42,7 +42,18 @@ with python3.pkgs; buildPythonApplication rec {
requests
semantic-version
spdx-license-list-data.json
- starlette
+ (starlette.overrideAttrs
+ (old: rec {
+ version = "0.21.0";
+ src = fetchPypi {
+ pname = "starlette";
+ inherit version;
+ hash = "sha256-sbUjBe6PfPxIzeODSW98EauJfNcRKzPZmLExfcjvkCc=";
+ };
+ postPatch = "";
+ doCheck = false;
+ doInstallCheck = false;
+ }))
tabulate
uvicorn
wsproto
The original derivation actually fetches sources from GitHub instead of PyPI.
I built it like this, and didn't need to disable any tests - not sure if that's related?
starlette.overrideAttrs ({ pname, ... }: rec {
version = "0.21.0";
src = fetchFromGitHub {
owner = "encode";
repo = pname;
rev = version;
hash = "sha256-wZtlKCD7eE4sCKfhFgWXywACAes8uo4HXkicJAMcgqk=";
};
})
The original derivation actually fetches sources from GitHub instead of PyPI.
I built it like this, and didn’t need to disable any tests - not sure if that’s related?
Often the tests are not available in the distribution bundle from pypi, so that makes sense. Yours is better!
Do you want to prep a PR?
solved by 62b9dc3abb57084d9c50806c34bbee8f098fad17
|
gharchive/issue
| 2023-01-20T04:30:08 |
2025-04-01T04:55:25.650452
|
{
"authors": [
"gador",
"hacker1024",
"peterhoeg"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/211707",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1600167263
|
nix shell nixpkgs#cabal-install doesn't provide autocompletion for cabal
Describe the bug
Autocomplete doesn't work when in a nix shell.
nix shell nixpkgs#cabal-install doesn't provide auto completion for cabal
Steps To Reproduce
nix shell nixpkgs#cabal-install
cabal in<TAB>
cabal index.html
index.html is a random file whose name matches that of the cabal's command prefix.
Expected behavior
cabal in<TAB>
info init install
cabal-install does ship completions:
$ nix-build -A cabal-install
$ cat result/share/bash-completion/completions/cabal
...
@cdepillabout. You're right, it's not a cabal-specific issue. Please, consider removing the 6.topic-haskell label.
@deemp Label removed, thanks for the reminder.
Also, I'm not super familiar with the interaction between completions and nix shell or nix-shell, but it is possible that it makes more sense to post about this on the Nix issue tracker. Maybe at least you should take a look there to see if anyone has posted something similar.
Thanks for a suggestion! Seems like https://github.com/NixOS/nix/issues/4453 addresses this issue.
|
gharchive/issue
| 2023-02-26T19:12:36 |
2025-04-01T04:55:25.655428
|
{
"authors": [
"cdepillabout",
"deemp"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/218489",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1776081666
|
Trying to make use of lib.systems.architectures.features
I have looked into lib/systems/architectures.nix and found that the predicates at the bottom of the file are used here.
I have a Ryzen 7 4750u and desire to enable all the available features that GCC can use and/or compile with.
When import nixpkgs, I tried setting localSystem to:
{
system = "x86_64-linux";
gcc.arch = "znver2";
}
This results in the following error:
error: a 'x86_64-linux' with features {gccarch-znver2} is required to build '/nix/store/zy4h2yj3ssv8q582lzl613w64zgi5z3m-bootstrap-stage0-glibc-bootstrapFiles.drv', but I am a 'x86_64-linux' with features {benchmark, big-parallel, kvm, nixos-test}
What is the intended usage of these platform feature flags? I could set them individually, but when there's already machinery in place to handle this, well...
You need to set system feature for the nix daemon. So it does not know that it is able to build znver2 things in your case.
That can be archived by setting something like
nix.settings.system-features = ["gccarch-znver2" "benchmark" "big-parallel" "kvm" "nixos-test"];
Not sure if you need to set everything after gccarch-znver2, possibly that is already set by the system.
After that change is enabled you should be able to bootstrap the system.
You have to set system-features for Nix for localSystem to work correctly, the error message says exactly that. E.g. in configuration.nix:
nix.extraOptions = ''
system-features = system-features = nixos-test benchmark big-parallel kvm gccarch-znver2
'';
However, it's not guaranteed that an actual -march=znver2 will be used, stdenv.hostSystem.* functions have to be explicitly used in a derivation. An alternative might be to wrap stdenv with wrapCFlags and specify desired ones. See also wiki.
But next time please use https://discourse.nixos.org for support questions.
|
gharchive/issue
| 2023-06-27T04:44:07 |
2025-04-01T04:55:25.660922
|
{
"authors": [
"Shawn8901",
"spikespaz",
"yl3dy"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/240045",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2034493628
|
NixOS: networking/firewall.nix: pingLimit does not validate syntax
https://github.com/NixOS/nixpkgs/blob/610a958b03fb660c282148b2a6e15d2f5e20b47a/nixos/modules/services/networking/firewall.nix#L148
Attempting to use pingLimit with nftables syntax but without nftables.enable results in an error on startup.
Suggest adding a validation check that captures the information here
Pinging @duament and @azahi, who have both done some work on the module "recently" (read: in the last two years).
|
gharchive/issue
| 2023-12-10T19:02:24 |
2025-04-01T04:55:25.662909
|
{
"authors": [
"hughobrien",
"tomodachi94"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/273395",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
243532854
|
Update to exiv2 broke gexiv2
Issue description
In c2e9f45df2387c4b809793c77639ec209b53efb9 @fpletz updated the exiv2 library without updating the gexiv2 library, which leads to build failures
Steps to reproduce
Try to build gexiv2 and you'll get failures like:
GExiv2 will be built with prefix /nix/store/sjgyvjs5kfy6kbkya9sklcqwklfygq0h-gexiv2-0.10.4 for x86_64-pc-linux-gnu (cross-compiling: no).
Options:
Introspection: no
Python2 binding: no (introspection disabled)
Python3 binding: no (introspection disabled)
Tests and utils: no
[q[pbuilding
make flags: SHELL=/nix/store/1vcp949ka9qnyp6dfv4s9pgjda57vk4x-bash-4.4-p12/bin/bash
CXX gexiv2/libgexiv2_la-gexiv2-metadata.lo
In file included from gexiv2/gexiv2-metadata.cpp:13:0:
gexiv2/gexiv2-stream-io.h:42:15: error: conflicting return type specified for 'virtual long int StreamIo::size() const'
virtual long size () const;
^
In file included from /nix/store/znbg3069yfwr48n9yr8ak0s5dbml4gvg-exiv2-0.26-dev/include/exiv2/image.hpp:31:0,
from gexiv2/gexiv2-metadata-private.h:14,
from gexiv2/gexiv2-metadata.cpp:12:
/nix/store/znbg3069yfwr48n9yr8ak0s5dbml4gvg-exiv2-0.26-dev/include/exiv2/basicio.hpp:225:24: error: overriding 'virtual size_t Exiv2::BasicIo::size() const'
virtual size_t size() const = 0;
^
make: *** [Makefile:703: gexiv2/libgexiv2_la-gexiv2-metadata.lo] Error 1
Fixed in 46ead28a58
|
gharchive/issue
| 2017-07-17T21:26:44 |
2025-04-01T04:55:25.664948
|
{
"authors": [
"globin",
"mdorman"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/27457",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2140217231
|
programs.steam: Maintainers wanted
I'm currently the single maintainer for the steam module and as such usually the only person pinged.
I'd like to ask the community to step up and help, since my time and experience in this area of nixpkgs is quite limited
Comment here if you wanted to be added. A steam team will be created later.
Sure, I can help.
cc @samueldr @k900 @zhaofengli from Jovian
I can probably help.
I use Steam frequently, have touched the Steam module before and somewhat maintain buildFHSEnv, I can help out.
@hrdinka @abbradar @tadfisher @jagajaga @jonringer you are currently listed as a maintainer for steam/steam-runtime/steamcmd. would it be ok to add you to the steam team and then set maintainers for all steam packages to teams.steam?
(And do you actually still maintain Steam?)
I haven't really touched it in a while, I might just remove myself ig.
I'll help out, still use it regularly
I've merged the PR now, the package maintainers were left untouched, only the module was updated. Feel free to use the team in packages aswell.
done in https://github.com/NixOS/nixpkgs/pull/292817
|
gharchive/issue
| 2024-02-17T15:56:34 |
2025-04-01T04:55:25.669442
|
{
"authors": [
"Atemu",
"K900",
"appsforartists",
"eclairevoyant",
"jonringer",
"mkg20001",
"pbsds"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/289561",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
275163603
|
syncthing for multiple users
config.services.syncthing allows configuring only one syncthing service. However, multiple users should be configured as separate processes according to syncthing documentation: https://docs.syncthing.net/users/faq.html#how-do-i-configure-multiple-users-on-a-single-machine
It would be nice if config.services.syncthing would be converted to a list of syncthing definitions, or whatever is the best way to support multiple syncthing instances.
I can try to contribute the required changes, but I'd like to hear opinions on what to actually do.
cc @peterhoeg @rnhmjoj
services.syncthing configures a system-wide service, with a dedicated user and all the related options iff config.services.systemService is true. You can still run any number of syncthing services on any users by setting services.syncthing = true and then running systemctl --user start synthing.
@rnhmjoj Oh, wow! :+1: That seems to work, although based on the nix file I don't understand how. So, I guess this can be closed.
although based on the nix file I don't understand how
You are correct, the syncthing module doesn't create the user service anymore. Thanks to @peterhoeg NixOS is directly using the unit file provided upstream as other distros do.
@jluttine, you can do this to activate the user service for all users:
systemd.user.services.syncthing.wantedBy = [ "default.target" ];
Shouldn't this follow the emacs multi-user service example in the manual?
In other words:
{
services.syncthing.enable = false; # Do not start the service system-wide...
services.emacs.install = true; # ...but never-the-less, make it available to individual users
}
The way services are handled (at least so far) is very much up to the individual maintainers which is far from ideal and we absolutely should standardize both the names for the various options as well as how we handle them. This is something I have wanted to do for a long time but never got around to. I really don't know if the emacs way is the best way forward or something else entirely but it would be worth at least starting the conversation. That should however, belong in a separate issue.
If there isn't one, an RFC certainly seems to be warranted.
(Though, given that there's not much difference technically, IMO the least surprising behavior for new services would be to follow whats in the manual as a de facto standard in the mean time. If nothing else it makes it easier to refactor everything uniformly to follow a new standard.)
If there isn't one, an RFC certainly seems to be warranted.
Absolutely.
IMO the least surprising behavior for new services would be to follow whats in the manual as a de facto standard in the mean time
Fully agree. Ping me in a PR? ;-)
I looked into this, but after some quick hacking I was surprised to notice that the emacs doesn't actually do exactly what I was expecting:
config = mkIf (cfg.enable || cfg.install) {.
systemd.user.services.emacs = {
....
} // optionalAttrs cfg.enable { wantedBy = [ "default.target" ]; };
Specifically it uses systemd.user.services for both scenarios. This doesn't sound right for syncthing: I want to be able to deploy it to the cloud for "non-interactive" use. I may need to retract my initial reaction.
services.syncthing configures a system-wide service, with a dedicated user and all the related options iff config.services.systemService is true. You can still run any number of syncthing services on any users by setting services.syncthing = true and then running systemctl --user start synthing.
How can I accomplish that declaratively via configuration.nix?
I want to run a syncthing service for a handful of particular users, but not for all of them. Furthermore, I'd like those services to start at boot-time, i.e. not just when the users log in.
Is that possible with the current code?
There is no option to control user services declaratively afaik. You can enable a service for a certain user by symlinking the syncthing unit file like this:
ln -s /run/current-system/etc/systemd/user/syncthing.service $XDG_CONFIG_HOME/systemd/user/default.target.wants
this should make the default.target depend on syncthing so it will be started on login. I'm not sure about starting at boot, maybe with loginctl enable-linger.
I ended up duplicating the code from the main syncthing module in a function
mkJob = user: {
"syncthing-${user}" = {
description = "Syncthing service for user ${user}";
after = [ "network.target" ];
environment = { STNOUPGRADE = "yes"; };
wantedBy = [ "multi-user.target" ];
serviceConfig = {
Restart = "on-failure";
SuccessExitStatus = "2 3 4";
RestartForceExitStatus="3 4";
User = user;
Group = "users";
PermissionsStartOnly = true;
ExecStart = "${config.services.syncthing.package}/bin/syncthing -no-restart -no-browser -home=/var/lib/syncthing/${user}";
};
};
};
than can define services per user, like so:
systemd.services = mkJob "foo" // mkJob "bar";
It's not pretty, but it works fine. Now, what's missing is a way to configure the listen addresses for the actual sync service declaratively. I ended up editing lots of config.xml files ...
Furthermore, I'd like those services to start at boot-time, i.e. not just when the users log in.
This is possible by enabling "lingering", e.g. loginctl enable-linger $USER.
|
gharchive/issue
| 2017-11-19T14:36:40 |
2025-04-01T04:55:25.682021
|
{
"authors": [
"hlovdal",
"jluttine",
"joachifm",
"peterhoeg",
"peti",
"rehno-lindeque",
"rnhmjoj"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/31826",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2602733920
|
Update request: pstoedit 3.78 -> 4.01
Package name: pstoedit
Latest released version: 4.01
Current version on the unstable channel: 3.78
Current version on the stable/release channel: 3.78
[x] Checked the nixpkgs pull requests
Notify maintainers
@MarcWeber
Note for maintainers: Please tag this issue in your PR.
Add a :+1: reaction to issues you find important.
ping @Artturin, due to last to commit
maintainer does not seem to be active
|
gharchive/issue
| 2024-10-21T14:28:33 |
2025-04-01T04:55:25.686130
|
{
"authors": [
"zspher"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/350253",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2603524812
|
Package request: hyprpanel
Project description
ags-based bar for hyprland
Metadata
homepage URL: https://github.com/Jas-SinghFSU/HyprPanel
source URL: https://github.com/Jas-SinghFSU/HyprPanel.git
license: mit
platforms: linux
Add a :+1: reaction to issues you find important.
Hey!
HyprPanel provide a flake and a package themselves: https://hyprpanel.com/getting_started/installation.html#nixos-home-manager.
I've opened an issue to see if they want to eventually upstream this into Nixpkgs, if they do, then there's not much point doing it now. Otherwise, it'd make sense, but we can probably collaborate with them!
Hey I have some error installing hyprpanel via flake. This is so annoying for me. I am extremely love the hyprpanel. But nix flake gave me headache installing hyprpanel. So plz add hyprpanel to official nixpkgs. I am new to nixos and I really love nixos so plz
after the package has been added, it would be really nice to have a module to configure hyprpanel the nix way.
@mairs8 I mean, the flake already has that. The flake has a home manager module that allows you to configure it.
|
gharchive/issue
| 2024-10-21T19:52:56 |
2025-04-01T04:55:25.691091
|
{
"authors": [
"Sk7Str1p3",
"Voxi0",
"felixdorn",
"mairs8",
"maotseantonio"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/350324",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2715975096
|
ZapZap shows incorrect system time in messages
Describe the bug
Zapzap from the unstable repo will show incorrect system time in messages. This most often occurs if the application has been left running for long periods of time without quitting. Generally, for at least a day or two.
Steps To Reproduce
Steps to reproduce the behavior:
Launch zapzap unstable
Engage in a conversation
Leave the application open for a few days and when you return it should show wrong times on the next message you send.
Expected behavior
The time should always be synced with the system time.
Additional context
I use zapzap from unstable repo.
Notify maintainers
@hatch01
Could you please try this workaround to see if it fix the issue : https://github.com/NixOS/nixpkgs/issues/238025#issuecomment-1601270140
|
gharchive/issue
| 2024-12-03T21:05:14 |
2025-04-01T04:55:25.694506
|
{
"authors": [
"LinuxMason",
"hatch01"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/361558",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
360781351
|
Minor documentation nitpick: Python development mode
Issue description
The documentation for Python development mode says:
If we create a shell.nix file which calls buildPythonPackage, and if src is a local source, and if the local source has a setup.py, then development mode is activated.
This sounds like you need a shell.nix file and you need to use buildPythonPackage. But is that really true? I have a project that only has a default.nix and uses buildPythonApplication and it still seems to call setup.py develop.
Right, the name of the Nix file is not important – you can use any name and then run nix-shell yourfile.nix. I would guess the important thing is that you ran the shell (that is $IN_NIX_SHELL environment variable is set) but I do not see any relevant mentions of develop in nixpkgs.
buildPythonApplication does basically the same thing as buildPythonPackage so it makes sense that they work similarly:
https://github.com/NixOS/nixpkgs/blob/f86e309a9415049d6b0e4ad67fcf16f80e8b087d/pkgs/top-level/python-packages.nix#L54-L67
Correct, any .nix file works, it's just that by convention we call it shell.nix and nix-shell also chooses shell.nix over default.nix.
Okay, thanks for the clarification guys!
|
gharchive/issue
| 2018-09-17T09:13:37 |
2025-04-01T04:55:25.698782
|
{
"authors": [
"FRidh",
"jtojnar",
"pmiddend"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/46775",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
57340980
|
failing test in coreutils
The test for dd/sparse.sh fails when building coreutils in 77f160e
building tests/dd/sparse.log
FAIL: tests/dd/sparse.sh
https://gist.github.com/vandenoever/816b177b0c4ba99c5477
I've tried finding the offending commit with git bisect, but this did not lead me to the offending commit.
I'm running NixOS 14.12 on btrfs with kernel 3.18.0.
aea1254f96b068d370cb0dbc16638e7cef8ba84c seems to be the first problematic commit. The preceding commit, c45372f038bc89c69390bdbc6a4b0bfdb63b1423 can install coreutils, but it might have been retrieved from a binary cache.
I'm certain I've seen this already, but I can't find what I did about it (probably just disabled checks temporarily). I guess it's a bug in the tests when running on some filesystems, as it was in other cases https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20140407/1223907.html.
It's failing on btrfs too. Disabling checks do the job.
A fix is in staging, only disabling the dd/sparse test instead of all.
|
gharchive/issue
| 2015-02-11T16:38:18 |
2025-04-01T04:55:25.702442
|
{
"authors": [
"dwe11er",
"vandenoever",
"vcunat"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/6306",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
69067841
|
Example in nixos-container docs is broken
In https://nixos.org/releases/nixos/14.12/nixos-14.12.374.61adf9e/manual/ch-containers.html, this example doesn't work (curl hangs).
$ nixos-container update foo --config 'services.httpd.enable = true; \
services.httpd.adminAddr = "foo@example.org";'
$ curl http://$(nixos-container show-ip foo)/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">…
It can be fixed by adding networking.firewall.enable = false; inside the container config.
It's probably better to add networking.firewall.allowedTCPPorts = [ 80 ];
Please submit a PR if this is still a problem
|
gharchive/issue
| 2015-04-17T05:43:25 |
2025-04-01T04:55:25.704732
|
{
"authors": [
"anderspapitto",
"copumpkin",
"joachifm"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/7421",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
555913227
|
RFP: Brother J890DW Printer Drivers
Project description
Printer drivers for the Brother J890DW Printer
Metadata
homepage URL: https://support.brother.com/g/b/downloadlist.aspx?c=eu_ot&lang=en&prod=mfcj890dw_eu_as&os=128
source URL: proprietary
license: unfree
platforms: linux
While IPP Everywhere works, having a generic script for all those different brother drivers (most aren't that different so a few simple checks could make it work I suppose) would really help with printer things in the nixOS world
|
gharchive/issue
| 2020-01-28T00:22:48 |
2025-04-01T04:55:25.707382
|
{
"authors": [
"mkg20001"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/78646",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
586592637
|
Package pantheon's mail client
Project description
The elementary mail client shares a history with geary, but is a different app, which fits the pantheon desktop.
Metadata
homepage URL: https://elementary.io/
source URL: https://github.com/elementary/mail
license: GPLv3
platforms: Linux
@worldofpeace I think you're coordinating pantheon efforts? I'd be happy to take a look at this.
See the last bullet of https://github.com/NixOS/nixpkgs/issues/58161
Not stale, still waiting for them to ship-it :shipit:
@worldofpeace it seems like your wait might be over, judging by dependency list in README.md?
@kisik21 I see this https://github.com/elementary/seeds/pull/41, so I will ask them in slack if they're shipping it. If so, I think I'll add it myself when they release odin, or anyone else is free to package it.
|
gharchive/issue
| 2020-03-23T23:53:03 |
2025-04-01T04:55:25.711885
|
{
"authors": [
"414owen",
"kisik21",
"worldofpeace"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/83252",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
600576434
|
Manual, 20.1. Synapse Homeserver: example is wrong
The example configuration suggests the setting
services.postgresql.initialScript = ''
CREATE ROLE "matrix-synapse" WITH LOGIN PASSWORD 'synapse';
CREATE DATABASE "matrix-synapse" WITH OWNER "matrix-synapse"
TEMPLATE template0
LC_COLLATE = "C"
LC_CTYPE = "C";
'';
This fails because services.postgresql.initialScript has to be of type null or path.
@ma27 (I think)
Thanks for pointing this out! Fixed on master and release-20.03 :)
|
gharchive/issue
| 2020-04-15T20:44:41 |
2025-04-01T04:55:25.713781
|
{
"authors": [
"Ma27",
"loewenheim",
"worldofpeace"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/85327",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
621683281
|
Vulnerability roundup 84: systemd-243.7: 1 advisory
search, files
[ ] CVE-2020-1712 CVSSv3=7.8 (nixos-19.09, nixos-20.03)
Scanned versions: nixos-19.09: 31dcaa5eb67; nixos-20.03: 82b5f87fcc7. May contain false positives.
Discussion happens in https://github.com/NixOS/nixpkgs/issues/90982, let's close here.
|
gharchive/issue
| 2020-05-20T11:24:51 |
2025-04-01T04:55:25.716060
|
{
"authors": [
"ckauhaus",
"flokli"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/88408",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
654176369
|
Setting CAP_SYS_NICE=eip on vrcompositor-launcher crashes SteamVR
Describe the bug
A clear and concise description of what the bug is.
SteamVR crashes when you set CAP_SYS_NICE=eip on vrcompositor-launcher.
To Reproduce
Steps to reproduce the behavior:
sudo setcap CAP_SYS_NICE=eip ~/.local/share/Steam/steamapps/common/SteamVR/bin/linux64/vrcompositor-launcher
steam-run strace ~/.local/share/Steam/steamapps/common/SteamVR/bin/linux64/vrcompositor-launcher
Expected behavior
A clear and concise description of what you expected to happen.
On an FHS distro it looks for libs in /lib32 /lib64 and the like. It should either do that or look under /steamrt/.
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.
See #71554
I booted up a Pop!_OS live env, installed SteamVR, set the CAP and straced vrcompositor-launcher.
It first started looking for libcap.so.2 in the SteamVR bin and then regular FHS paths like /usr/lib etc. where it found libcap under /lib/x86_64-linux-gnu/libcap.so.2.
On NixOS it only tries to look in a few FHS paths under ${pkgs.glibc} which is obviously nonsensical and fails.
Seems like this happends due to Nix-specific patches to dynamic linking because we're also doing something that makes vrcompositor-launcher try to preload from /etc/ld-nix.so.preload which, countrary to LD_PRELOAD, also actually works. I made use of this and modified buildFHSUserEnv to create a file in that location inside the chroot to preload libcap.so.2 and libstdc++.so.6 from the steamrt.
With these patches, SteamVR can be launched with CAP_SYS_NICE=eip set on vrcompositor-launcher.
https://github.com/Atemu/nixpkgs/tree/steamvr-lib-loading-fixes
This is obviously not a solution, only for troubleshooting. Could someone more knowledgeable about dynamic linking in Nix to have a look at this now that we know what our issue is?
While doing this I have also discovered that the chronic stuttering issue (1-3 purple spikes ever second or so) is greatly reduced or even completely eliminated (depending on the mood of SteamVR) when a preloaded ${pkgs.steamPackages.steam-runtime}/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0 replaces the libSDL from the SteamVR bin it'd normally try to load. This can also be achieved by replacing the lib with a symlink to the one in the steamrt.
I'd love to hear more reports on this so that we can take this information to Valve as I had the same issue on Pop!_OS.
Notify maintainers
@jagajaga @abbradar
Metadata
Please run nix-shell -p nix-info --run "nix-info -m" and paste the result.
system: "x86_64-linux"
host os: Linux 5.6.19, NixOS, 20.09pre233323.dc80d7bc4a2 (Nightingale)
multi-user?: yes
sandbox: yes
version: nix-env (Nix) 2.3.6
channels(root): "nixos-20.09pre233323.dc80d7bc4a2, nixpkgs-mozilla, nixos-stable-20.03.2310.fb6c3a6831c, nixos-unstable-20.09pre231796.22a81aa5fc1"
nixpkgs: /nix/var/nix/profiles/per-user/root/channels/nixos
Maintainer information:
# a list of nixpkgs attributes affected by the problem
attribute:
# a list of nixos modules affected by the problem
module:
FIxed by https://github.com/NixOS/nixpkgs/pull/55973
This was working for me in the past, but seems broken again currently.
Fri Jan 13 14:01:11 GMT 2023 - Error: setcap of vrcompositor-launcher failed.
nixos-unstable @ a518c77148585023ff56022f09c4b2c418a51ef5
Oh, there was a hidden background dialog with 'OK, proceed anyway' which did work, so maybe the error can be ignored.
|
gharchive/issue
| 2020-07-09T16:02:22 |
2025-04-01T04:55:25.727063
|
{
"authors": [
"Atemu",
"pwaller"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/issues/92798",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
740285979
|
bear: 3.0.1 -> 3.0.2
Automatic update generated by nixpkgs-update tools. This update was made based on information from https://github.com/rizsotto/bear/releases.
meta.description for bear is: "Tool that generates a compilation database for clang tooling"
meta.homepage for bear is: "https://github.com/rizsotto/Bear"
meta.changelog for bear is: ""
Updates performed
Version update
To inspect upstream changes
Release on GitHub
Compare changes on GitHub
Impact
Checks done (click to expand)
built on NixOS
The tests defined in passthru.tests, if any, passed
0 of 0 passed binary check by having a zero exit code.
0 of 0 passed binary check by having the new version present in output.
found 3.0.2 with grep in /nix/store/2qdwp8hbi8fmfnk1pa4pa832zp0afnl9-bear-3.0.2
directory tree listing: https://gist.github.com/e48800dc0525fbd20a24e3e28a235f87
du listing: https://gist.github.com/dd46083dd4a1af95d6f7acf258d3e0f2
Rebuild report (if merged into master) (click to expand)
4 total rebuild path(s)
1 package rebuild(s)
1 x86_64-linux rebuild(s)
1 i686-linux rebuild(s)
1 x86_64-darwin rebuild(s)
1 aarch64-linux rebuild(s)
First fifty rebuilds by attrpath
bear
Instructions to test this update (click to expand)
Either download from Cachix:
nix-store -r /nix/store/2qdwp8hbi8fmfnk1pa4pa832zp0afnl9-bear-3.0.2 \
--option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \
--option trusted-public-keys '
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
'
(The Cachix cache is only trusted for this store-path realization.)
For the Cachix download to work, your user must be in the trusted-users list or you can use sudo since root is effectively trusted.
Or, build yourself:
nix-build -A bear https://github.com/r-ryantm/nixpkgs/archive/376405314fd15eee5c9235549096cee3518ff364.tar.gz
After you've downloaded or built it, look at the files and if there are any, run the binaries:
ls -la /nix/store/2qdwp8hbi8fmfnk1pa4pa832zp0afnl9-bear-3.0.2
ls -la /nix/store/2qdwp8hbi8fmfnk1pa4pa832zp0afnl9-bear-3.0.2/bin
Pre-merge build results
We have automatically built all packages that will get rebuilt due to
this change.
This gives evidence on whether the upgrade will break dependent packages.
Note sometimes packages show up as failed to build independent of the
change, simply because they are already broken on the target branch.
Result of nixpkgs-review 1
1 package built:
bear
Maintainer pings
cc @babariviere for testing.
@GrahamcOfBorg eval
|
gharchive/pull-request
| 2020-11-10T22:22:33 |
2025-04-01T04:55:25.737629
|
{
"authors": [
"marsam",
"r-ryantm"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/103354",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
753030815
|
crow-translate: init at 2.6.2
Motivation for this change
Crow Translate is a simple and lightweight translator programmed in C++ / Qt that allows to translate and speak text using Google, Yandex and Bing translate API.
Things done
[ ] Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS linux)
Built on platform(s)
[x] NixOS
[ ] macOS
[ ] other Linux distributions
[ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
[ ] Tested compilation of all pkgs that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
[x] Tested execution of all binary files (usually in ./result/bin/)
[ ] Determined the impact on package closure size (by running nix path-info -S before and after)
[ ] Ensured that relevant documentation is up to date
[x] Fits CONTRIBUTING.md.
Result of nixpkgs-review pr 105402 run on x86_64-linux 1
1 package built:
crow-translate
This pull request has been mentioned on NixOS Discourse. There might be relevant details there:
https://discourse.nixos.org/t/prs-ready-for-review/3032/425
This pull request has been mentioned on NixOS Discourse. There might be relevant details there:
https://discourse.nixos.org/t/prs-ready-for-review/3032/425
This is a semi-automatic executed nixpkgs-review which does not build all packages (e.g. lumo, tensorflow or pytorch)
If you find some bugs or got suggestions for further things to search or run please reach out to SuperSandro2000 on IRC.
Result of nixpkgs-review pr 105402 run on x86_64-linux 1
1 package built:
crow-translate
This is a semi-automatic executed nixpkgs-review which does not build all packages (e.g. lumo, tensorflow or pytorch)
If you find some bugs or got suggestions for further things to search or run please reach out to SuperSandro2000 on IRC.
Result of nixpkgs-review pr 105402 run on x86_64-linux 1
1 package built:
crow-translate
|
gharchive/pull-request
| 2020-11-29T22:20:20 |
2025-04-01T04:55:25.747851
|
{
"authors": [
"SuperSandro2000",
"nixos-discourse",
"sikmir"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/105402",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
113535378
|
parse: init at 3.0.1
Parse's installation instructions point to a shell script which simply downloads the release from github, so this ends up being a very straightforward package.
/home/travis/build/NixOS/nixpkgs/pkgs/applications/editors/emacs-24/macport-24.5.nix:1:1 called without required argument ‘cf-private’, at
Is that failure related to this PR? I don't see how it could be.
Renamed parse to parse-cli-bin.
Also changed the version from 3.0.0 to 3.0.1.
|
gharchive/pull-request
| 2015-10-27T09:03:43 |
2025-04-01T04:55:25.750673
|
{
"authors": [
"chris-martin",
"domenkozar"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/10641",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
113994383
|
pinta: 1.4 -> 1.6
There three distinct changes:
Updated pinta to version 1.6. Note, that package now uses buildDotnetPackage instead of plain mkDerivation.
CC maintainer: @viric
In order to do 1., I needed:
2. Add dotnet package Mono.Addins (init at 1.2)
3. Add makeWrapperArgs argument to buildDotnetPackage (we have the same thing in buildPythonPackage and I think it should be often useful)
CC maintainer: @obadz
I stripped Version, Culture and PublicKeyToken attributes from <Reference Include="..." /> in Pinta's .csproj files, so that xbuild could find those libraries. I don't know if that was a correct way to resolve that issue but something very similar happens in this monodevelop patch: https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/dotnet-modules/patches/monodevelop-fsharpbinding.references.patch
I tested it locally just in case for both system="i686-linux" and system="x86_64-linux".
@demin-dmitriy, the dotnet change looks fine to me.
|
gharchive/pull-request
| 2015-10-29T07:18:32 |
2025-04-01T04:55:25.755265
|
{
"authors": [
"demin-dmitriy",
"obadz"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/10688",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
778458381
|
soldat-unstable: init at unstable-2020-11-26; gamenetworkingsockets: init at 1.2.0
Motivation for this change
Adds the open sourced development version of soldat, a 2d side
scrolling shooter. The soldat-unstable attribute name was chosen since
this is a development version of the unfinished soldat 1.8 version which
most notably has incompatible netcode to the windows-only soldat 1.7
version which you can download on steam for example, so naming this
soldat-unstable hopefully avoids confusion as to why it is not possible
to connect to soldat 1.7 servers.
We wrap the soldat and soldatserver executables to have fixed paths set
for fs_basepath (the game archive) and fs_userpath (configuration, state
files). The latter is set to $XDG_CONFIG_HOME/soldat/soldat{,server} by
default to stop the executables from polluting the working directory.
Both settings can be overriden however by giving the respective options
on the command line of the wrapper.
GameNetworkingSockets is a dependency of soldat.
Things done
[x] Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS linux)
Built on platform(s)
[x] NixOS
[ ] macOS
[ ] other Linux distributions
[ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
[ ] Tested compilation of all pkgs that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
[x] Tested execution of all binary files (usually in ./result/bin/)
[ ] Determined the impact on package closure size (by running nix path-info -S before and after)
[ ] Ensured that relevant documentation is up to date
[x] Fits CONTRIBUTING.md.
This is a semi-automatic executed nixpkgs-review which does not build all packages (e.g. lumo, tensorflow or pytorch)
If you find some bugs or got suggestions for further things to search or run please reach out to SuperSandro2000 on IRC.
Result of nixpkgs-review pr 108436 run on x86_64-linux 1
2 packages built:
gamenetworkingsockets
soldat-unstable
This is a semi-automatic executed nixpkgs-review which does not build all packages (e.g. lumo, tensorflow or pytorch)
If you find some bugs or got suggestions for further things to search or run please reach out to SuperSandro2000 on IRC.
Result of nixpkgs-review pr 108436 run on x86_64-linux 1
2 packages built:
gamenetworkingsockets
soldat-unstable
This is a semi-automatic executed nixpkgs-review which does not build all packages (e.g. lumo, tensorflow or pytorch)
If you find some bugs or got suggestions for further things to search or run please reach out to SuperSandro2000 on IRC.
Result of nixpkgs-review pr 108436 run on x86_64-darwin 1
1 package failed to build and are new build failure:
gamenetworkingsockets: log https://hastebin.com/raw/feqelinexe
gamenetworkingsockets: log https://hastebin.com/raw/feqelinexe
log not found
This is a semi-automatic executed nixpkgs-review which does not build all packages (e.g. lumo, tensorflow or pytorch)
If you find some bugs or got suggestions for further things to search or run please reach out to SuperSandro2000 on IRC.
Result of nixpkgs-review pr 108436 run on x86_64-linux 1
2 packages built:
gamenetworkingsockets
soldat-unstable
This is a semi-automatic executed nixpkgs-review which does not build all packages (e.g. lumo, tensorflow or pytorch)
If you find some bugs or got suggestions for further things to search or run please reach out to SuperSandro2000 on IRC.
Result of nixpkgs-review pr 108436 run on x86_64-linux 1
2 packages built:
gamenetworkingsockets
soldat-unstable
Shall we merge?
Shall we merge?
Fixing GameNetworkingSockets and soldat for darwin would be nice, but I can' really gauge what the problem is without a build log.
Fixing GameNetworkingSockets and soldat for darwin would be nice, but I can' really gauge what the problem is without a build log.
This is a semi-automatic executed nixpkgs-review which does not build all packages (e.g. lumo, tensorflow or pytorch)
If you find some bugs or got suggestions for further things to search or run please reach out to SuperSandro2000 on IRC.
Result of nixpkgs-review pr 108436 run on x86_64-darwin 1
1 package failed to build and are new build failure:
gamenetworkingsockets: log https://termbin.com/o8jc
This is a semi-automatic executed nixpkgs-review which does not build all packages (e.g. lumo, tensorflow or pytorch)
If you find some bugs or got suggestions for further things to search or run please reach out to SuperSandro2000 on IRC.
Result of nixpkgs-review pr 108436 run on x86_64-darwin 1
1 package failed to build and are new build failure:
gamenetworkingsockets: log https://termbin.com/o8jc
Okay, this is a genuine issue with GameNetworkingSockets, SOCK_NONBLOCK doesn't exist on darwin. I've marked it as broken for now and will try to get a patch into upstream and the come back to fix the package.
Okay, this is a genuine issue with GameNetworkingSockets, SOCK_NONBLOCK doesn't exist on darwin. I've marked it as broken for now and will try to get a patch into upstream and the come back to fix the package.
The build failure is already resolved on GameNetworkingSockets master, so it's just a matter of time to have it for darwin as well.
The build failure is already resolved on GameNetworkingSockets master, so it's just a matter of time to have it for darwin as well.
Result of nixpkgs-review pr 108436 run on x86_64-darwin 1
1 package marked as broken and skipped:
gamenetworkingsockets
Result of nixpkgs-review pr 108436 run on x86_64-darwin 1
1 package marked as broken and skipped:
gamenetworkingsockets
This is a semi-automatic executed nixpkgs-review which does not build all packages (e.g. lumo, tensorflow or pytorch)
If you find some bugs or got suggestions for further things to search or run please reach out to SuperSandro2000 on IRC.
Result of nixpkgs-review pr 108436 run on x86_64-linux 1
2 packages built:
gamenetworkingsockets
soldat-unstable
This is a semi-automatic executed nixpkgs-review which does not build all packages (e.g. lumo, tensorflow or pytorch)
If you find some bugs or got suggestions for further things to search or run please reach out to SuperSandro2000 on IRC.
Result of nixpkgs-review pr 108436 run on x86_64-linux 1
2 packages built:
gamenetworkingsockets
soldat-unstable
@SuperSandro2000 Automating review is nice and all, but please scroll through the backlog and tell me it’s not starting to get spammy.
e.g. your bot (‽) added the same comment as earlier, even though @sternenseemann already said that the nit is irrelevant.
We shouldn’t force stylistic nitpicks onto maintainers that know what they are doing.
@SuperSandro2000 Automating review is nice and all, but please scroll through the backlog and tell me it’s not starting to get spammy.
e.g. your bot (‽) added the same comment as earlier, even though @sternenseemann already said that the nit is irrelevant.
We shouldn’t force stylistic nitpicks onto maintainers that know what they are doing.
e.g. your bot (‽) added the same comment as earlier, even though @sternenseemann already said that the nit is irrelevant.
I am not a bot. I have several humans that can prove that I made out of flesh. Jokes aside.
I read through the diff and thought the second time that this is still not quite right.
Generally variables which contain commands use '' because they can easily be multiline even if they only contain one command. Additionally some extra escaping is required here because of that. I think that adds the false intention that $TMP maybe shouldn't be evaluated at that point and only at runtime. I try to not nit about older packages to much when they just change one line or do a simple version update but for new packages or packages with bigger changes we should focus on making them clean and use hooks and variables when available. Especially for new packages we should really think how to make them clean, short and simple to easily maintain them in the future, make updates easy and don't hinder treewide changes with unusual syntaxes or escapes.
We shouldn’t force stylistic nitpicks onto maintainers that know what they are doing.
We already enforce a pretty great list of stylistics and probably some of them are nitpicks but so far I don't think I have seen one that is literally useless.
e.g. your bot (‽) added the same comment as earlier, even though @sternenseemann already said that the nit is irrelevant.
I am not a bot. I have several humans that can prove that I made out of flesh. Jokes aside.
I read through the diff and thought the second time that this is still not quite right.
Generally variables which contain commands use '' because they can easily be multiline even if they only contain one command. Additionally some extra escaping is required here because of that. I think that adds the false intention that $TMP maybe shouldn't be evaluated at that point and only at runtime. I try to not nit about older packages to much when they just change one line or do a simple version update but for new packages or packages with bigger changes we should focus on making them clean and use hooks and variables when available. Especially for new packages we should really think how to make them clean, short and simple to easily maintain them in the future, make updates easy and don't hinder treewide changes with unusual syntaxes or escapes.
We shouldn’t force stylistic nitpicks onto maintainers that know what they are doing.
We already enforce a pretty great list of stylistics and probably some of them are nitpicks but so far I don't think I have seen one that is literally useless.
Cool, merging.
Cool, merging.
It makes a difference of one `\n in the string and I'd argue in this case it reduces noise and readability since a relatively unimportant compatibility fix is not occupying to much space.
Also I think I'll be fine maintaining this whereas endless rebasing is just plain annoying.
It makes a difference of one `\n in the string and I'd argue in this case it reduces noise and readability since a relatively unimportant compatibility fix is not occupying to much space.
Also I think I'll be fine maintaining this whereas endless rebasing is just plain annoying.
@Profpatsch If you wouldn't be the first person labeling my manual work as a bot I would be pretty offended by that.
@Profpatsch If you wouldn't be the first person labeling my manual work as a bot I would be pretty offended by that.
|
gharchive/pull-request
| 2021-01-04T23:55:17 |
2025-04-01T04:55:25.788212
|
{
"authors": [
"Profpatsch",
"SuperSandro2000",
"sternenseemann"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/108436",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
823573452
|
@electron-forge/cli: init at 6.0.0-beta.54
Motivation for this change
Adding @electron-forge/cli which is used to build electron applications into various distribution formats.
Things done
[x] Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS linux)
Built on platform(s)
[x] NixOS
[ ] macOS
[ ] other Linux distributions
[ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
[ ] Tested compilation of all pkgs that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
[x] Tested execution of all binary files (usually in ./result/bin/)
[ ] Determined the impact on package closure size (by running nix path-info -S before and after)
[ ] Ensured that relevant documentation is up to date
[x] Fits CONTRIBUTING.md.
Depends on this PR: https://github.com/NixOS/nixpkgs/pull/115174
»» ~/Projects/nixpkgs
♖ ./result/bin/electron-forge -h (electron-forge) pts/9 18:27:51
✔ Checking your system
Usage: electron-forge [options] [command]
Options:
-V, --version output the version number
--verbose Enables verbose mode
-h, --help output usage information
Commands:
init Initialize a new Electron application
import Attempts to navigate you through the process of
importing an existing project to "electron-forge"
lint Lints the current Electron application
package Package the current Electron application
make Generate distributables for the current Electron
application
start Start the current Electron application
publish Publish the current Electron application to GitHub
install Install an Electron application from GitHub
help [cmd] display help for [cmd]
Strange problem but the nixpkgs packaged ones seems to be creating files with read permission only. This is different from the npm installed one:
> nix-env -f ./default.nix -iA 'nodePackages.@electron-forge/cli'
> mkdir test/a
> cd test/a
> electron-forge init --template=typescript-webpack
✔ Checking your system
✔ Initializing Project Directory
✔ Initializing Git Repository
✔ Locating custom template: "typescript-webpack"
✔ Copying Starter Files
✔ Initializing NPM Module
✔ Setting up Forge configuration
✖ Setting up TypeScript configuration
An unhandled error has occurred inside Forge:
EACCES: permission denied, open '/test/a/src/index.html'
Error: EACCES: permission denied, open '/test/b/src/index.html'
The reason is that the files here are generated with only the read permission:
> ls -l /test/a/src
total 14K
-r--r--r-- 1 cmcdragonkai operators 162 Mar 6 18:30 index.css
-r--r--r-- 1 cmcdragonkai operators 253 Mar 6 18:30 index.html
-r--r--r-- 1 cmcdragonkai operators 1.5K Mar 6 18:30 index.js
When using the electron-forge from NPM, this doesn't occur.
The other usages of electron-forge does work, and I'm able to build and package electron apps with it.
The above error is strange, why would electron-forge end up creating files that are read-only? Is this due to being put inside the /nix/store?
Tested to be functional. Didn't test any other package changed by this commit. Currently there's also https://github.com/NixOS/nixpkgs/pull/114574 which changes files in node-packages.nix and it has merge conflicts already. @CMCDragonkai would you like to get past the read only permissions issue before merging?
No idea what is causing that read issue. But the other stuff is all working. Can build windows and Linux packages.
The above error is strange, why would electron-forge end up creating files that are read-only? Is this due to being put inside the /nix/store?
Does it copy files from the nix store?
@SuperSandro2000 oh maybe that is the reason... in that case, how can we fix this? Will it need a source code patch? Maybe an upstream fix that ensures that the generated files are read write.
Posted an upstream issue here: https://github.com/electron-userland/electron-forge/issues/2190
I think an upstream fix will eventually fix the whole problem and then there will be no problems using electron-forge in Nixpkgs.
Also in the future, I think electron-packager and electron-rebuild should also be packaged in Nixpkgs as well but so far it is not needed.
Furthermore the @electron-forge/maker-* dependencies don't need to be packaged in Nix yet, electron-forge here will make use of it by checking package.json in the devDependencies... but in the future these might be packaged in Nix as well, but we will need a more sophisticated electron ecosystem in nixpkgs to do this...
in that case, how can we fix this? Will it need a source code patch? Maybe an upstream fix that ensures that the generated files are read write.
A patch would probably be the easiest.
we will need a more sophisticated electron ecosystem in nixpkgs to do this...
yeah, someone needs to do that.
|
gharchive/pull-request
| 2021-03-06T05:55:44 |
2025-04-01T04:55:25.800873
|
{
"authors": [
"CMCDragonkai",
"SuperSandro2000",
"doronbehar"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/115230",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
936299778
|
detect-secrets: 0.14.3 -> 1.1.0
Motivation for this change
Update to latest upstream release 1.1.0
Change log: https://github.com/Yelp/detect-secrets/releases/tag/v1.1.0
Things done
[x] Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS linux)
Built on platform(s)
[x] NixOS
[ ] macOS
[ ] other Linux distributions
[ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
[ ] Tested compilation of all pkgs that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
[x] Tested execution of all binary files (usually in ./result/bin/)
21.11 Release Notes (or backporting 21.05 Relase notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Result of nixpkgs-review pr 129160 run on x86_64-linux 1
3 packages built:
detect-secrets
gibberish-detector (python38Packages.gibberish-detector)
python39Packages.gibberish-detector
Result of nixpkgs-review pr 129160 at 4a30247b run on x86_64-linux 1
3 packages built successfully:
detect-secrets
gibberish-detector (python38Packages.gibberish-detector)
python39Packages.gibberish-detector
2 suggestions:
warning: unused-argument
Unused argument: configparser.
Near pkgs/development/tools/detect-secrets/default.nix:3:3:
|
3 | , configparser
| ^
warning: unused-argument
Unused argument: future.
Near pkgs/development/tools/detect-secrets/default.nix:5:3:
|
5 | , future
| ^
@fabaff please remove the unused arguments.
@fabaff please remove the unused arguments.
Thanks, done.
|
gharchive/pull-request
| 2021-07-03T17:52:39 |
2025-04-01T04:55:25.811074
|
{
"authors": [
"SuperSandro2000",
"fabaff",
"r-rmcgibbo"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/129160",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
137976156
|
git-remote-hg: fix the derivation name
-v0.2 isn't parsed as a version by Nix, and makes it inconvenient to
install git-remote-hg through nix-env.
@nathan7 also rev could be used in version
but then maybe we should remove git-remote-hg in favor of git-cinnabar, which i'm about to package (if nobody does it before me)
I'm hoping we can keep it around, given that
Git-cinnabar is still in early infancy`
@joachifm Done.
|
gharchive/pull-request
| 2016-03-02T19:58:49 |
2025-04-01T04:55:25.813749
|
{
"authors": [
"garbas",
"nathan7"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/13623",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1039945618
|
python39Packages.influxdb-client: 1.21.0 -> 1.23.0
Automatic update generated by nixpkgs-update tools. This update was made based on information from passthru.updateScript.
meta.description for python39Packages.influxdb-client is: "InfluxDB 2.0 Python client library"
meta.homepage for python39Packages.influxdb-client is: "https://github.com/influxdata/influxdb-client-python"
meta.changelog for python39Packages.influxdb-client is: ""
Updates performed
Ran passthru.UpdateScript
To inspect upstream changes
Release on GitHub
Compare changes on GitHub
Impact
Checks done (click to expand)
built on NixOS
Warning: a test defined in passthru.tests did not pass
0 of 0 passed binary check by having a zero exit code.
0 of 0 passed binary check by having the new version present in output.
found 1.23.0 with grep in /nix/store/wkxjgf315j4z0cywlh48libh5jp391i6-python3.9-influxdb-client-1.23.0
found 1.23.0 in filename of file in /nix/store/wkxjgf315j4z0cywlh48libh5jp391i6-python3.9-influxdb-client-1.23.0
Rebuild report (if merged into master) (click to expand)
11 total rebuild path(s)
3 package rebuild(s)
3 x86_64-linux rebuild(s)
3 i686-linux rebuild(s)
2 x86_64-darwin rebuild(s)
3 aarch64-linux rebuild(s)
First fifty rebuilds by attrpath
home-assistant
python38Packages.influxdb-client
python39Packages.influxdb-client
Instructions to test this update (click to expand)
Either download from Cachix:
nix-store -r /nix/store/wkxjgf315j4z0cywlh48libh5jp391i6-python3.9-influxdb-client-1.23.0 \
--option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \
--option trusted-public-keys '
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
'
(The Cachix cache is only trusted for this store-path realization.)
For the Cachix download to work, your user must be in the trusted-users list or you can use sudo since root is effectively trusted.
Or, build yourself:
nix-build -A python39Packages.influxdb-client https://github.com/r-ryantm/nixpkgs/archive/2dac86f1405bc7f1b5bdf7dd7126d394132bb654.tar.gz
After you've downloaded or built it, look at the files and if there are any, run the binaries:
ls -la /nix/store/wkxjgf315j4z0cywlh48libh5jp391i6-python3.9-influxdb-client-1.23.0
ls -la /nix/store/wkxjgf315j4z0cywlh48libh5jp391i6-python3.9-influxdb-client-1.23.0/bin
Pre-merge build results
We have automatically built all packages that will get rebuilt due to
this change.
This gives evidence on whether the upgrade will break dependent packages.
Note sometimes packages show up as failed to build independent of the
change, simply because they are already broken on the target branch.
Result of nixpkgs-review run on x86_64-linux 1
1 package failed to build:
home-assistant
2 packages built:
python38Packages.influxdb-client
python39Packages.influxdb-client
Maintainer pings
cc @mic92 for testing.
This update seems to break all home-assistant tests for influxdb. cc @mweinelt
Judging the message this could be a regression in the client itself:
/nix/store/wkxjgf315j4z0cywlh48libh5jp391i6-python3.9-influxdb-client-1.23.0/lib/python3.9/site-packages/influxdb_client/rest.py:360: in __init__
super().__init__(response=http_resp)
__class__ = <class 'influxdb_client.rest.ApiException'>
http_resp = None
reason = None
self = ApiException()
status = None
/nix/store/wkxjgf315j4z0cywlh48libh5jp391i6-python3.9-influxdb-client-1.23.0/lib/python3.9/site-packages/influxdb_client/client/exceptions.py:16: in __init__
self.message = self._get_message(response)
__class__ = <class 'influxdb_client.client.exceptions.InfluxDBError'>
response = None
self = ApiException()
/nix/store/wkxjgf315j4z0cywlh48libh5jp391i6-python3.9-influxdb-client-1.23.0/lib/python3.9/site-packages/influxdb_client/client/exceptions.py:22: in _get_message
if response.data:
E AttributeError: 'NoneType' object has no attribute 'data'
response = None
self = ApiException()
Home Assistant pins 1.14.0. Guess we just need a pin on home-assistant.
|
gharchive/pull-request
| 2021-10-29T21:39:36 |
2025-04-01T04:55:25.825434
|
{
"authors": [
"Mic92",
"mweinelt",
"r-ryantm"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/143753",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1073725651
|
haskellPackages: update stackage and hackage
This Merge
This PR is the regular merge of the haskell-updates branch into master.
This branch is being continually built and tested by hydra at https://hydra.nixos.org/jobset/nixpkgs/haskell-updates. You may be able to find an up-to-date Hydra build report at cdepillabout/nix-haskell-updates-status.
We roughly aim to merge these haskell-updates PRs at least once every two weeks. See the @NixOS/haskell team calendar for who is currently in charge of this branch.
haskellPackages Workflow Summary
Our workflow is currently described in pkgs/development/haskell-modules/HACKING.md.
The short version is this:
We regularly update the Stackage and Hackage pins on haskell-updates (normally at the beginning of a merge window).
The community fixes builds of Haskell packages on that branch.
We aim at at least one merge of haskell-updates into master every two weeks.
We only do the merge if the mergeable job is succeeding on hydra.
If a maintained package is still broken at the time of merge, we will only merge if the maintainer has been pinged 7 days in advance. (If you care about a Haskell package, become a maintainer!)
This is the follow-up to #148359. Come to #haskell:nixos.org if you have any questions.
haskell-updates build report from hydra
evaluation 1729068 of nixpkgs commit cf33a63 as of 2021-12-08 14:39 UTC
:yellow_circle: Potential issues
maintained jobset is not finished.
Build summary
Platform
Failed :x:
DependencyFailed :heavy_exclamation_mark:
TimedOut :hourglass::no_entry_sign:
Unfinished :hourglass_flowing_sand:
Success :heavy_check_mark:
aarch64-linux :iphone:
23
16
1
5
7112
x86_64-darwin :apple:
54
26
2
5
7010
x86_64-linux :penguin:
3
4
7185
Maintained packages with failed dependency
[ ] cabal-install @peti
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] toplevel
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc8107
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc884
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc901
[:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc921
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages
[ ] cabal2nix @peti
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] toplevel
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc8107
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc884
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc901
[:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc921
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages
[ ] hsdns @peti
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc8107
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc884
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc901
[:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc921
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages
[ ] language-nix @peti
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc8107
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc884
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc901
[:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc921
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages
[ ] titlecase @peti
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc8107
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc884
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc901
[:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc921
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages
Unmaintained packages with build failure
73 job(s)
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.sdp :arrow_heading_up: 9 | 9
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.thyme :arrow_heading_up: 6 | 15
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.libBF :arrow_heading_up: 4 | 20
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.exinst :arrow_heading_up: 4 | 6
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.nri-observability :arrow_heading_up: 3 | 5
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.ptr-poker :arrow_heading_up: 3 | 4
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.long-double :arrow_heading_up: 2 | 2
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.OrderedBits :arrow_heading_up: 1 | 36
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.type-natural :arrow_heading_up: 1 | 4
[ ] [:iphone::x:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.easytensor :arrow_heading_up: 1 | 1
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.gi-gdkx11 :arrow_heading_up: 1 | 1
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.keep-alive :arrow_heading_up: 1 | 1
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.loc :arrow_heading_up: 1 | 1
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.nlopt-haskell :arrow_heading_up: 1 | 1
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.opencv :arrow_heading_up: 1 | 1
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.unicode-properties :arrow_heading_up: 1 | 1
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.accelerate-llvm :arrow_heading_up: 0 | 8
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.freetype2 :arrow_heading_up: 0 | 7
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.pipes-zlib :arrow_heading_up: 0 | 6
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.hmidi :arrow_heading_up: 0 | 4
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.zip :arrow_heading_up: 0 | 4
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.cdar-mBound :arrow_heading_up: 0 | 2
[ ] [:iphone::x:] [:apple::x:] [:penguin::x:] haskellPackages.headed-megaparsec :arrow_heading_up: 0 | 2
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.posix-socket :arrow_heading_up: 0 | 2
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.quic :arrow_heading_up: 0 | 2
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.hamid :arrow_heading_up: 0 | 1
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.hmatrix-morpheus :arrow_heading_up: 0 | 1
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.huckleberry :arrow_heading_up: 0 | 1
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.picosat :arrow_heading_up: 0 | 1
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.select :arrow_heading_up: 0 | 1
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.sysinfo :arrow_heading_up: 0 | 1
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.FractalArt
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.HsASA
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.chiphunk
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.discount
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.diskhash
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.epub-tools
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.float128
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.gerrit
[ ] [:iphone::x:] [:penguin::heavy_check_mark:] haskellPackages.gnome-keyring
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.gtk-traymanager
[ ] [:iphone::x:] [:apple::x:] [:penguin::x:] haskellPackages.has-transformers
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.hid
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.highlight
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.hinotify-conduit
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.hls-rename-plugin
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.hq
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.hs
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.hsshellscript
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.hssourceinfo
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.ipcvar
[ ] [:iphone::x:] [:apple::x:] [:penguin::x:] haskellPackages.koji-install
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.linux-framebuffer
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.mediawiki2latex
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.mercury-api
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.nano-cryptr
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.persistent-pagination
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.ping-wrapper
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.poker
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.posix-timer
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.procex
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.pthread
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.risc386
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.sandwich-webdriver
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.sfml-audio
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.shared-memory
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.tailfile-hinotify
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.wiringPi
[ ] [:iphone::x:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.x86-64bit
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.xmonad-utils
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.yoga
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.zot
[ ] [:iphone::heavy_check_mark:] [:apple::x:] [:penguin::heavy_check_mark:] haskellPackages.zxcvbn-c
Unmaintained packages with failed dependency
41 job(s)
[ ] [:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.jsonifier :arrow_heading_up: 2 | 2
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.sdp-io :arrow_heading_up: 2 | 2
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.nri-redis :arrow_heading_up: 1 | 1
[ ] [:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.opentelemetry-extra :arrow_heading_up: 1 | 1
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.orgmode-parse :arrow_heading_up: 1 | 1
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.sdp-hashable :arrow_heading_up: 1 | 1
[ ] [:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.PrimitiveArray :arrow_heading_up: 0 | 35
[ ] [:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.sized :arrow_heading_up: 0 | 2
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.keenser :arrow_heading_up: 0 | 1
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.antiope-es
[ ] cabal2nix-unstable
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc8107
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc884
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc901
[:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskell.packages.ghc921
[:iphone::heavy_check_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages
[ ] [:iphone::heavy_exclamation_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.easytensor-vulkan
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.exinst-aeson
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.exinst-bytes
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.exinst-cereal
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.exinst-serialise
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.fastparser
[ ] [:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.hmatrix-nlopt
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.nri-http
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.nri-test-encoding
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.opencv-extra
[ ] [:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.opentelemetry-lightstep
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.orgstat
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.postgresql-replicant
[ ] [:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.rounded
[ ] [:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.rounded-hw
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.scan-metadata
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.sdp-binary
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.sdp-deepseq
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.sdp-quickcheck
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.sdp4bytestring
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.sdp4text
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.sdp4unordered
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.sdp4vector
[ ] [:iphone::heavy_exclamation_mark:] [:apple::heavy_check_mark:] [:penguin::heavy_check_mark:] haskellPackages.unicode-names
[ ] [:iphone::heavy_check_mark:] [:apple::heavy_exclamation_mark:] [:penguin::heavy_check_mark:] haskellPackages.xbattbar
Top 50 broken packages, sorted by number of reverse dependencies
50 job(s)
haskell98 :arrow_heading_up: 153
enumerator :arrow_heading_up: 56
derive :arrow_heading_up: 48
contiguous :arrow_heading_up: 46
MonadCatchIO-transformers :arrow_heading_up: 41
parseargs :arrow_heading_up: 41
bytesmith :arrow_heading_up: 36
data-lens :arrow_heading_up: 33
distributed-process :arrow_heading_up: 30
iteratee :arrow_heading_up: 29
jmacro :arrow_heading_up: 29
ip :arrow_heading_up: 26
either-unwrap :arrow_heading_up: 25
HList :arrow_heading_up: 23
SciBaseTypes :arrow_heading_up: 22
haskelldb :arrow_heading_up: 22
hsc3 :arrow_heading_up: 22
wxdirect :arrow_heading_up: 22
BiobaseTypes :arrow_heading_up: 21
wxc :arrow_heading_up: 21
biocore :arrow_heading_up: 20
polysemy-plugin :arrow_heading_up: 20
secp256k1-haskell :arrow_heading_up: 20
wxcore :arrow_heading_up: 20
attoparsec-enumerator :arrow_heading_up: 19
bytestring-show :arrow_heading_up: 19
numhask :arrow_heading_up: 19
wx :arrow_heading_up: 19
BiobaseENA :arrow_heading_up: 18
asn1-data :arrow_heading_up: 18
dbus-core :arrow_heading_up: 18
gtksourceview2 :arrow_heading_up: 18
BiobaseXNA :arrow_heading_up: 17
HGamer3D-Data :arrow_heading_up: 17
certificate :arrow_heading_up: 17
dbus-client :arrow_heading_up: 17
gconf :arrow_heading_up: 17
gtk-serialized-event :arrow_heading_up: 17
uuid-orphans :arrow_heading_up: 17
cuda :arrow_heading_up: 16
happstack-jmacro :arrow_heading_up: 16
manatee-core :arrow_heading_up: 16
monads-fd :arrow_heading_up: 16
murmur3 :arrow_heading_up: 16
tls-extra :arrow_heading_up: 16
ADPfusion :arrow_heading_up: 15
MaybeT :arrow_heading_up: 15
blaze-builder-enumerator :arrow_heading_up: 15
clash-prelude :arrow_heading_up: 15
hetero-dict :arrow_heading_up: 15
:arrow_heading_up:: The number of packages that depend (directly or indirectly) on this package (if any). If two numbers are shown the first (lower) number considers only packages which currently have enabled hydra jobs, i.e. are not marked broken. The second (higher) number considers all packages.
Report generated with maintainers/scripts/haskell/hydra-report.hs
|
gharchive/pull-request
| 2021-12-07T20:21:02 |
2025-04-01T04:55:26.054714
|
{
"authors": [
"maralorn",
"sternenseemann"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/149446",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1075542170
|
modemmanager: 1.18.2 -> 1.18.4
Automatic update generated by nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/modemmanager/versions.
meta.description for modemmanager is: "WWAN modem manager, part of NetworkManager"
meta.homepage for modemmanager is: "https://www.freedesktop.org/wiki/Software/ModemManager/"
meta.changelog for modemmanager is: ""
Updates performed
Version update
To inspect upstream changes
Impact
Checks done (click to expand)
built on NixOS
The tests defined in passthru.tests, if any, passed
/nix/store/46fi3jv4i1qnbmdn2xgxrpb7nl2halhl-modemmanager-1.18.4/bin/mmcli passed the binary check.
/nix/store/46fi3jv4i1qnbmdn2xgxrpb7nl2halhl-modemmanager-1.18.4/bin/ModemManager passed the binary check.
2 of 2 passed binary check by having a zero exit code.
2 of 2 passed binary check by having the new version present in output.
found 1.18.4 with grep in /nix/store/46fi3jv4i1qnbmdn2xgxrpb7nl2halhl-modemmanager-1.18.4
found 1.18.4 in filename of file in /nix/store/46fi3jv4i1qnbmdn2xgxrpb7nl2halhl-modemmanager-1.18.4
Rebuild report (if merged into master) (click to expand)
633 total rebuild path(s)
620 package rebuild(s)
620 x86_64-linux rebuild(s)
13 x86_64-darwin rebuild(s)
First fifty rebuilds by attrpath
ChowKick
CuboCore.coretoppings
adapta-gtk-theme
alfis
almanah
apostrophe
appgate-sdp
arc-theme
arx-libertatis
asciidoc-full
asciidoc-full-with-plugins
astroid
autosuspend
aws-workspaces
ayu-theme-gtk
balsa
bespokesynth
birdfont
blueman
bolt
bookworm
btrbk
bubblemail
calligra
calls
capitaine-cursors
cawbird
chatty
chrome-gnome-shell
cinnamon.cinnamon-common
cinnamon.cinnamon-control-center
cinnamon.cinnamon-gsettings-overrides
cinnamon.cinnamon-screensaver
cinnamon.iso-flags-png-320x420
cinnamon.iso-flags-svg
cinnamon.pix
cinnamon.xreader
citrix_workspace
citrix_workspace_20_04_0
citrix_workspace_20_06_0
citrix_workspace_20_09_0
citrix_workspace_20_10_0
citrix_workspace_20_12_0
citrix_workspace_21_01_0
citrix_workspace_21_03_0
citrix_workspace_21_06_0
citrix_workspace_21_08_0
citrix_workspace_21_09_0
claws-mail
clevis
Instructions to test this update (click to expand)
Either download from Cachix:
nix-store -r /nix/store/46fi3jv4i1qnbmdn2xgxrpb7nl2halhl-modemmanager-1.18.4 \
--option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \
--option trusted-public-keys '
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
'
(The Cachix cache is only trusted for this store-path realization.)
For the Cachix download to work, your user must be in the trusted-users list or you can use sudo since root is effectively trusted.
Or, build yourself:
nix-build -A modemmanager https://github.com/r-ryantm/nixpkgs/archive/0922e25d58e0e2bbc7dbc6de11181b5c8a629fb4.tar.gz
After you've downloaded or built it, look at the files and if there are any, run the binaries:
ls -la /nix/store/46fi3jv4i1qnbmdn2xgxrpb7nl2halhl-modemmanager-1.18.4
ls -la /nix/store/46fi3jv4i1qnbmdn2xgxrpb7nl2halhl-modemmanager-1.18.4/bin
Pre-merge build results
NixPkgs review skipped
Maintainer pings
cc @jtojnar for testing.
https://github.com/NixOS/nixpkgs/pull/155414
|
gharchive/pull-request
| 2021-12-09T12:55:46 |
2025-04-01T04:55:26.064544
|
{
"authors": [
"jwygoda",
"r-ryantm"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/149846",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
152934927
|
ati-drivers: use makeLibraryPath instead of concatStringsSep
Things done
[x] Tested using sandboxing
(nix.useSandbox on NixOS,
or option build-use-sandbox in nix.conf
on non-NixOS)
Built on platform(s)
[x] NixOS
[ ] OS X
[ ] Linux
[x] Tested compilation of all pkgs that depend on this change using nix-shell -p nox --run "nox-review wip"
[ ] Tested execution of all binary files (usually in ./result/bin/)
[x] Fits CONTRIBUTING.md.
cc @vcunat
That's not a nice way to use makeLibraryPath. I'd suggest something like below, though it would still be better if someone checked running with the result before we merge it.
let # to fix highlighting
LD_LIBRARY_PATH = with xorg; stdenv.lib.makeLibraryPath
[ libXrandr libXrender libXext libX11 libXinerama libSM libICE stdenv.cc.cc ];
Well the patch itself is fine, I'm running it now. I can cherry pick the better version after I've tried it out if you like.
Probably best fix this properly. Note that extraDRIlibs is also broken, but it's possible it's not needed (anymore).
It seems we still need extraDRIlibs, I at least got most applications going by this small change. It still isn't good since GLX doesn't seem supported on my card anymore, I'll try to do some more digging.
Upgrading the driver didn't help my case so there is likely some problem with the builder as the card should be supported.
Fixed in 046ee5ac3ffbc7e5daa706bd3ad405bd30c7aad5
|
gharchive/pull-request
| 2016-05-04T05:49:42 |
2025-04-01T04:55:26.070881
|
{
"authors": [
"edwtjo",
"vcunat"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/15207",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1088677029
|
maintainers/scripts/remove-old-aliases.py: script to remove aliases older than $date
Motivation for this change
Things done
Built on platform(s)
[ ] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
22.05 Release Notes (or backporting 21.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] (Release notes changes) Ran nixos/doc/manual/md-to-db.sh to update generated release notes
[x] Fits CONTRIBUTING.md.
...but why perl?
...but why perl?
is perl not a good language for this? i've just recently started using perl so i chose to write this in it.
i'll write this in python too as a learning experience
wrote it in python,
here is the perl script for anyone curious
#!/usr/bin/env nix-shell
#!nix-shell -i perl -p perl perlPackages.ListMoreUtils perlPackages.RegexpCommontime
use strict;
use warnings;
use English;
use Cwd qw(abs_path);
use Carp qw(croak);
use Regexp::Common qw(time);
use List::MoreUtils qw(any);
use File::Copy qw(move);
use experimental 'switch';
use 5.034;
our $VERSION = 1; # PerlCritic wanted this
my $aliasfilename;
my $cutoffdate;
my $dryrun;
for (my $n = 0; $n < scalar @ARGV; $n++) {
my $arg = $ARGV[$n];
given ($arg) {
when ( $_ eq "--year") {
$n++;
$cutoffdate = $ARGV[$n];
croak "--year’ requires an argument" unless defined $cutoffdate;
};
when ( $_ eq "--file") {
$n++;
$aliasfilename = abs_path($ARGV[$n]);
croak "--file’ requires an argument" unless defined $aliasfilename;
};
when ( $_ eq "--dry-run") {
$dryrun = 1;
};
default { croak "usage ex: --year 2020 --file aliases.nix | optional --dry-run"; }
};
};
croak "no filename" if not defined $aliasfilename;
croak "no year" if not defined $cutoffdate;
my @dateline;
my @onlyrow;
my @separateline;
my @sorted0;
my @sorted1;
sub getdatelines {
open my $fh, '<:', $aliasfilename
or croak "Could not open file $aliasfilename $ERRNO";
while (my $row = <$fh>) {
chomp $row;
if ( $row =~ /=.+$RE{time}{ymd}/sm ) {
my @dates = $row =~ /$RE{time}{ymd}{-keep}/smx;
my $date = "$dates[0]";
if ($date lt $cutoffdate) {
push @dateline, "$date | $INPUT_LINE_NUMBER | $row";
push @onlyrow, $row;
};
};
# dates that are not on the same line as the assignment
if ( $row =~ /^(?:(?!=).)*$RE{time}{ymd}/smx ) {
my @dates = $row =~ /$RE{time}{ymd}{-keep}/smx;
my $date = "$dates[0]";
if ($date lt $cutoffdate) {
push @separateline, "$date | $INPUT_LINE_NUMBER | $row";
};
};
};
close $fh or croak "Could not close $aliasfilename $ERRNO";
push @sorted0, sort @dateline;
push @sorted1, sort @separateline;
foreach (@sorted0) {
say;
};
if (@sorted1) {
say "========== on separate line, remove or fix manually ==========";
foreach (@sorted1) {
say;
};
};
return;
};
getdatelines();
sub writefile {
open my $fh, '<:', $aliasfilename
or croak "Could not open file $aliasfilename $ERRNO";
open my $writefh, '>:', "$aliasfilename.raliases"
or croak "Could not open file $aliasfilename.raliases $ERRNO";
while (my $row = <$fh>) {
chomp $row;
my $quoted = quotemeta "$row";
# filter the dates older than $cutoffdate out
if (!any { /^$quoted/sm } @onlyrow) {
say {$writefh} $row;
} elsif ($row =~ /^\s*$/sm) {
# ^ if row is just a newline. for some reason the say above does not print those.
say {$writefh} "$row";
};
};
close $fh or croak "Could not close $aliasfilename $ERRNO";
close $writefh or croak "Could not close $aliasfilename.raliases $ERRNO";
move("$aliasfilename.raliases", $aliasfilename) or croak "Move operation failed $ERRNO";
return;
};
writefile() unless $dryrun;
Cool. python seems like a much better choice to me. I think we allow python for scripts like this 👍
should we convert them to throws first?
...but why perl?
is perl not a good language for this? i've just recently started using perl so i chose to write this in it.
Sorry @Artturin I unfortunately missed this PR eariler, so a bit late to the party. I've added some comments on the initial script below.
@aanderse Imho: Perl and Python are both equally good languages for this kind of task. I don't think we should dissuade contributions in a mature systems language unless there are specific reasons for it.
...
### croak() and friends are mostly useful when writing modules, as errors will be
### in the context of the caller. https://perldoc.perl.org/Carp
###
use Carp qw(croak);
...
### Low-severity perlcritic can be a bit too picky, imho. A $VERSION is
### certainly needed in a vendored module, but imho not really useful in scripts.
###
our $VERSION = 1; # PerlCritic wanted this
...
### Consider using using Getopt::Long (or something more modern like Applify) to
### automatically handle input arguments. The latter also automatically
### usage doc based on expected input arguments.
###
for (my $n = 0; $n < scalar @ARGV; $n++) {
my $arg = $ARGV[$n];
...
sub getdatelines {
open my $fh, '<:', $aliasfilename
or croak "Could not open file $aliasfilename $ERRNO";
### chomp() can be used in the while condition directly, but something like
###
### use File::Slurp;
### my (@rows) = read_file($aliasfilename);
###
### .. is perhaps easier to read, and handles exceptions automatically.
### Mojo::File is also a nice module to use when dealing with most file
### operations.
###
while (my $row = <$fh>) {
chomp $row;
if ( $row =~ /=.+$RE{time}{ymd}/sm ) {
### You can assign $date directly in the my by setting it up in list
### context like this:
###
### my ($date) = $row =~ m/=.($RE{time}{ymd}{-keep})/smx;
###
my @dates = $row =~ /$RE{time}{ymd}{-keep}/smx;
unless there are specific reasons for it.
To the best of my knowledge there are approximately 4 people active in our community that are comfortable writing perl.
If I had to make a wild guess I would exaggerate to make a joke and illustrate a point at the same time: I would guess there are maybe 4 people in our community who are not willing to write python.
It isn't that there is something intrinsically wrong with perl, but purely from a demographics point of view our community is not overly willing or able to maintain perl code. Look at many PRs showing people's hesitancy to modify any of ourperl scripts or hack on hydra
I understand you're very capable with perl and I greatly appreciate that about you. I have had to be responsible for many programs written in perl. Thanks to you and the perl contributors in this community I was able to confidently port these applications to NixOS which greatly improved my life. I don't mean to trash talk what you do... I just try to make a relevant point to maximize supportability within our community.
As always thanks for being so great @stigtsp ❤️
now the script first converts old aliases to throws and adds a comment "Converted to throw $date"
- bridge_utils = bridge-utils; # Added 2015-02-20
+ bridge_utils = throw "'bridge_utils' has been renamed to/replaced by 'bridge-utils'"; # Converted to throw 2022-02-20
once a throw has a date older than the cutoff date , the throw line will be removed.
i still have to add some checks and clean the script a bit and then its ready
alright, ready.
In general I am in favor of doing this, but I'm really uncomfortable with the idea of stream editing Nix code like this, especially if we later want to run this automatically without human attendance.
Therefore, I'd like to evaluate the possibility of migrating our aliases to a machine-readable format (JSON, YAML, TOML, whatever) so that our script can safely run there.
ready, and added a syntax check with nix-instantiate --eval
In general I am in favor of doing this, but I'm really uncomfortable with the idea of stream editing Nix code like this, especially if we later want to run this automatically without human attendance.
Therefore, I'd like to evaluate the possibility of migrating our aliases to a machine-readable format (JSON, YAML, TOML, whatever) so that our script can safely run
i'd prefer a json file imported with importJSON
{
"letsencrypt": {
"points-to": "certbot",
"added": "2016-05-14",
"expiry": "2018-01-01",
"throw": false,
}
}
however if we had to do throw logic withing evaluation then the nixpkgs eval would become slower right?
https://github.com/NixOS/nixpkgs/pull/161146
It is sad that we restrain ourselves from implementing solutions we deem better because of fear of performance regressions (this is not the first time I see this). Obviously the "correct" way would be to implement both and then measure the performance impact to determine if it is worth it. Of course, this is not a practical approach because it requires more than double the amount of work. :(
|
gharchive/pull-request
| 2021-12-26T00:45:14 |
2025-04-01T04:55:26.090532
|
{
"authors": [
"Artturin",
"aanderse",
"piegamesde",
"stigtsp"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/152162",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1143843742
|
metasploit: 6.1.29 -> 6.1.30
Motivation for this change
Update to latest upstream release 6.1.30
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
22.05 Release Notes (or backporting 21.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] (Release notes changes) Ran nixos/doc/manual/md-to-db.sh to update generated release notes
[x] Fits CONTRIBUTING.md.
Result of nixpkgs-review pr 160781 run on x86_64-linux 1
1 package built:
metasploit
|
gharchive/pull-request
| 2022-02-18T22:07:27 |
2025-04-01T04:55:26.099918
|
{
"authors": [
"fabaff"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/160781",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1172063961
|
python3Packages.intellifire4py: 1.0.1 -> 1.0.2
Description of changes
https://github.com/jeeftor/intellifire4py/blob/master/CHANGELOG
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
22.05 Release Notes (or backporting 21.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] (Release notes changes) Ran nixos/doc/manual/md-to-db.sh to update generated release notes
[x] Fits CONTRIBUTING.md.
Result of nixpkgs-review pr 164546 run on x86_64-linux 1
3 packages built:
home-assistant-component-tests.intellifire
python310Packages.intellifire4py
python39Packages.intellifire4py
|
gharchive/pull-request
| 2022-03-17T08:17:23 |
2025-04-01T04:55:26.108938
|
{
"authors": [
"fabaff"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/164546",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1174345394
|
prometheus-apcupsd-exporter: 0.2.0 -> 0.3.0
Signed-off-by: Matt Layher mdlayher@gmail.com
Description of changes
New release of apcupsd_exporter. Adds new metrics regarding UPS temperature and status, and fixes timestamp bugs.
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[x] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
22.05 Release Notes (or backporting 21.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] (Release notes changes) Ran nixos/doc/manual/md-to-db.sh to update generated release notes
[x] Fits CONTRIBUTING.md.
Builds and runs:
16:04 $ ./result/bin/apcupsd_exporter -h
Usage of ./result/bin/apcupsd_exporter:
-apcupsd.addr string
address of apcupsd Network Information Server (NIS) (default ":3551")
-apcupsd.network string
network of apcupsd Network Information Server (NIS): typically "tcp", "tcp4", or "tcp6" (default "tcp")
-telemetry.addr string
address for apcupsd exporter (default ":9162")
-telemetry.path string
URL path for surfacing collected metrics (default "/metrics")
/cc @Ma27 @WilliButz
/marvin opt-in
/marvin status needs_reviewer
@GrahamcOfBorg test prometheus-exporters.apcupsd
/status needs_reviewer
@GrahamcOfBorg test prometheus-exporters.apcupsd
|
gharchive/pull-request
| 2022-03-19T20:07:11 |
2025-04-01T04:55:26.119221
|
{
"authors": [
"mdlayher"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/164896",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1195857578
|
sage: post python-unstable/staging-next merge fixes
Description of changes
Fixes #167672.
Things done
Built on platform(s)
[ ] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
22.05 Release Notes (or backporting 21.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] (Release notes changes) Ran nixos/doc/manual/md-to-db.sh to update generated release notes
[x] Fits CONTRIBUTING.md.
There's more breakage here, I'm taking a look.
i didn't know it would rebuild that many packages
i'll submit a another pr
@Artturin I really appreciate the idea and I will add Sage to a few dependencies' passthru.tests in the near future. However, for the particular case of networkx, I have to agree with @FRidh's feedback, and because of this I have removed the commit you pushed (Sage is currently broken on master and this PR fixes it, so I want it to be as minimal as possible). Sorry for the trouble and thanks again for the suggestion!
|
gharchive/pull-request
| 2022-04-07T10:39:29 |
2025-04-01T04:55:26.128099
|
{
"authors": [
"Artturin",
"collares"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/167679",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1207306351
|
git: 2.35.3 -> 2.36.0
Description of changes
https://github.blog/2022-04-18-highlights-from-git-2-36/
Things done
Built on platform(s)
[ ] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
22.05 Release Notes (or backporting 21.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] (Release notes changes) Ran nixos/doc/manual/md-to-db.sh to update generated release notes
[ ] Fits CONTRIBUTING.md.
This will certainly have to target staging
This will certainly have to target staging
@lovesegfault rebased onto staging :)
It won't build on aarch64-darwin: https://hydra.nixos.org/build/174700755
Maybe a simple addition of a dependency will suffice; say could someone from @NixOS/darwin-maintainers have a look?
I'd make a patch but I can't right now -- but the fix is to add the CoreServices framework as a dependency. See how we handle adding it in callPackage; if nobody else makes a patch I'll do it when I can.
I had guessed so, but I don't have a means to verify.
@winterqt @vcunat I created #170291 with the fix (add CoreServices framework). I didn’t add it to callPackage because I didn’t want to risk breaking anything since git is used in quite a few places with different git packages.
And tests... I suppose well have to disable one, at least on aarch64-darwin? (the other three built OK)
https://hydra.nixos.org/build/174778232
For reference, done in 9b6415840
|
gharchive/pull-request
| 2022-04-18T18:17:28 |
2025-04-01T04:55:26.139545
|
{
"authors": [
"lovesegfault",
"reckenrode",
"techknowlogick",
"vcunat",
"winterqt"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/169223",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1215592203
|
natscli: 0.0.30 -> 0.0.32
Description of changes
https://github.com/nats-io/natscli/releases/tag/v0.0.32
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
22.05 Release Notes (or backporting 21.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] (Release notes changes) Ran nixos/doc/manual/md-to-db.sh to update generated release notes
[x] Fits CONTRIBUTING.md.
Result of nixpkgs-review pr 170386 run on x86_64-linux 1
1 package built:
natscli
|
gharchive/pull-request
| 2022-04-26T08:26:11 |
2025-04-01T04:55:26.148518
|
{
"authors": [
"fabaff"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/170386",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1222713179
|
python310Packages.pims: 0.5 -> 0.6.0
Automatic update generated by nixpkgs-update tools. This update was made based on information from passthru.updateScript.
meta.description for python310Packages.pims is: "Python Image Sequence: Load video and sequential images in many formats with a simple, consistent interface"
meta.homepage for python310Packages.pims is: "https://github.com/soft-matter/pims"
meta.changelog for python310Packages.pims is: ""
Updates performed
Ran passthru.UpdateScript
To inspect upstream changes
Impact
Checks done (click to expand)
built on NixOS
Warning: a test defined in passthru.tests did not pass
found 0.6.0 with grep in /nix/store/mxn6xy9wvryy7g6jdd1kgdafcxq4ykm7-python3.10-PIMS-0.6.0
found 0.6.0 in filename of file in /nix/store/mxn6xy9wvryy7g6jdd1kgdafcxq4ykm7-python3.10-PIMS-0.6.0
Rebuild report (if merged into master) (click to expand)
10 total rebuild path(s)
5 package rebuild(s)
5 x86_64-linux rebuild(s)
5 x86_64-darwin rebuild(s)
First fifty rebuilds by attrpath
python310Packages.dask-image
python310Packages.pims
python39Packages.dask-image
python39Packages.pims
python39Packages.stytra
Instructions to test this update (click to expand)
Either download from Cachix:
nix-store -r /nix/store/mxn6xy9wvryy7g6jdd1kgdafcxq4ykm7-python3.10-PIMS-0.6.0 \
--option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \
--option trusted-public-keys '
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
'
(The Cachix cache is only trusted for this store-path realization.)
For the Cachix download to work, your user must be in the trusted-users list or you can use sudo since root is effectively trusted.
Or, build yourself:
nix-build -A python310Packages.pims https://github.com/r-ryantm/nixpkgs/archive/e5cd0b86b1ff8ddb45eb4438f310c6c2624ab560.tar.gz
After you've downloaded or built it, look at the files and if there are any, run the binaries:
ls -la /nix/store/mxn6xy9wvryy7g6jdd1kgdafcxq4ykm7-python3.10-PIMS-0.6.0
ls -la /nix/store/mxn6xy9wvryy7g6jdd1kgdafcxq4ykm7-python3.10-PIMS-0.6.0/bin
Pre-merge build results
We have automatically built all packages that will get rebuilt due to
this change.
This gives evidence on whether the upgrade will break dependent packages.
Note sometimes packages show up as failed to build independent of the
change, simply because they are already broken on the target branch.
Result of nixpkgs-review run on x86_64-linux 1
5 packages built:
python310Packages.dask-image
python310Packages.pims
python39Packages.dask-image
python39Packages.pims
python39Packages.stytra
Maintainer pings
cc @costrouc for testing.
Result of nixpkgs-review pr 171228 run on x86_64-linux 1
5 packages built:
python310Packages.dask-image
python310Packages.pims
python39Packages.dask-image
python39Packages.pims
python39Packages.stytra
|
gharchive/pull-request
| 2022-05-02T10:15:34 |
2025-04-01T04:55:26.158692
|
{
"authors": [
"fabaff",
"r-ryantm"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/171228",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
169274717
|
eclipse-sdk: 4.5.1 -> 4.5.2 -> 4.6
Motivation for this change
Added eclipse-sdk 4.5.2 and 4.6
Things done
[ ] Tested using sandboxing
(nix.useChroot on NixOS,
or option build-use-chroot in nix.conf
on non-NixOS)
Built on platform(s)
[x] NixOS
[ ] OS X
[ ] Linux
[ ] Tested compilation of all pkgs that depend on this change using nix-shell -p nox --run "nox-review wip"
[x] Tested execution of all binary files (usually in ./result/bin/)
[x] Fits CONTRIBUTING.md.
Merged to master. Thanks for your contribution!
|
gharchive/pull-request
| 2016-08-04T01:59:54 |
2025-04-01T04:55:26.162954
|
{
"authors": [
"Dinnanid",
"rycee"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/17497",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1289306758
|
searxng: init at 2022-06-29
Description of changes
Fork of SearX with faster development and additional patches/features. The fork only does not release tags, so I picked the latest commit from master.
Tested working on my personal system via services.searx.package.
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[x] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
22.11 Release Notes (or backporting 22.05 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] (Release notes changes) Ran nixos/doc/manual/md-to-db.sh to update generated release notes
[x] Fits CONTRIBUTING.md.
Result of nixpkgs-review pr 179621 run on x86_64-linux 1
1 package built:
searxng
+1 now i can setup searxng instancez thx @Kranzes !
@Kranzes, do you plan to write the service file for SearXNG?
@Kranzes, do you plan to write the service file for SearXNG?
No, there is no point. You just do services.searx.package = pkgs.searxng
|
gharchive/pull-request
| 2022-06-29T21:10:56 |
2025-04-01T04:55:26.172570
|
{
"authors": [
"Kranzes",
"MagicRB",
"McSinyx"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/179621",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1369547000
|
bird-lg: fix proxy service script
Description of changes
There was an error where the last lines of the service script were missing the \ and so the script wouldn't start.
Things done
Built on platform(s)
[x] x86_64-linux
[x] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[x] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[x] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
22.11 Release Notes (or backporting 22.05 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] (Release notes changes) Ran nixos/doc/manual/md-to-db.sh to update generated release notes
[x] Fits CONTRIBUTING.md.
not sure how to submit bug report but the syntax for bird-lg-go should be something like this, according to xddxdd/bird-lg-go:
./frontend \ --servers="Gigs<gigsgigscloud>,Hostdare<hostdare>" \ --domain=dn42.lantian.pub
arguments shall be followed by the = sign and parameters shall be enclosed in quotation marks " ".
The service script has arguments followed by whitespace and parameters are not in quotation marks.
not sure how to submit bug report but the syntax for bird-lg-go should be something like this, according to xddxdd/bird-lg-go: ./frontend \ --servers="Gigs<gigsgigscloud>,Hostdare<hostdare>" \ --domain=dn42.lantian.pub
arguments shall be followed by the = sign and parameters shall be enclosed in quotation marks " ".
The service script has arguments followed by whitespace and parameters are not in quotation marks.
Will fix that, thx for the report
@yonghan can you please check because it's still working on my side
Oh, I've totally overlooked this when doing #226169. Sorry! But with that one merged, I think this can be closed. But thank you anyways for this PR.
|
gharchive/pull-request
| 2022-09-12T09:17:36 |
2025-04-01T04:55:26.183941
|
{
"authors": [
"Tchekda",
"e1mo",
"yonghan"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/190901",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
182066801
|
libcaca: fix missing darwin inputs
Motivation for this change
http://hydra.nixos.org/build/41806046/log
Things done
[ ] Tested using sandboxing
(nix.useSandbox on NixOS,
or option build-use-sandbox in nix.conf
on non-NixOS)
Built on platform(s)
[x] OS X
[x] No changes on other platforms
[ ] Tested compilation of all pkgs that depend on this change using nix-shell -p nox --run "nox-review wip"
[x] Tested execution of all binary files (usually in ./result/bin/)
[x] Fits CONTRIBUTING.md.
Thanks!
|
gharchive/pull-request
| 2016-10-10T17:09:35 |
2025-04-01T04:55:26.188388
|
{
"authors": [
"LnL7",
"Mic92"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/19429",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1610596750
|
jfrog-cli: 2.34.2 -> 2.34.6
Automatic update generated by nixpkgs-update tools. This update was made based on information from https://github.com/jfrog/jfrog-cli/releases.
meta.description for jfrog-cli is: Client for accessing to JFrog's Artifactory and Mission Control through their respective REST APIs
meta.homepage for jfrog-cli is: https://github.com/jfrog/jfrog-cli
Updates performed
Golang update
To inspect upstream changes
Release on GitHub
Compare changes on GitHub
Impact
Checks done (click to expand)
built on NixOS
The tests defined in passthru.tests, if any, passed
found 2.34.6 with grep in /nix/store/y3dr2icgbzrxrhj8spzyvrl6w7yar8ks-jfrog-cli-2.34.6
found 2.34.6 in filename of file in /nix/store/y3dr2icgbzrxrhj8spzyvrl6w7yar8ks-jfrog-cli-2.34.6
Rebuild report (if merged into master) (click to expand)
1 total rebuild path(s)
1 package rebuild(s)
First fifty rebuilds by attrpath
jfrog-cli
Instructions to test this update (click to expand)
Either download from Cachix:
nix-store -r /nix/store/y3dr2icgbzrxrhj8spzyvrl6w7yar8ks-jfrog-cli-2.34.6 \
--option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \
--option trusted-public-keys '
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
'
(The Cachix cache is only trusted for this store-path realization.)
For the Cachix download to work, your user must be in the trusted-users list or you can use sudo since root is effectively trusted.
Or, build yourself:
nix-build -A jfrog-cli https://github.com/r-ryantm/nixpkgs/archive/8c7e78ad9d29610e57c394d06aa4e8dda1914ea0.tar.gz
After you've downloaded or built it, look at the files and if there are any, run the binaries:
ls -la /nix/store/y3dr2icgbzrxrhj8spzyvrl6w7yar8ks-jfrog-cli-2.34.6
ls -la /nix/store/y3dr2icgbzrxrhj8spzyvrl6w7yar8ks-jfrog-cli-2.34.6/bin
Pre-merge build results
We have automatically built all packages that will get rebuilt due to
this change.
This gives evidence on whether the upgrade will break dependent packages.
Note sometimes packages show up as failed to build independent of the
change, simply because they are already broken on the target branch.
Result of nixpkgs-review run on x86_64-linux 1
1 package built:
jfrog-cli
Maintainer pings
cc @Detegr for testing.
Result of nixpkgs-review pr 219795 run on aarch64-darwin 1
1 package built:
jfrog-cli
|
gharchive/pull-request
| 2023-03-06T03:36:19 |
2025-04-01T04:55:26.198329
|
{
"authors": [
"r-ryantm",
"wegank"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/219795",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1622827231
|
nixos/bind: Support defining the zone file using nix expressions
This removes the need to manually write a zone file for bind, and it can instead be defined in nix expressions.
Description of changes
Things done
Built on platform(s)
[X] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
23.05 Release Notes (or backporting 22.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] Fits CONTRIBUTING.md.
There are some prior art at https://github.com/kirelagin/dns.nix, which may worth checking.
That is a pretty nice library. It would at least make sense to move the creation of the zone file into its own lib, so it can be reused by non-bind daemons.
Or does it make more sense to not put this functionality into nixpkgs itself, and rather have people use that library?
The best path forward would be integrating it into nixpkgs, IMO. Anyway, there are a lot of DNS servers packaged in nixpkgs, having a generic interface not tied to bind benefits them all.
Makes sense. I think the easiest and best path would be to integrate the library as a whole then, as it supports a lot more of the DNS entries. I can see if kirelagin wants to upstream it, or has anything against someone else (me) doing that work.
And then we can ignore this PR
|
gharchive/pull-request
| 2023-03-14T06:39:44 |
2025-04-01T04:55:26.208077
|
{
"authors": [
"NickCao",
"martiert"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/221120",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1640589984
|
lmms: Add support for Carla
Add Carla as an optional dependency and the needed patch.
This adds the Carla rack and Carla instrument LMMS plugins.
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
23.05 Release Notes (or backporting 22.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Here is the upstream issue: https://github.com/LMMS/lmms/issues/6395
And here is the corresponding patch: https://github.com/LMMS/lmms/pull/6403
Could you apply it with fetchfatch? (https://github.com/LMMS/lmms/commit/3518d307f47c79db06bd0e9430f39b91488673dc.patch)
Fixes the sed are difficult to maintain, it is hard to know when they become obsolete.
@orivej thanks for the suggestion, I'll work on that this friday
Here is the upstream issue: LMMS/lmms#6395 And here is the corresponding patch: LMMS/lmms#6403 Could you apply it with fetchfatch? (https://github.com/LMMS/lmms/commit/3518d307f47c79db06bd0e9430f39b91488673dc.patch) Fixes with sed are difficult to maintain, it is hard to know when they become obsolete.
@orivej It looks like the files plugins/carlabase/carla.h were renamed to camelcase at some point so the patch doesn't apply.
Even if we change the names it still doesn't apply because of this line (and others) which comes from this feature
This patch from Arch Linux would apply or we could also include it ourselves.
How do you suggest to proceed?
Good idea! However, the link https://raw.githubusercontent.com/archlinux/svntogit-community/packages/lmms/trunk/lmms-carla-export.patch will expire as soon as ArchLinux deletes that patch (probably when they update lmms). To keep the link working we refer to patches on github by their tags or hashes rather than by their branch names (in this case the branch name is packages/lmms). To obtain a stable link you can open https://github.com/archlinux/svntogit-community/blob/packages/lmms/trunk/lmms-carla-export.patch , press y on the keyboard (or click … near "Go to file", choose "Copy permalink", and visit the copied link), and then click "Raw" and copy the link from the browser url bar. In this case the result is https://raw.githubusercontent.com/archlinux/svntogit-community/cf64acc45e3264c6923885867e2dbf8b7586a36b/trunk/lmms-carla-export.patch
|
gharchive/pull-request
| 2023-03-25T17:13:27 |
2025-04-01T04:55:26.221911
|
{
"authors": [
"Rampoina",
"orivej"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/223103",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
204724208
|
fix/ngspice update
Motivation for this change
Ngspice 26 was out in 2014, but NixOS always got 25.
Things done
[X] Tested using sandboxing
(nix.useSandbox on NixOS,
or option build-use-sandbox in nix.conf
on non-NixOS)
Built on platform(s)
[X] NixOS
[ ] macOS
[ ] Linux
[ ] Tested compilation of all pkgs that depend on this change using nix-shell -p nox --run "nox-review wip"
[X] Tested execution of all binary files (usually in ./result/bin/)
[ ] Fits CONTRIBUTING.md.
Applied to master (7ea20c9e2752d5164e5a37f44a5dae9955d5d03f) and release-16.09 (1605af1eb59f432025b094bd65c768c0748ff19d).
"Next time", please add yourself to lib/maintainers.nix in a separate commit :-)
Also, changes should go to master first, then backported to release branch. This PR is directly against release-16.09 with changes not found in master.
I can't merge against master because there are thousands of conflicts... Since I based my branch on my current system version. What should I do about that?
@rongcuid: Yes, merging the branch in this PR directly to master would cause lots of conflicts, since it is based on the release branch. Hence I just cherry-picked the single commit on top of master.
Next time you want to make a PR, base your changes on master instead of the release branch. You don't have to move your whole (NixOS) system over, you can build separate packages just fine from a nixpkgs working tree.
|
gharchive/pull-request
| 2017-02-01T22:25:10 |
2025-04-01T04:55:26.227758
|
{
"authors": [
"bjornfor",
"rongcuid"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/22355",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1691313000
|
Remove KVM assumption
Description of changes
Challenge insistance on KVM.
KVM is a very particular way to accelerate VMs, why is that the default?
Insistance on KVM also introduces the need for side-effects and makes building images non-portable between envrionments: KVM is typically available on bare-metal, not so much in Containers, sub-VMs or Mac.
KVM is never a requirement; VMs runs fine without KVM - albeit slower.
This puts the onus on making KVM an opt-in capability, rather than a
necessary requirement.
Besides, QEMU is perfectly able to fallback from KVM to TCG JIT but that
can never happen if nix-daemon prevents it from ever trying.
In the current situation:
one has to modify nix.conf on Non-NixOS
AND have a CPU with virtualization extensions
AND have the {amd, intel}-kvm kernel module loaded
AND have correct permissions to /dev/kvm
and that is too much to insist on - certainly for building images.
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
23.05 Release Notes (or backporting 22.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] Fits CONTRIBUTING.md.
See also
https://github.com/nix-community/nixos-generators/issues/83
https://github.com/NixOS/nix/issues/2964
[...] the qemu package includes emulators for all targets, while the qemu_kvm package only includes an emulator for the hostPlatform and does work without kvm despite its naming
Thanks, good to know!
people run into timeouts when running NixOS tests and the likes without KVM (exactly because it did a fallback to emulation instead of KVM it was very hard to debug why this test fails on one machine but succeeds on the other!).
I can appreciate that from own experience too, but that can be attributable to many things beyond KVM: Machine speed, contention. Generally, setting a hard time-deadline for something that is not real-time will always fail in some corner cases. A better approach would be to set the deadline based on machine speed -- otherwise who is to say that my cloud vCPU or random-old-machine won't violate the timeout.
So I don't find that to be an argument for insisting on KVM.
Best of both worlds:
We use qemu_kvm, for its smaller closure size etc. QEMU falls back to TCG if KVM is unavailable. (qemu_kvm is quite a poor name; qemu_small_host might be better and wouldn't cause a collision with established terminology, thus preventing my assumption).
Nix C++ has its dynamic detection of KVM capability. Good.
nixpkgs drops its insistance of KVM. If KVM not found, large warning is printed (to make it discoverable) and test deadlines are multipled by 10x (or better: based on some performance measurement).
I'd be happy to contribute towards this. How do you feel about this?
Thank you for your interesting contribution, please follow the CONTRIBUTING guide and rename the PR title accordingly and same for your commit messages.
FWIW, such changes are too big to be landed in the future days, you will have to wait for the branch-off after 23.05, also, it would be a good thing to have a Hydra jobset to perform regression testing on your changes to ensure you did not break the tests for whatever edge case reason.
On the contents, I think you are missing a lot of occurrences of qemu_kvm, I'd move the change inside of qemu_kvm, rename qemu_kvm treewide, then we need to discuss the removal of requiredSystemFeatures for runInLinuxVM.
Ideally, building images should not require a VM at all, but unfortunately, supporting all our usecases seems not feasible even with LKL. Let's put this as an orthogonal problem.
On the dynamic detection, it seems like what we would like is preferredSystemFeatures and indeed a large warning print seems a good idea.
I'm not sure how you would bump the deadline dynamically though unfortunately, it's Hydra's area and I believe this to be quite thorny at the moment.
A better approach would be to set the deadline based on machine speed -- otherwise who is to say that my cloud vCPU or random-old-machine won't violate the timeout.
You are right but in the meantime, we are experiencing less issues with KVM rather than without, except if you do suggest a major change in the buildfarm system to take into account the machine speed and its busyness, I don't think it's a realistic change (to not use KVM).
qemu_kvm is quite a poor name; qemu_small_host might be better and wouldn't cause a collision with established terminology, thus preventing my assumption
absolutely agree it is a bad name
A better approach would be to set the deadline based on machine speed
When talking about timeouts, I was not talking about Hydra or overall derivation build time, but things like systemd services and service-internal timeouts in NixOS test VMs.
nixpkgs drops its insistance of KVM
Okay, so you want to remove the requiredSystemFeatures = [ "kvm" ];?
Consider this: When you have several remote builders, some of which have kvm support and others don't, it would be much smarter to run these derivations on the ones that do have kvm support. Removing the feature flag from the derivation would make it impossible to perform this kind of scheduling.
Instead, it might be better to rename the system feature to "vm" or "qemu", to signify that you can also enable this feature in nix.conf on hosts that don't have kvm, to tell Nix to run VM derivations on that host.
Hydra.nixos.org: I don't think we really utilize the tag there. All our linux builders support it and we also have nixos-test feature that probably covers very similar set of jobs on Hydra.
Is anyone still planning to work on this, or can it be closed?
|
gharchive/pull-request
| 2023-05-01T20:18:43 |
2025-04-01T04:55:26.247287
|
{
"authors": [
"RaitoBezarius",
"mped-oticon",
"vcunat",
"yu-re-ka"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/229361",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1699358653
|
gnu-efi: 3.0.15 -> 3.0.17
Automatic update generated by nixpkgs-update tools. This update was made based on information from passthru.updateScript.
meta.description for gnu-efi is: GNU EFI development toolchain
meta.homepage for gnu-efi is: https://sourceforge.net/projects/gnu-efi/
Updates performed
Ran passthru.UpdateScript
To inspect upstream changes
Impact
Checks done (click to expand)
built on NixOS
The tests defined in passthru.tests, if any, passed
found 3.0.17 with grep in /nix/store/ik3i4chh4bdld9kj0a80xw8pg39w5nz6-gnu-efi-3.0.17
found 3.0.17 in filename of file in /nix/store/ik3i4chh4bdld9kj0a80xw8pg39w5nz6-gnu-efi-3.0.17
Rebuild report (if merged into master) (click to expand)
17253 total rebuild path(s)
17253 package rebuild(s)
First fifty rebuilds by attrpath
AusweisApp2
CHOWTapeModel
ChowKick
ChowPhaser
CuboCore.coreaction
CuboCore.corearchiver
CuboCore.corefm
CuboCore.coregarage
CuboCore.corehunt
CuboCore.coreimage
CuboCore.coreinfo
CuboCore.corekeyboard
CuboCore.corepad
CuboCore.corepaint
CuboCore.corepdf
CuboCore.corepins
CuboCore.corerenamer
CuboCore.coreshot
CuboCore.corestats
CuboCore.corestuff
CuboCore.coreterminal
CuboCore.coretime
CuboCore.coretoppings
CuboCore.coreuniverse
CuboCore.libcprime
CuboCore.libcsys
DisnixWebService
EBTKS
EmptyEpsilon
HentaiAtHome
MIDIVisualizer
OSCAR
OVMF
OVMFFull
PageEdit
R
SDL2
SDL2_gfx
SDL2_image
SDL2_image_2_0_5
SDL2_mixer
SDL2_mixer_2_0
SDL2_net
SDL2_sound
SDL2_ttf
SDL2_ttf_2_0_15
SDL_audiolib
SDL_compat
SDL_gpu
Instructions to test this update (click to expand)
Either download from Cachix:
nix-store -r /nix/store/ik3i4chh4bdld9kj0a80xw8pg39w5nz6-gnu-efi-3.0.17 \
--option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \
--option trusted-public-keys '
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
'
(The Cachix cache is only trusted for this store-path realization.)
For the Cachix download to work, your user must be in the trusted-users list or you can use sudo since root is effectively trusted.
Or, build yourself:
nix-build -A gnu-efi https://github.com/r-ryantm/nixpkgs/archive/6efc3981aab2b94545beef6e17a467bedfe748cf.tar.gz
After you've downloaded or built it, look at the files and if there are any, run the binaries:
ls -la /nix/store/ik3i4chh4bdld9kj0a80xw8pg39w5nz6-gnu-efi-3.0.17
ls -la /nix/store/ik3i4chh4bdld9kj0a80xw8pg39w5nz6-gnu-efi-3.0.17/bin
Pre-merge build results
NixPkgs review skipped
Maintainer pings
Broke this one, I think:
https://hydra.nixos.org/build/221624593/nixlog/2/tail
https://sourceforge.net/p/gnu-efi/bugs/37/
Let's revert this PR, then.
|
gharchive/pull-request
| 2023-05-08T01:36:21 |
2025-04-01T04:55:26.255442
|
{
"authors": [
"r-ryantm",
"vcunat",
"wegank"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/230601",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1729401293
|
edac-utils: unstable-2015-01-07 -> unstable-2023-01-30
Description of changes
This change updates edac-utils package to the latest commit (see changes).
It also
adds perl to buildInputs so that shebang is fixed in edac-ctl command,
adds a patch to avoid using wrapProgram for PATH,
removes sysv init script from $out/etc.
Things done
Built on platform(s)
[x] x86_64-linux (pkgsCross.gnu64)
[x] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
23.05 Release Notes (or backporting 22.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] Fits CONTRIBUTING.md.
Force-pushed rebase to the latest master branch.
This pull request has been mentioned on NixOS Discourse. There might be relevant details there:
https://discourse.nixos.org/t/prs-already-reviewed/2617/1380
adds perl to buildInputs so that shebang is fixed in edac-ctl command,
Please add this info as a comment next to perl so that people know why it's there and won't remove it thinking it unnecessary (the upstream project does not seem to explicitly explain the dependency in README or otherwise).
@nh2 done.
@nh2, gentle ping.
|
gharchive/pull-request
| 2023-05-28T11:17:08 |
2025-04-01T04:55:26.266587
|
{
"authors": [
"nh2",
"nixos-discourse",
"tie"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/234603",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1770709569
|
pianoteq: Submit/pianoteq version update
Description of changes
Things done
Updated version number of trial version to 8.1.1 and added standard-8, standard-7, and standard-6 versions with hashes.
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
23.11 Release Notes (or backporting 23.05 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Unsure of how to request reviews with current permissions, but I believe the current maintainer for pianoteq is @mausch if you are able to merge this.
Hi and thanks for the updates!
A few things to fix:
There are two seemingly identical commits.
There's a merge from master, please don't do that.
Did you use some sort of automated formatting tool? There's some odd formatting there e.g. no spaces in lists, I don't think that's typical for nixpkgs. Also it's best in general to keep formatting changes in commits separate from actual changes.
Hello,
It looks like I have accidentally managed to ping a ton of unrelated people, so I will be closing this pull request. Apologies as I am somewhat new to this.
|
gharchive/pull-request
| 2023-06-23T03:15:47 |
2025-04-01T04:55:26.276610
|
{
"authors": [
"mausch",
"purepani"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/239281",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1805138730
|
lib.lists.{hasPrefix,removePrefix}: init
Description of changes
Adds two new functions:
lib.lists.hasPrefix :: [ a ] -> [ a ] -> bool: Whether the first list is a prefix of the second list:lib.lists.hasPrefix [ 1 2 ] [ 1 2 3 4 ]
-> true
lib.lists.removePrefix :: [ a ] -> [ a ] -> [ a ]: Remove the first list as a prefix from the second list, erroring if it's not a prefix:lib.lists.removePrefix [ 1 2 ] [ 1 2 3 4 ]
-> [ 3 4 ]
lib.lists.removePrefix [ 1 2 ] [ 3 4 ]
-> <error>
This is distantly part of the path library effort, in order to be able to work with lists of path components.
This work is sponsored by Antithesis :sparkles:
Things done
[x] Docs
[x] Tests
Yeah I think I'm happy with this design, I think this can be merged.
|
gharchive/pull-request
| 2023-07-14T16:22:01 |
2025-04-01T04:55:26.280036
|
{
"authors": [
"infinisil"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/243511",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1833920066
|
grafana-agent: build and embed flow mode web ui
Description of changes
Build and embed the flow mode web ui frontend (default localhost:12345), which is only available in when starting in flow mode.
See #246742 for more context and a sample config.
Upstream docs: https://grafana.com/docs/agent/latest/flow/
Closes #246742
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[x] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
23.11 Release Notes (or backporting 23.05 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Result of nixpkgs-review run on x86_64-linux 1
1 package built:
grafana-agent
@emilylange with the recent version bumps, does this need to be rebased / the hash updated? Any way to ensure this doesn't forget to get updated during version bumps?
@emilylange with the recent version bumps, does this need to be rebased / the hash updated?
No, as the recent bumps did not touch the yarn.lock^1.
Any way to ensure this doesn't forget to get updated during version bumps?
If there is a mismatch between the provided FOD yarn offline cache and the yarn.lock in src, the yarn install simply fails and thus the build itself fails.
To provide an example error log, I went back to d375babda185cf7a6eb41298cb9f23e522f30010 (v0.30.2) and cherry-picked this commit on top.
@nix { "action": "setPhase", "phase": "unpackPhase" }
unpacking sources
unpacking source archive /nix/store/bjk429c1iiws7i9a4nqwk4rdakh0y0bx-source
source root is source
@nix { "action": "setPhase", "phase": "patchPhase" }
patching sources
@nix { "action": "setPhase", "phase": "configurePhase" }
configuring
@nix { "action": "setPhase", "phase": "buildPhase" }
building
~/source/web/ui ~/source
yarn config v1.22.19
success Set "yarn-offline-mirror" to "/nix/store/xbgc0i5hjp24jidqmg0bc2014b5dj828-offline".
Done in 0.02s.
yarn install v1.22.19
[1/4] Resolving packages...
[2/4] Fetching packages...
error Can't make a request in offline mode ("https://registry.yarnpkg.com/_fortawesome_fontawesome_svg_core___fontawesome_svg_core_6.1.2.tgz")
info Visit [0m1mhttps://yarnpkg.com/en/docs/cli/install for documentation about this command.
Meaning, a mismatch will be easy to catch -- both locally and by ofborg :)
@ofborg build grafana-agent
nix-update, however, does not support updating the fetchYarnDeps hash yet^2.
I migrated some of my configs to flow mode and can confirm the web interface does do what it should. Thanks! :+1:
|
gharchive/pull-request
| 2023-08-02T21:21:44 |
2025-04-01T04:55:26.292896
|
{
"authors": [
"emilylange",
"flokli"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/246853",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1852168420
|
ssh-tpm-agent: init at unstable-2023-08-12
Description of changes
Adds the new experimental ssh-tpm-agent package, allowing ssh users to easily authenticate with keys sealed by their TPM2 chip.
Todo:
[ ] Fix failing tests
[ ] Maybe wait for newer release
Things done
Built on platform(s)
[X] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
23.11 Release Notes (or backporting 23.05 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] Fits CONTRIBUTING.md.
@Foxboron ^^
After discussing it with @stigtsp the idea is to wait for a 1.0.0 release and keep the PR available for people that want to test ssh-tpm-agent.
@RaitoBezarius Hi! A certain fox noticed that you had some options for ssh-tpm-agent in your config. I'm thinking to set up NixOS options for this as well - likely in a later PR. Would you be interested in reviewing?
https://github.com/RaitoBezarius/nixos-home/blob/master/ssh/tpm-agent.nix
@RaitoBezarius Hi! A certain fox noticed that you had some options for ssh-tpm-agent in your config. I'm thinking to set up NixOS options for this as well - likely in a later PR. Would you be interested in reviewing?
https://github.com/RaitoBezarius/nixos-home/blob/master/ssh/tpm-agent.nix
Of course! I didn't know this certain fox was okay with 0.3.0 :>
Of course! I didn't know this certain fox was okay with 0.3.0 :>
After implementing the ASN.1 TPM keys I don't really need to lock down the key format anymore. So it should be fine as the key would probably not need to be upgraded in the future.
@stigtsp You want to pull this patch fwiw, https://github.com/Foxboron/ssh-tpm-agent/commit/65d5a501bf1ce7f358006ad48af0c2c85f459d1c
@stigtsp You want to pull this patch fwiw, Foxboron/ssh-tpm-agent@65d5a50
Should we bump it to the next releaee
@stigtsp You want to pull this patch fwiw, Foxboron/ssh-tpm-agent@65d5a50
Are you planning a new release soon? Would prefer to update this PR to that if it's not far off.
@stigtsp I can do a bugfix release this weekend probably.
https://github.com/Foxboron/ssh-tpm-agent/releases/tag/v0.3.1
should be fine.
Tested this a bit more, and it works for me.
@RaitoBezarius Any showstoppers to merging this you think?
This looks good to me except it’s missing meta.mainProgram
Thanks, added.
Here's a simple HM config (easily translated to nixos). I'm actually not going to use this for now because I need to load other keys into the agent and this agent, like yubikey-agent, doesn't support that.
home.packages = [ pkgs.ssh-tpm-agent ];
systemd.user.services.ssh-tpm-agent = {
Unit.PartOf = [ "default.target" ];
Service = {
Type = "simple";
ExecStart = "${lib.getExe pkgs.ssh-tpm-agent} -l %t/ssh-agent";
RestartSec = 3;
Restart = "on-abort";
};
Install.WantedBy = [ "default.target" ];
};
@adamcstephens
Look at the proxy support.
https://github.com/Foxboron/ssh-tpm-agent?tab=readme-ov-file#proxy-support
@Foxboron thanks! i missed that in the readme.
|
gharchive/pull-request
| 2023-08-15T21:42:04 |
2025-04-01T04:55:26.309953
|
{
"authors": [
"Foxboron",
"RaitoBezarius",
"adamcstephens",
"stigtsp"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/249404",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1967085765
|
python311Packages.pysignalclirestapi: 0.3.18 -> 0.3.21
Description of changes
Diff: https://github.com/bbernhard/pysignalclirestapi/compare/0.3.18...0.3.21
Changelog: https://github.com/bbernhard/pysignalclirestapi/releases/tag/0.3.21
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[x] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
23.11 Release Notes (or backporting 23.05 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Result of nixpkgs-review pr 264203 run on x86_64-linux 1
5 packages built:
home-assistant-component-tests.signal_messenger
python310Packages.pysignalclirestapi
python310Packages.pysignalclirestapi.dist
python311Packages.pysignalclirestapi
python311Packages.pysignalclirestapi.dist
|
gharchive/pull-request
| 2023-10-29T17:38:23 |
2025-04-01T04:55:26.320411
|
{
"authors": [
"dotlambda",
"natsukium"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/264203",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2010678503
|
emscripten: 3.1.47 -> 3.1.48
Description of changes
Bump from 3.1.47 to 3.1.48.
Things done
Built on platform(s)
[ ] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[X] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[X] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
23.11 Release Notes (or backporting 23.05 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[X] Fits CONTRIBUTING.md.
Priorities
Add a :+1: reaction to pull requests you find important.
Result of nixpkgs-review pr 269904 run on aarch64-darwin 1
6 packages failed to build:
emscriptenPackages.libxml2
emscriptenPackages.libxml2.bin
emscriptenPackages.libxml2.dev
emscriptenPackages.libxml2.doc
emscriptenPackages.xmlmirror
emscriptenPackages.xmlmirror.doc
10 packages built:
emscripten
emscriptenPackages.json_c
emscriptenPackages.json_c.dev
emscriptenPackages.zlib
faust
faust2csound
faust2firefox
faust2jackrust
faust2ladspa
faust2lv2
libxml2 is failing for me, but it looks like a mac-specific issue related to the .dylib vs .o, so I don't think it should be a blocker.
++ emcc -O2 -s EMULATE_FUNCTION_POINTER_CASTS=1 xmllint.o ./.libs/libxml2.dylib -I/nix/store/5hs5bhvmrp6z4kvfqjhf64l80fszf97g-emscripten-zlib-1.3/include -L/nix/store/5hs5bhvmrp6z4kvfqjhf64l80fszf97g-emscripten-zlib-1.3/lib -lz -o ./xmllint.test.js --embed-file ./test/xmlid/id_err1.xml
emcc: error: xmllint.o: No such file or directory ("xmllint.o" was expected to be an input file, based on the commandline arguments provided)
+ exitHandler
+ exitCode=1
+ set +e
+ '[' -n '' ']'
+ (( 1 != 0 ))
+ runHook failureHook
+ local hookName=failureHook
+ shift
+ local 'hooksSlice=failureHooks[@]'
+ local hook
+ for hook in "_callImplicitHook 0 $hookName" ${!hooksSlice+"${!hooksSlice}"}
+ _eval '_callImplicitHook 0 failureHook'
+ declare -F '_callImplicitHook 0 failureHook'
+ eval '_callImplicitHook 0 failureHook'
++ _callImplicitHook 0 failureHook
++ local def=0
++ local hookName=failureHook
++ declare -F failureHook
++ type -p failureHook
++ '[' -n '' ']'
++ return 0
+ return 0
+ '[' -n '' ']'
+ return 1
Bumped to 3.1.49. 3.1.50 will require bumping LLVM too, so I'll leave that till LLVM 17 stabilizes a little. @RaitoBezarius
Sounds good to me, thank you for taking care of that.
Smaller than I thought. Bumped to 3.1.50 -- required updating the patch file to deal with upstream changes, and carrying the table-base patch from LLVM 16 to LLVM 17.
Result of nixpkgs-review pr 269904 run on aarch64-darwin 1
9 packages failed to build:
emscriptenPackages.json_c
emscriptenPackages.json_c.dev
emscriptenPackages.libxml2
emscriptenPackages.libxml2.bin
emscriptenPackages.libxml2.dev
emscriptenPackages.libxml2.doc
emscriptenPackages.xmlmirror
emscriptenPackages.xmlmirror.doc
emscriptenPackages.zlib
12 packages built:
emscripten
faust
faust2csound
faust2firefox
faust2jackrust
faust2ladspa
faust2lv2
lld_17
lld_17.dev
lld_17.lib
llvmPackages_17.bintools (llvmPackages_17.bintoolsNoLibc)
llvmPackages_17.bintools-unwrapped
@RaitoBezarius ofborg looks green except for darwin aarch64, which worked out on my own nixpkgs-review. Let me know if this looks ready!
This pull request has been mentioned on NixOS Discourse. There might be relevant details there:
https://discourse.nixos.org/t/prs-already-reviewed/2617/1312
Thank you!
This broke the javascript backend of GHC:
Running phase: unpackPhase
unpacking source archive /nix/store/ccfcx83sqkykdylq7qbdxdfli2qkc8z9-ghc-955520c
source root is ghc-955520c
Running phase: patchPhase
applying patch /nix/store/32kfndxy8dbaa47jbpg2fp4lsd4wcxmg-docs-sphinx-7-ghc98.patch
patching file docs/users_guide/rtd-theme/layout.html
patching script interpreter paths in .
./validate: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./utils/verify-release/verify-packages.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./utils/vagrant/bootstrap-rhel.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./utils/vagrant/bootstrap-deb.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./utils/update-autoconf.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./utils/llvm-targets/gen-data-layout.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./utils/haddock/latex-test/run: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./utils/haddock/hypsrc-test/run: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./utils/haddock/html-test/run: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./utils/haddock/hoogle-test/run: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./utils/haddock/haddock-test/Setup.lhs: interpreter directive changed from "#!/usr/bin/env runhaskell" to "/nix/store/sq63pzmkygg0k7asd9hhkwfqkzgcrkfa-ghc-9.6.3/bin/runhaskell"
./utils/haddock/haddock-api/Setup.lhs: interpreter directive changed from "#!/usr/bin/env runhaskell" to "/nix/store/sq63pzmkygg0k7asd9hhkwfqkzgcrkfa-ghc-9.6.3/bin/runhaskell"
./utils/haddock/Setup.lhs: interpreter directive changed from "#!/usr/bin/env runhaskell" to "/nix/store/sq63pzmkygg0k7asd9hhkwfqkzgcrkfa-ghc-9.6.3/bin/runhaskell"
./utils/check-exact/run.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./testsuite/tests/unboxedsums/GenManyUbxSums.hs: interpreter directive changed from "#!/usr/bin/env runghc" to "/nix/store/sq63pzmkygg0k7asd9hhkwfqkzgcrkfa-ghc-9.6.3/bin/runghc"
./testsuite/tests/pmcheck/should_compile/genV.py: interpreter directive changed from "#! /usr/bin/env python3" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python3"
./testsuite/tests/pmcheck/should_compile/genT.py: interpreter directive changed from "#! /usr/bin/env python3" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python3"
./testsuite/tests/pmcheck/should_compile/genS.py: interpreter directive changed from "#! /usr/bin/env python3" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python3"
./testsuite/tests/pmcheck/should_compile/genG: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./testsuite/tests/perf/compiler/genT22744: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/perf/compiler/genT14766.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python3"
./testsuite/tests/perf/compiler/genT14697: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/perf/compiler/genT13719: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/perf/compiler/genT13701: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/perf/compiler/genRecordUpdPerf: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/perf/compiler/genMultiLayerModulesTH: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/perf/compiler/genMultiLayerModulesNoCode: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/perf/compiler/genMultiLayerModulesDefs: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/perf/compiler/genMultiLayerModules: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/perf/compiler/genMultiComp.py: interpreter directive changed from "#! /usr/bin/env python" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python"
./testsuite/tests/perf/compiler/genMatchingTest: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/perf/compiler/T12545.measure.sh: interpreter directive changed from "#!/usr/bin/env sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./testsuite/tests/llvm/should_run/subsections_via_symbols/subsections_via_symbols-libtool-quiet: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./testsuite/tests/linters/regex-linters/check-version-number.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/linters/regex-linters/check-rts-includes.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python3"
./testsuite/tests/linters/regex-linters/check-makefiles.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python3"
./testsuite/tests/linters/regex-linters/check-changelogs.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/linters/checkUniques/check-uniques.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python3"
./testsuite/tests/driver/j-space/genJspace: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./testsuite/tests/driver/T16521/check.sh: interpreter directive changed from "#! /bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./testsuite/tests/driver/T12983/build.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./rts/gen_event_types.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python"
./nofib/spectral/banner/boot.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./nofib/spectral/awards/boot.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./nofib/shootout/reverse-complement/boot.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./nofib/shootout/k-nucleotide/boot.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./nofib/shootout/fasta/boot.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./nofib/easy.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./mk/relpath.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./mk/install_script.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./mk/get-win32-tarballs.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python"
./mk/detect-cpu-count.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/unix/install-sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/unix/config.sub: interpreter directive changed from "#! /bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/unix/config.guess: interpreter directive changed from "#! /bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/time/fullcheck: interpreter directive changed from "#!/bin/bash -e" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash -e"
./libraries/time/format-all: interpreter directive changed from "#!/bin/bash -e" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash -e"
./libraries/time/build: interpreter directive changed from "#!/bin/bash -e" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash -e"
./libraries/text/tests/literal-rule-test.sh: interpreter directive changed from "#!/bin/bash -e" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash -e"
./libraries/text/scripts/regenerate.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./libraries/stm/tests/runtests.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./libraries/semaphore-compat/.gitlab/ci.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./libraries/ghc-bignum/install-sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/ghc-bignum/gmp/ln: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/ghc-bignum/gmp/gmp-tarballs/build-nodoc-tarball: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/directory/tools/vercmp: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python"
./libraries/directory/tools/testscript: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/directory/tools/testctl: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python"
./libraries/directory/tools/retry: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/containers/containers-tests/benchmarks/bench-cmp.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/containers/containers-tests/benchmarks/bench-cmp.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/fx9hkrym88ahxkibcqnkl8907vakbqvg-perl-5.38.2/bin/perl"
./libraries/binary/Setup.lhs: interpreter directive changed from "#!/usr/bin/env runhaskell" to "/nix/store/sq63pzmkygg0k7asd9hhkwfqkzgcrkfa-ghc-9.6.3/bin/runhaskell"
./libraries/base/tools/ucd2haskell/ucd.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/base/tests/enum_processor.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python3"
./libraries/Cabal/validate.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/Regression/T5386/configure: interpreter directive changed from "#! /bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GhcPkgGuess/SymlinkVersion/bin/ghc-pkg-ghc-7.10: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GhcPkgGuess/SymlinkVersion/bin/ghc-7.10: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GhcPkgGuess/SymlinkGhcVersion/bin/ghc-pkg-7.10: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GhcPkgGuess/SymlinkGhcVersion/bin/ghc-7.10: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GhcPkgGuess/Symlink/bin/ghc-pkg: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GhcPkgGuess/Symlink/bin/ghc: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GhcPkgGuess/SameDirectoryVersion/ghc-pkg-7.10: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GhcPkgGuess/SameDirectoryVersion/ghc-7.10: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GhcPkgGuess/SameDirectoryGhcVersion/ghc-pkg-ghc-7.10: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GhcPkgGuess/SameDirectoryGhcVersion/ghc-7.10: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GhcPkgGuess/SameDirectory/ghc-pkg: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GhcPkgGuess/SameDirectory/ghc: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/GHCJS/BuildRunner/scripts/ghcjs-pkg: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./libraries/Cabal/cabal-testsuite/PackageTests/GHCJS/BuildRunner/scripts/fake-ghcjs.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./libraries/Cabal/cabal-testsuite/PackageTests/ExtraProgPath/pkg-config: interpreter directive changed from "#!/usr/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/CCompilerOverride/custom-cc: interpreter directive changed from "#!/bin/bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./libraries/Cabal/cabal-testsuite/PackageTests/BuildTools/Foreign/my-foreign-preprocessor: interpreter directive changed from "#!/usr/bin/env sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/cabal-testsuite/PackageTests/AutoconfBadPaths/configure: interpreter directive changed from "#! /bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/bootstrap/bootstrap.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python3"
./libraries/Cabal/Cabal/misc/travis-diff-files.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/Cabal/misc/gen-authors.sh: interpreter directive changed from "#! /bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./libraries/Cabal/.gitlab/ci.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./libraries/Cabal/.githooks/pre-push: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./libffi-tarballs/mk-snapshot.sh: interpreter directive changed from "#!/bin/bash -e" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash -e"
./libffi/ln: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./install-sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./hadrian/lint: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./hadrian/hie-bios: interpreter directive changed from "#! /usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./hadrian/ghci-stack.in: interpreter directive changed from "#!/usr/bin/env sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./hadrian/ghci-multi-cabal.in: interpreter directive changed from "#!/usr/bin/env sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./hadrian/ghci-multi: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./hadrian/ghci-cabal.in: interpreter directive changed from "#!/usr/bin/env sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./hadrian/ghci: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./hadrian/completion.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./hadrian/build-stack-nix: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./hadrian/build-stack: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./hadrian/build-cabal: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./hadrian/build: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./hadrian/bootstrap/bootstrap.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python3"
./docs/users_guide/compare-flags.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python"
./distrib/mkDocs/mkDocs: interpreter directive changed from "#!/bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./config.sub: interpreter directive changed from "#! /bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./config.guess: interpreter directive changed from "#! /bin/sh" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh"
./boot: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python3"
./.gitlab/test-metrics.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./.gitlab/rel_eng/upload_ghc_libs.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/bin/python3"
./.gitlab/generate-ci/generate-jobs: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./.gitlab/generate-ci/generate-job-metadata: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
./.gitlab/ci.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/bash"
Running phase: updateAutotoolsGnuConfigScriptsPhase
Running phase: configurePhase
Booting .
Booting rts
Booting libraries/unix/
Booting libraries/time/
Booting libraries/terminfo/
Booting libraries/process/
Booting libraries/ghc-bignum/
Booting libraries/directory/
Booting libraries/base/
configure.ac:9: warning: The macro `AC_HELP_STRING' is obsolete.
configure.ac:9: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1553: AC_ARG_WITH is expanded from...
configure.ac:9: the top level
configure.ac:220: warning: The macro `AC_TRY_RUN' is obsolete.
configure.ac:220: You should run autoupdate.
./lib/autoconf/general.m4:2997: AC_TRY_RUN is expanded from...
lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
../m4/fp_check_timer_create.m4:5: FP_CHECK_TIMER_CREATE is expanded from...
configure.ac:220: the top level
configure.ac:91: warning: The macro `AC_CONFIG_HEADER' is obsolete.
configure.ac:91: You should run autoupdate.
./lib/autoconf/status.m4:719: AC_CONFIG_HEADER is expanded from...
configure.ac:91: the top level
configure.ac:93: warning: The macro `AC_CONFIG_HEADER' is obsolete.
configure.ac:93: You should run autoupdate.
./lib/autoconf/status.m4:719: AC_CONFIG_HEADER is expanded from...
configure.ac:93: the top level
configure.ac:434: warning: The macro `AC_PROG_CC_C99' is obsolete.
configure.ac:434: You should run autoupdate.
./lib/autoconf/c.m4:1659: AC_PROG_CC_C99 is expanded from...
m4/fp_set_cflags_c99.m4:7: FP_SET_CFLAGS_C99 is expanded from...
configure.ac:434: the top level
configure.ac:435: warning: The macro `AC_PROG_CC_C99' is obsolete.
configure.ac:435: You should run autoupdate.
./lib/autoconf/c.m4:1659: AC_PROG_CC_C99 is expanded from...
m4/fp_set_cflags_c99.m4:7: FP_SET_CFLAGS_C99 is expanded from...
configure.ac:435: the top level
configure.ac:436: warning: The macro `AC_PROG_CC_C99' is obsolete.
configure.ac:436: You should run autoupdate.
./lib/autoconf/c.m4:1659: AC_PROG_CC_C99 is expanded from...
m4/fp_set_cflags_c99.m4:7: FP_SET_CFLAGS_C99 is expanded from...
configure.ac:436: the top level
configure.ac:437: warning: The macro `AC_PROG_CC_C99' is obsolete.
configure.ac:437: You should run autoupdate.
./lib/autoconf/c.m4:1659: AC_PROG_CC_C99 is expanded from...
m4/fp_set_cflags_c99.m4:7: FP_SET_CFLAGS_C99 is expanded from...
configure.ac:437: the top level
configure flags: --prefix=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121 --bindir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/bin --sbindir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/sbin --includedir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/include --oldincludedir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/include --mandir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/share/man --infodir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/share/info --docdir=/nix/store/4f44y7awfa55rx2rpkjhrarj6bq3c3cr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121-doc/share/doc/javascript-unknown-ghcjs-ghc-native-bignum --libdir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/lib --libexecdir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/libexec --localedir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/share/locale --datadir=\$doc/share/doc/ghc --with-curses-includes=/nix/store/ifx5q9x3vcck3b01wb9h47x7va00snkd-ncurses-6.4-dev/include --with-curses-libraries=/nix/store/fmkdf1b03w5v9yzk2mm3b4yqg1gwhrf5-ncurses-6.4/lib --enable-bootstrap-with-devel-snapshot --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=javascript-unknown-ghcjs
configure: ./configure --prefix=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121 --bindir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/bin --sbindir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/sbin --includedir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/include --oldincludedir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/include --mandir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/share/man --infodir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/share/info --docdir=/nix/store/4f44y7awfa55rx2rpkjhrarj6bq3c3cr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121-doc/share/doc/javascript-unknown-ghcjs-ghc-native-bignum --libdir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/lib --libexecdir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/libexec --localedir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/share/locale --datadir=$doc/share/doc/ghc --with-curses-includes=/nix/store/ifx5q9x3vcck3b01wb9h47x7va00snkd-ncurses-6.4-dev/include --with-curses-libraries=/nix/store/fmkdf1b03w5v9yzk2mm3b4yqg1gwhrf5-ncurses-6.4/lib --enable-bootstrap-with-devel-snapshot --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=javascript-unknown-ghcjs
checking for gfind... no
checking for find... /nix/store/sq0w0jchkjqbxl47h52kfwa33qp1adfh-findutils-4.9.0/bin/find
checking for sort... /nix/store/zx8aqgdy735qzk81glfwil6mbi6ddqb1-coreutils-9.4/bin/sort
checking for GHC version date... given 9.9.20231121
checking for GHC Git commit id... given 955520c6c4f07187b6d5e4770ecf681cc78374f2
checking for ghc... /nix/store/sq63pzmkygg0k7asd9hhkwfqkzgcrkfa-ghc-9.6.3/bin/ghc
checking version of ghc... 9.6.3
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... javascript-unknown-ghcjs
configure: GHC build : x86_64-unknown-linux
configure: GHC host : x86_64-unknown-linux
configure: GHC target : javascript-unknown-ghcjs
checking for sh... /nix/store/q8qq40xg2grfh9ry1d9x4g7lq4ra7n81-bash-5.2-p21/bin/sh
checking whether target supports a registerised ABI... yes
checking whether target supports tables next to code... yes
checking for path to top of build tree... /build/ghc-955520c
checking for javascript-unknown-ghcjs-gcc... /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emcc
checking for javascript-unknown-ghcjs-g++... /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/em++
checking for javascript-unknown-ghcjs-nm... /nix/store/m95vr0y916p5lxfpzh3nwvkak87whrc6-emscripten-llvm-3.1.50/bin/llvm-nm
checking for javascript-unknown-ghcjs-ar... /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emar
checking for javascript-unknown-ghcjs-ranlib... /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emranlib
checking for javascript-unknown-ghcjs-objdump... no
checking for objdump... /nix/store/sfgnb6rr428bssyrs54d6d0vv2avi95c-gcc-wrapper-12.3.0/bin/objdump
checking for javascript-unknown-ghcjs-windres... no
checking for windres... no
checking for javascript-unknown-ghcjs-genlib... no
checking for genlib... no
checking for javascript-unknown-ghcjs-cc... /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... yes
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emcc accepts -g... yes
checking for /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emcc option to enable C11 features... none needed
checking whether the compiler supports GNU C++... yes
checking whether /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/em++ accepts -g... yes
checking for /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/em++ option to enable C++11 features... none needed
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for wchar.h... yes
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking emsdk version... 3.1.50
checking for javascript-unknown-ghcjs-ld... /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emcc
checking for javascript-unknown-ghcjs-nm... /nix/store/m95vr0y916p5lxfpzh3nwvkak87whrc6-emscripten-llvm-3.1.50/bin/llvm-nm
configure: Setting cmd
checking for ld.gold object merging bug (binutils 22266)... configure: Checking whether /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emcc can merge objects
checking whether ld is GNU ld... NO
checking whether ld understands -no_compact_unwind... no
checking whether ld understands -filelist... no
checking whether ld supports -single_module... no
checking for javascript-unknown-ghcjs-nm... (cached) /nix/store/m95vr0y916p5lxfpzh3nwvkak87whrc6-emscripten-llvm-3.1.50/bin/llvm-nm
checking for javascript-unknown-ghcjs-ranlib... /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emranlib
checking for javascript-unknown-ghcjs-strip... /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emstrip
checking for javascript-unknown-ghcjs-otool... no
checking for javascript-unknown-ghcjs-install_name_tool... no
checking for gawk... gawk
checking for javascript-unknown-ghcjs-llc-15... no
checking for javascript-unknown-ghcjs-llc-15.0... no
checking for javascript-unknown-ghcjs-llc15... no
checking for javascript-unknown-ghcjs-llc-14... no
checking for javascript-unknown-ghcjs-llc-14.0... no
checking for javascript-unknown-ghcjs-llc14... no
checking for javascript-unknown-ghcjs-llc-13... no
checking for javascript-unknown-ghcjs-llc-13.0... no
checking for javascript-unknown-ghcjs-llc13... no
checking for javascript-unknown-ghcjs-llc... no
checking for llc-15... no
checking for llc-15.0... no
checking for llc15... no
checking for llc-14... no
checking for llc-14.0... no
checking for llc14... no
checking for llc-13... no
checking for llc-13.0... no
checking for llc13... no
checking for llc... no
checking for javascript-unknown-ghcjs-opt-15... no
checking for javascript-unknown-ghcjs-opt-15.0... no
checking for javascript-unknown-ghcjs-opt15... no
checking for javascript-unknown-ghcjs-opt-14... no
checking for javascript-unknown-ghcjs-opt-14.0... no
checking for javascript-unknown-ghcjs-opt14... no
checking for javascript-unknown-ghcjs-opt-13... no
checking for javascript-unknown-ghcjs-opt-13.0... no
checking for javascript-unknown-ghcjs-opt13... no
checking for javascript-unknown-ghcjs-opt... no
checking for opt-15... no
checking for opt-15.0... no
checking for opt15... no
checking for opt-14... no
checking for opt-14.0... no
checking for opt14... no
checking for opt-13... no
checking for opt-13.0... no
checking for opt13... no
checking for opt... no
configure: Creating links for headers shared by the RTS and compiler
configure: done.
configure: Creating links for in-tree file handling routines
configure: Routines in place. Packages can now be build normally.
configure: Creating links for ghci wrapper
configure: done.
checking whether #! works in shell scripts... yes
checking version of gcc... checking version of gcc... 17.0.6
17.0.6
checking whether CC supports flags passed by GHC when compiling via C... yes
checking whether C compiler supports __atomic_ builtins... yes
checking whether -latomic is needed for sub-word-sized atomic operations... failed
configure: error: sub-word-sized atomic operations are not available.
emconfigure: error: './configure --prefix=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121 --bindir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/bin --sbindir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/sbin --includedir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/include --oldincludedir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/include --mandir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/share/man --infodir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/share/info --docdir=/nix/store/4f44y7awfa55rx2rpkjhrarj6bq3c3cr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121-doc/share/doc/javascript-unknown-ghcjs-ghc-native-bignum --libdir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/lib --libexecdir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/libexec --localedir=/nix/store/0xl0fnpbkm0wk0577pnhg9bn85anbngr-javascript-unknown-ghcjs-ghc-native-bignum-9.9.20231121/share/locale --datadir=$doc/share/doc/ghc --with-curses-includes=/nix/store/ifx5q9x3vcck3b01wb9h47x7va00snkd-ncurses-6.4-dev/include --with-curses-libraries=/nix/store/fmkdf1b03w5v9yzk2mm3b4yqg1gwhrf5-ncurses-6.4/lib --enable-bootstrap-with-devel-snapshot --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=javascript-unknown-ghcjs' failed (returned 1)
This appears to be due to a crash in emscripten. config.log excerpt:
configure:11072: /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emcc -o conftest -g -O2 conftest.c >&5
cache:INFO: generating system asset: symbol_lists/ca268257111341de6e8b70bd0a7346c535bf441b.json... (this will be cached in "/build/ghc-955520c/emcache.UPgniacZMQ/symbol_lists/ca268257111341de6e8b70bd0a7346c535bf441b.json" for subsequent builds)
cache:INFO: - ok
cache:INFO: generating system library: sysroot/lib/wasm32-emscripten/libstubs.a... (this will be cached in "/build/ghc-955520c/emcache.UPgniacZMQ/sysroot/lib/wasm32-emscripten/libstubs.a" for subsequent builds)
Traceback (most recent call last):
Traceback (most recent call last):
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 1609, in <module>
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 1609, in <module>
sys.exit(main(sys.argv))
sys.exit(main(sys.argv))
^^^^^^^^^^^^^^
^^^^^^^^^^^^^^
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 81, in inner
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 81, in inner
return func(*args, **kwds)
return func(*args, **kwds)
^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 1602, in main
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 1602, in main
ret = run(args)
ret = run(args)
^^^^^^^^^
^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 638, in run
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 638, in run
linker_inputs = phase_compile_inputs(options, state, newargs, input_files)
linker_inputs = phase_compile_inputs(options, state, newargs, input_files)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 81, in inner
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 81, in inner
return func(*args, **kwds)
return func(*args, **kwds)
^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 974, in phase_compile_inputs
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 974, in phase_compile_inputs
system_libs.ensure_sysroot()
system_libs.ensure_sysroot()
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 81, in inner
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 81, in inner
return func(*args, **kwds)
return func(*args, **kwds)
^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/system_libs.py", line 2428, in ensure_sysroot
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/system_libs.py", line 2428, in ensure_sysroot
cache.get('sysroot_install.stamp', install_system_headers, what='system headers')
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/cache.py", line 157, in get
cache.get('sysroot_install.stamp', install_system_headers, what='system headers')
with lock(shortname):
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 137, in __enter__
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/cache.py", line 157, in get
return next(self.gen)
^^^^^^^^^^^^^^
with lock(shortname):
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/cache.py", line 61, in lock
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 137, in __enter__
acquire_cache_lock(reason)
return next(self.gen)
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/cache.py", line 35, in acquire_cache_lock
^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/cache.py", line 61, in lock
assert 'EM_CACHE_IS_LOCKED' not in os.environ, f'attempt to lock the cache while a parent process is holding the lock ({reason})'
acquire_cache_lock(reason)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/cache.py", line 35, in acquire_cache_lock
AssertionError: attempt to lock the cache while a parent process is holding the lock (sysroot_install.stamp)
assert 'EM_CACHE_IS_LOCKED' not in os.environ, f'attempt to lock the cache while a parent process is holding the lock ({reason})'
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: attempt to lock the cache while a parent process is holding the lock (sysroot_install.stamp)
emcc: error: Subprocess 1/2 failed (returned 1)! (cmdline: /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emcc -c -O2 -Wall -fno-unroll-loops -g -sSTRICT -Werror -I/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/system/lib/libc/musl/src/include -DNDEBUG ../../../../../nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/system/lib/libc/emscripten_syscall_stubs.c)
configure:11072: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "The Glorious Glasgow Haskell Compilation System"
| #define PACKAGE_TARNAME "ghc-9.9"
| #define PACKAGE_VERSION "9.9"
| #define PACKAGE_STRING "The Glorious Glasgow Haskell Compilation System 9.9"
| #define PACKAGE_BUGREPORT "glasgow-haskell-bugs@haskell.org"
| #define PACKAGE_URL ""
| #define HAVE_STDIO_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_WCHAR_H 1
| #define STDC_HEADERS 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define _HPUX_ALT_XOPEN_SOCKET_API 1
| #define _NETBSD_SOURCE 1
| #define _OPENBSD_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1
| #define __STDC_WANT_IEC_60559_BFP_EXT__ 1
| #define __STDC_WANT_IEC_60559_DFP_EXT__ 1
| #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1
| #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1
| #define __STDC_WANT_LIB_EXT2__ 1
| #define __STDC_WANT_MATH_SPEC_FUNCS__ 1
| #define _TANDEM_SOURCE 1
| #define __EXTENSIONS__ 1
| #define sUPPORTED_LLVM_VERSION_MIN (13)
| #define sUPPORTED_LLVM_VERSION_MAX (16)
| /* end confdefs.h. */
| unsigned char a;
| int
| main (void)
| {
| __atomic_fetch_or(&a, 1, __ATOMIC_RELAXED);
| ;
| return 0;
| }
configure:11093: /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emcc -o conftest -g -O2 conftest.c -latomic >&5
cache:INFO: generating system library: sysroot/lib/wasm32-emscripten/libstubs.a... (this will be cached in "/build/ghc-955520c/emcache.UPgniacZMQ/sysroot/lib/wasm32-emscripten/libstubs.a" for subsequent builds)
Traceback (most recent call last):
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 1609, in <module>
sys.exit(main(sys.argv))
^^^^^^^^^^^^^^
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 81, in inner
return func(*args, **kwds)
^^^^^^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 1602, in main
ret = run(args)
^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 638, in run
linker_inputs = phase_compile_inputs(options, state, newargs, input_files)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 81, in inner
return func(*args, **kwds)
^^^^^^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 974, in phase_compile_inputs
system_libs.ensure_sysroot()
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 81, in inner
return func(*args, **kwds)
^^^^^^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/system_libs.py", line 2428, in ensure_sysroot
cache.get('sysroot_install.stamp', install_system_headers, what='system headers')
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/cache.py", line 157, in get
with lock(shortname):
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 137, in __enter__
return next(self.gen)
^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/cache.py", line 61, in lock
acquire_cache_lock(reason)
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/cache.py", line 35, in acquire_cache_lock
assert 'EM_CACHE_IS_LOCKED' not in os.environ, f'attempt to lock the cache while a parent process is holding the lock ({reason})'
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: attempt to lock the cache while a parent process is holding the lock (sysroot_install.stamp)
Traceback (most recent call last):
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 1609, in <module>
sys.exit(main(sys.argv))
^^^^^^^^^^^^^^
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 81, in inner
return func(*args, **kwds)
^^^^^^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 1602, in main
ret = run(args)
^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 638, in run
linker_inputs = phase_compile_inputs(options, state, newargs, input_files)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 81, in inner
return func(*args, **kwds)
^^^^^^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/emcc.py", line 974, in phase_compile_inputs
system_libs.ensure_sysroot()
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 81, in inner
return func(*args, **kwds)
^^^^^^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/system_libs.py", line 2428, in ensure_sysroot
cache.get('sysroot_install.stamp', install_system_headers, what='system headers')
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/cache.py", line 157, in get
with lock(shortname):
File "/nix/store/5k91mg4qjylxbfvrv748smfh51ppjq0g-python3-3.11.6/lib/python3.11/contextlib.py", line 137, in __enter__
return next(self.gen)
^^^^^^^^^^^^^^
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/cache.py", line 61, in lock
acquire_cache_lock(reason)
File "/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/tools/cache.py", line 35, in acquire_cache_lock
assert 'EM_CACHE_IS_LOCKED' not in os.environ, f'attempt to lock the cache while a parent process is holding the lock ({reason})'
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: attempt to lock the cache while a parent process is holding the lock (sysroot_install.stamp)
emcc: error: Subprocess 1/2 failed (returned 1)! (cmdline: /nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/bin/emcc -c -O2 -Wall -fno-unroll-loops -g -sSTRICT -Werror -I/nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/system/lib/libc/musl/src/include -DNDEBUG ../../../../../nix/store/4yx9dfpdx4vkpdj7ss3mnimx9wbfgbha-emscripten-3.1.50/share/emscripten/system/lib/libc/emscripten_syscall_stubs.c)
configure:11093: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "The Glorious Glasgow Haskell Compilation System"
| #define PACKAGE_TARNAME "ghc-9.9"
| #define PACKAGE_VERSION "9.9"
| #define PACKAGE_STRING "The Glorious Glasgow Haskell Compilation System 9.9"
| #define PACKAGE_BUGREPORT "glasgow-haskell-bugs@haskell.org"
| #define PACKAGE_URL ""
| #define HAVE_STDIO_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_WCHAR_H 1
| #define STDC_HEADERS 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define _HPUX_ALT_XOPEN_SOCKET_API 1
| #define _NETBSD_SOURCE 1
| #define _OPENBSD_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1
| #define __STDC_WANT_IEC_60559_BFP_EXT__ 1
| #define __STDC_WANT_IEC_60559_DFP_EXT__ 1
| #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1
| #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1
| #define __STDC_WANT_LIB_EXT2__ 1
| #define __STDC_WANT_MATH_SPEC_FUNCS__ 1
| #define _TANDEM_SOURCE 1
| #define __EXTENSIONS__ 1
| #define sUPPORTED_LLVM_VERSION_MIN (13)
| #define sUPPORTED_LLVM_VERSION_MAX (16)
| /* end confdefs.h. */
| unsigned char a;
| int
| main (void)
| {
| __atomic_fetch_or(&a, 1, __ATOMIC_RELAXED);
| ;
| return 0;
| }
configure:11102: result: failed
configure:11104: error: sub-word-sized atomic operations are not available.
Is it a crash or cache mishandling? I remember another PR we merged for removing cache stuff.
Many apologies for all this. The mention of atomic operations reminds me of https://github.com/NixOS/nixpkgs/pull/223282, which makes my hunch that this is about the bump to LLVM 17, which the crash also says is unsupported. Emscripten runs on tip of tree LLVM.
If this is agreeable, in a few hours I can add a derivation back for 3.1.47 so GHC can keep depending on that. I’m not sure how else to fix the other caching issue in emscripten. It seems like the various libs just don’t build in all the variants any more, and I assumed the caching was just to speed things up for downstream derivations.
@willcohen LLVM HEAD not being available doesn't seem to be the problem to me, since 3.1.50 explicitly states it uses 17.0.4? If the LLVM update is the issue, emscripten 3.1.49 should work, right?
Good point. My hunch about LLVM was a combo of
the ghc log showing
| #define sUPPORTED_LLVM_VERSION_MIN (13)
| #define sUPPORTED_LLVM_VERSION_MAX (16)
and 2) https://github.com/NixOS/nixpkgs/pull/223282#issuecomment-1534715803, which was in the end just a need to change the include directory path names to use only major version numbers.
I'll adjust #278974 to go all the way to 3.1.49.
@willcohen I just want to say that I am amazed by your professionalism and your prompt answer in this issue, I am humbled by your skills. Thank you for being part of this community.
Thanks, @RaitoBezarius! I'm much more appreciative of all the collective work you all do to keep this crazy thing working.
@willcohen LLVM HEAD not being available doesn't seem to be the problem to me, since 3.1.50 explicitly states it uses 17.0.4? If the LLVM update is the issue, emscripten 3.1.49 should work, right?
Right @sternenseemann -- this is where we enter a funny territory. Emscripten very explicitly doesn't support any specific release of LLVM, but specifically only whatever is HEAD at the time a version number is cut (https://github.com/emscripten-core/emscripten/issues/11362). I often come up with build failures at whatever time I try to bump the emscripten derivation, since it seems like this rapid cadence means that it's rare for packaging distributions to keep up. If we're early enough in the LLVM cycle to request backports, sometimes whatever new tip of tree stuff emscripten needs can get put into a point release, but more likely (as with https://github.com/NixOS/nixpkgs/pull/229718), emscripten sometimes needs some patches to stable LLVM (and therefore that runs through stable here), until the next major release gets cut.
For this PR, "support" of LLVM 17.0.4 just meant that when I tried to build it, it worked and passed the tests. Should ofborg have caught this before, or is there another set of tests I should have run through before to make sure GHC was good?
|
gharchive/pull-request
| 2023-11-25T14:26:05 |
2025-04-01T04:55:26.360752
|
{
"authors": [
"RaitoBezarius",
"nixos-discourse",
"sternenseemann",
"willcohen"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/269904",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2026899312
|
rio: v0.0.28 -> v0.0.29
Description of changes
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
24.05 Release Notes (or backporting 23.05 and 23.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
Build is failing in Darwin, is this expected?
@thiagokokada do you have the log? I don't have access to Darwin device.
@thiagokokada do you have the log? I don't have access to Darwin device.
I am looking at the Ofborg logs.
hm... I have no idea how to fix this
How about leaving the broken darwin build and fixing it at another pr, marking it as broken = stdenv.isDarwin;.
|
gharchive/pull-request
| 2023-12-05T18:48:31 |
2025-04-01T04:55:26.374054
|
{
"authors": [
"TornaxO7",
"oluceps",
"otavio",
"thiagokokada"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/272322",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2040586080
|
python311Packages.dvc-objects: 1.4.9 -> 2.0.1
Diff: https://github.com/iterative/dvc-objects/compare/refs/tags/1.4.9...2.0.1
Changelog: https://github.com/iterative/dvc-objects/releases/tag/2.0.1
Description of changes
Things done
Built on platform(s)
[ ] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
24.05 Release Notes (or backporting 23.05 and 23.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
Result of nixpkgs-review pr 274086 run on x86_64-linux 1
38 packages built:
dvc (python311Packages.dvc)
dvc-with-remotes
dvc-with-remotes.dist
dvc.dist (python311Packages.dvc.dist)
python310Packages.dvc
python310Packages.dvc-azure
python310Packages.dvc-azure.dist
python310Packages.dvc-data
python310Packages.dvc-data.dist
python310Packages.dvc-gs
python310Packages.dvc-gs.dist
python310Packages.dvc-http
python310Packages.dvc-http.dist
python310Packages.dvc-objects
python310Packages.dvc-objects.dist
python310Packages.dvc-s3
python310Packages.dvc-s3.dist
python310Packages.dvc-ssh
python310Packages.dvc-ssh.dist
python310Packages.dvc.dist
python310Packages.dvclive
python310Packages.dvclive.dist
python311Packages.dvc-azure
python311Packages.dvc-azure.dist
python311Packages.dvc-data
python311Packages.dvc-data.dist
python311Packages.dvc-gs
python311Packages.dvc-gs.dist
python311Packages.dvc-http
python311Packages.dvc-http.dist
python311Packages.dvc-objects
python311Packages.dvc-objects.dist
python311Packages.dvc-s3
python311Packages.dvc-s3.dist
python311Packages.dvc-ssh
python311Packages.dvc-ssh.dist
python311Packages.dvclive
python311Packages.dvclive.dist
|
gharchive/pull-request
| 2023-12-13T22:48:11 |
2025-04-01T04:55:26.387280
|
{
"authors": [
"fabaff"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/274086",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2044632527
|
kyverno: 1.10.5 -> 1.11.1
Automatic update generated by nixpkgs-update tools. This update was made based on information from https://repology.org/project/kyverno/versions.
meta.description for kyverno is: Kubernetes Native Policy Management
meta.homepage for kyverno is: https://kyverno.io/
meta.changelog for kyverno is: https://github.com/kyverno/kyverno/releases/tag/v1.11.1
Updates performed
Golang update
To inspect upstream changes
Release on GitHub
Compare changes on GitHub
Impact
Checks done (click to expand)
built on NixOS
Warning: a test defined in passthru.tests did not pass
found 1.11.1 with grep in /nix/store/7np413na8qzqzmqvc8w7nj7zrkqsr4lf-kyverno-1.11.1
found 1.11.1 in filename of file in /nix/store/7np413na8qzqzmqvc8w7nj7zrkqsr4lf-kyverno-1.11.1
Rebuild report (if merged into master) (click to expand)
1 total rebuild path(s)
1 package rebuild(s)
First fifty rebuilds by attrpath
kyverno
Instructions to test this update (click to expand)
Either download from Cachix:
nix-store -r /nix/store/7np413na8qzqzmqvc8w7nj7zrkqsr4lf-kyverno-1.11.1 \
--option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \
--option trusted-public-keys '
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
'
(The Cachix cache is only trusted for this store-path realization.)
For the Cachix download to work, your user must be in the trusted-users list or you can use sudo since root is effectively trusted.
Or, build yourself:
nix-build -A kyverno https://github.com/r-ryantm/nixpkgs/archive/f3b1d62c0e8d82661ff36c8edb94ca6eab03f116.tar.gz
Or:
nix build github:r-ryantm/nixpkgs/f3b1d62c0e8d82661ff36c8edb94ca6eab03f116#kyverno
After you've downloaded or built it, look at the files and if there are any, run the binaries:
ls -la /nix/store/7np413na8qzqzmqvc8w7nj7zrkqsr4lf-kyverno-1.11.1
ls -la /nix/store/7np413na8qzqzmqvc8w7nj7zrkqsr4lf-kyverno-1.11.1/bin
Pre-merge build results
We have automatically built all packages that will get rebuilt due to
this change.
This gives evidence on whether the upgrade will break dependent packages.
Note sometimes packages show up as failed to build independent of the
change, simply because they are already broken on the target branch.
Result of nixpkgs-review run on x86_64-linux 1
1 package built:
kyverno
Maintainer pings
cc @bryanasdev000 for testing.
There is something wrong on the tests, will check it later.
Automatic update generated by nixpkgs-update tools. This update was made based on information from https://repology.org/project/kyverno/versions.
meta.description for kyverno is: Kubernetes Native Policy Management
meta.homepage for kyverno is: https://kyverno.io/
meta.changelog for kyverno is: https://github.com/kyverno/kyverno/releases/tag/v1.11.2
Updates performed
Golang update
To inspect upstream changes
Release on GitHub
Compare changes on GitHub
Impact
Checks done
built on NixOS
Warning: a test defined in passthru.tests did not pass
found 1.11.2 with grep in /nix/store/71ghbijbal7122syp34rzazaa3mpaiav-kyverno-1.11.2
found 1.11.2 in filename of file in /nix/store/71ghbijbal7122syp34rzazaa3mpaiav-kyverno-1.11.2
Rebuild report (if merged into master) (click to expand)
1 total rebuild path(s)
1 package rebuild(s)
First fifty rebuilds by attrpath
kyverno
Instructions to test this update (click to expand)
Either download from Cachix:
nix-store -r /nix/store/71ghbijbal7122syp34rzazaa3mpaiav-kyverno-1.11.2 \
--option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \
--option trusted-public-keys '
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
'
(The Cachix cache is only trusted for this store-path realization.)
For the Cachix download to work, your user must be in the trusted-users list or you can use sudo since root is effectively trusted.
Or, build yourself:
nix-build -A kyverno https://github.com/r-ryantm/nixpkgs/archive/05f7f90deef5d7765251a200098fd65168d84195.tar.gz
Or:
nix build github:r-ryantm/nixpkgs/05f7f90deef5d7765251a200098fd65168d84195#kyverno
After you've downloaded or built it, look at the files and if there are any, run the binaries:
ls -la /nix/store/71ghbijbal7122syp34rzazaa3mpaiav-kyverno-1.11.2
ls -la /nix/store/71ghbijbal7122syp34rzazaa3mpaiav-kyverno-1.11.2/bin
Pre-merge build results
We have automatically built all packages that will get rebuilt due to
this change.
This gives evidence on whether the upgrade will break dependent packages.
Note sometimes packages show up as failed to build independent of the
change, simply because they are already broken on the target branch.
Result of nixpkgs-review run on x86_64-linux 1
1 package built:
kyverno
Maintainer pings
cc @bryanasdev000 for testing.
Automatic update generated by nixpkgs-update tools. This update was made based on information from https://github.com/kyverno/kyverno/releases.
meta.description for kyverno is: Kubernetes Native Policy Management
meta.homepage for kyverno is: https://kyverno.io/
meta.changelog for kyverno is: https://github.com/kyverno/kyverno/releases/tag/v1.11.3
Updates performed
Golang update
To inspect upstream changes
Release on GitHub
Compare changes on GitHub
Impact
Checks done
built on NixOS
Warning: a test defined in passthru.tests did not pass
found 1.11.3 with grep in /nix/store/gzkv7sj0my7ipz1g80mang93g8fgn46h-kyverno-1.11.3
found 1.11.3 in filename of file in /nix/store/gzkv7sj0my7ipz1g80mang93g8fgn46h-kyverno-1.11.3
Rebuild report (if merged into master) (click to expand)
1 total rebuild path(s)
1 package rebuild(s)
First fifty rebuilds by attrpath
kyverno
Instructions to test this update (click to expand)
Either download from Cachix:
nix-store -r /nix/store/gzkv7sj0my7ipz1g80mang93g8fgn46h-kyverno-1.11.3 \
--option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \
--option trusted-public-keys '
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
'
(The Cachix cache is only trusted for this store-path realization.)
For the Cachix download to work, your user must be in the trusted-users list or you can use sudo since root is effectively trusted.
Or, build yourself:
nix-build -A kyverno https://github.com/r-ryantm/nixpkgs/archive/9b5f356390907a5a01546c16cff8732bfa8b0622.tar.gz
Or:
nix build github:r-ryantm/nixpkgs/9b5f356390907a5a01546c16cff8732bfa8b0622#kyverno
After you've downloaded or built it, look at the files and if there are any, run the binaries:
ls -la /nix/store/gzkv7sj0my7ipz1g80mang93g8fgn46h-kyverno-1.11.3
ls -la /nix/store/gzkv7sj0my7ipz1g80mang93g8fgn46h-kyverno-1.11.3/bin
Pre-merge build results
We have automatically built all packages that will get rebuilt due to
this change.
This gives evidence on whether the upgrade will break dependent packages.
Note sometimes packages show up as failed to build independent of the
change, simply because they are already broken on the target branch.
Result of nixpkgs-review run on x86_64-linux 1
1 package built:
kyverno
Maintainer pings
cc @bryanasdev000 for testing.
https://github.com/NixOS/nixpkgs/pull/280222 should supersede this.
|
gharchive/pull-request
| 2023-12-16T06:36:20 |
2025-04-01T04:55:26.415913
|
{
"authors": [
"bryanasdev000",
"r-ryantm"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/274644",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2050475961
|
linuxPackages.nvidia_x11_vulkan_beta: 535.43.20 -> 535.43.22
Description of changes
December 19th, 2023 - Windows 538.09, Linux 535.43.22
New:
VK_KHR_maintenance6
VK_KHR_video_maintenance1
Final Vulkan Video Extensions for Accelerated H.264 and H.265 Encode
VK_KHR_video_encode_queue
VK_KHR_video_encode_h264
VK_KHR_video_encode_h265
Fixes:
Improve image creation speed when using VK_NV_extended_sparse_address_space
Things done
Built on platform(s)
[ ] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
24.05 Release Notes (or backporting 23.05 and 23.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
Result of nixpkgs-review pr 275634 run on x86_64-linux 1
5 packages failed to build:
linuxKernel.packages.linux_testing_bcachefs.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_testing_bcachefs.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_testing_bcachefs.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_testing_bcachefs.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_testing_bcachefs.nvidia_x11_vulkan_beta_open
100 packages built:
linuxKernel.packages.linux_4_19.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_4_19.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_4_19.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_4_19.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_4_19.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_4_19_hardened.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_4_19_hardened.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_4_19_hardened.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_4_19_hardened.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_4_19_hardened.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_5_10.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_5_10.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_5_10.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_5_10.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_5_10.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_5_10_hardened.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_5_10_hardened.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_5_10_hardened.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_5_10_hardened.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_5_10_hardened.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_5_15.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_5_15.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_5_15.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_5_15.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_5_15.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_5_15_hardened.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_5_15_hardened.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_5_15_hardened.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_5_15_hardened.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_5_15_hardened.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_5_4.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_5_4.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_5_4.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_5_4.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_5_4.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_5_4_hardened.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_5_4_hardened.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_5_4_hardened.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_5_4_hardened.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_5_4_hardened.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_6_1.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_6_1.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_6_1.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_6_1.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_6_1.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_hardened.nvidia_x11_vulkan_beta (linuxKernel.packages.linux_6_1_hardened.nvidia_x11_vulkan_beta)
linuxKernel.packages.linux_hardened.nvidia_x11_vulkan_beta.bin (linuxKernel.packages.linux_6_1_hardened.nvidia_x11_vulkan_beta.bin)
linuxKernel.packages.linux_hardened.nvidia_x11_vulkan_beta.firmware (linuxKernel.packages.linux_6_1_hardened.nvidia_x11_vulkan_beta.firmware)
linuxKernel.packages.linux_hardened.nvidia_x11_vulkan_beta.lib32 (linuxKernel.packages.linux_6_1_hardened.nvidia_x11_vulkan_beta.lib32)
linuxKernel.packages.linux_hardened.nvidia_x11_vulkan_beta_open (linuxKernel.packages.linux_6_1_hardened.nvidia_x11_vulkan_beta_open)
linuxKernel.packages.linux_6_5.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_6_5.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_6_5.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_6_5.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_6_5.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_6_5_hardened.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_6_5_hardened.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_6_5_hardened.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_6_5_hardened.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_6_5_hardened.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_6_6.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_6_6.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_6_6.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_6_6.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_6_6.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_6_6_hardened.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_6_6_hardened.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_6_6_hardened.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_6_6_hardened.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_6_6_hardened.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_latest_libre.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_latest_libre.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_latest_libre.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_latest_libre.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_latest_libre.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_libre.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_libre.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_libre.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_libre.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_libre.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_lqx.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_lqx.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_lqx.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_lqx.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_lqx.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_xanmod.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_xanmod.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_xanmod.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_xanmod.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_xanmod.nvidia_x11_vulkan_beta_open
linuxKernel.packages.linux_xanmod_latest.nvidia_x11_vulkan_beta (linuxKernel.packages.linux_xanmod_stable.nvidia_x11_vulkan_beta)
linuxKernel.packages.linux_xanmod_latest.nvidia_x11_vulkan_beta.bin (linuxKernel.packages.linux_xanmod_stable.nvidia_x11_vulkan_beta.bin)
linuxKernel.packages.linux_xanmod_latest.nvidia_x11_vulkan_beta.firmware (linuxKernel.packages.linux_xanmod_stable.nvidia_x11_vulkan_beta.firmware)
linuxKernel.packages.linux_xanmod_latest.nvidia_x11_vulkan_beta.lib32 (linuxKernel.packages.linux_xanmod_stable.nvidia_x11_vulkan_beta.lib32)
linuxKernel.packages.linux_xanmod_latest.nvidia_x11_vulkan_beta_open (linuxKernel.packages.linux_xanmod_stable.nvidia_x11_vulkan_beta_open)
linuxKernel.packages.linux_zen.nvidia_x11_vulkan_beta
linuxKernel.packages.linux_zen.nvidia_x11_vulkan_beta.bin
linuxKernel.packages.linux_zen.nvidia_x11_vulkan_beta.firmware
linuxKernel.packages.linux_zen.nvidia_x11_vulkan_beta.lib32
linuxKernel.packages.linux_zen.nvidia_x11_vulkan_beta_open
|
gharchive/pull-request
| 2023-12-20T12:41:31 |
2025-04-01T04:55:26.437618
|
{
"authors": [
"Kiskae"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/275634",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2056656883
|
cjson: 1.7.16 -> 1.7.17
Automatic update generated by nixpkgs-update tools. This update was made based on information from https://repology.org/project/cjson/versions.
meta.description for cjson is: Ultralightweight JSON parser in ANSI C
meta.homepage for cjson is: https://github.com/DaveGamble/cJSON
Updates performed
Version update
To inspect upstream changes
Release on GitHub
Compare changes on GitHub
Impact
Checks done
built on NixOS
The tests defined in passthru.tests, if any, passed
found 1.7.17 with grep in /nix/store/bimif3a95nwksh7wrp4n0h1gfkmmpkja-cjson-1.7.17
found 1.7.17 in filename of file in /nix/store/bimif3a95nwksh7wrp4n0h1gfkmmpkja-cjson-1.7.17
Rebuild report (if merged into master) (click to expand)
46 total rebuild path(s)
46 package rebuild(s)
First fifty rebuilds by attrpath
cjson
collectd
domoticz
ebusd
etlegacy
gnu-cobol
librist
mosquitto
obs-studio
obs-studio-plugins.advanced-scene-switcher
obs-studio-plugins.droidcam-obs
obs-studio-plugins.input-overlay
obs-studio-plugins.looking-glass-obs
obs-studio-plugins.obs-3d-effect
obs-studio-plugins.obs-backgroundremoval
obs-studio-plugins.obs-command-source
obs-studio-plugins.obs-freeze-filter
obs-studio-plugins.obs-gradient-source
obs-studio-plugins.obs-gstreamer
obs-studio-plugins.obs-hyperion
obs-studio-plugins.obs-livesplit-one
obs-studio-plugins.obs-move-transition
obs-studio-plugins.obs-multi-rtmp
obs-studio-plugins.obs-mute-filter
obs-studio-plugins.obs-nvfbc
obs-studio-plugins.obs-pipewire-audio-capture
obs-studio-plugins.obs-replay-source
obs-studio-plugins.obs-rgb-levels-filter
obs-studio-plugins.obs-scale-to-sound
obs-studio-plugins.obs-shaderfilter
obs-studio-plugins.obs-source-clone
obs-studio-plugins.obs-source-record
obs-studio-plugins.obs-source-switcher
obs-studio-plugins.obs-teleport
obs-studio-plugins.obs-text-pthread
obs-studio-plugins.obs-transition-table
obs-studio-plugins.obs-tuna
obs-studio-plugins.obs-vaapi
obs-studio-plugins.obs-vertical-canvas
obs-studio-plugins.obs-vintage-filter
obs-studio-plugins.obs-vkcapture
obs-studio-plugins.obs-websocket
obs-studio-plugins.waveform
obs-studio-plugins.wlrobs
owntracks-recorder
pgmoneta
Instructions to test this update (click to expand)
Either download from Cachix:
nix-store -r /nix/store/bimif3a95nwksh7wrp4n0h1gfkmmpkja-cjson-1.7.17 \
--option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \
--option trusted-public-keys '
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
'
(The Cachix cache is only trusted for this store-path realization.)
For the Cachix download to work, your user must be in the trusted-users list or you can use sudo since root is effectively trusted.
Or, build yourself:
nix-build -A cjson https://github.com/r-ryantm/nixpkgs/archive/1f82cc66f052bf64f7b218dd1c82f3c0934d06bc.tar.gz
Or:
nix build github:r-ryantm/nixpkgs/1f82cc66f052bf64f7b218dd1c82f3c0934d06bc#cjson
After you've downloaded or built it, look at the files and if there are any, run the binaries:
ls -la /nix/store/bimif3a95nwksh7wrp4n0h1gfkmmpkja-cjson-1.7.17
ls -la /nix/store/bimif3a95nwksh7wrp4n0h1gfkmmpkja-cjson-1.7.17/bin
Pre-merge build results
We have automatically built all packages that will get rebuilt due to
this change.
This gives evidence on whether the upgrade will break dependent packages.
Note sometimes packages show up as failed to build independent of the
change, simply because they are already broken on the target branch.
Result of nixpkgs-review run on x86_64-linux 1
1 package marked as broken and skipped:
obs-studio-plugins.obs-hyperion
2 packages failed to build:
obs-studio-plugins.obs-ndi
obs-studio-plugins.obs-replay-source
44 packages built:
cjson
collectd
domoticz
ebusd
etlegacy
gnu-cobol
librist
mosquitto
obs-studio
obs-studio-plugins.advanced-scene-switcher
obs-studio-plugins.droidcam-obs
obs-studio-plugins.input-overlay
obs-studio-plugins.looking-glass-obs
obs-studio-plugins.obs-3d-effect
obs-studio-plugins.obs-backgroundremoval
obs-studio-plugins.obs-command-source
obs-studio-plugins.obs-freeze-filter
obs-studio-plugins.obs-gradient-source
obs-studio-plugins.obs-gstreamer
obs-studio-plugins.obs-livesplit-one
obs-studio-plugins.obs-move-transition
obs-studio-plugins.obs-multi-rtmp
obs-studio-plugins.obs-mute-filter
obs-studio-plugins.obs-nvfbc
obs-studio-plugins.obs-pipewire-audio-capture
obs-studio-plugins.obs-rgb-levels-filter
obs-studio-plugins.obs-scale-to-sound
obs-studio-plugins.obs-shaderfilter
obs-studio-plugins.obs-source-clone
obs-studio-plugins.obs-source-record
obs-studio-plugins.obs-source-switcher
obs-studio-plugins.obs-teleport
obs-studio-plugins.obs-text-pthread
obs-studio-plugins.obs-transition-table
obs-studio-plugins.obs-tuna
obs-studio-plugins.obs-vaapi
obs-studio-plugins.obs-vertical-canvas
obs-studio-plugins.obs-vintage-filter
obs-studio-plugins.obs-vkcapture
obs-studio-plugins.obs-websocket
obs-studio-plugins.waveform
obs-studio-plugins.wlrobs
owntracks-recorder
pgmoneta
Maintainer pings
cc @matthiasbeyer for testing.
Fixes CVE-2023-50471 and CVE-2023-50472.
|
gharchive/pull-request
| 2023-12-26T19:34:03 |
2025-04-01T04:55:26.451042
|
{
"authors": [
"LeSuisse",
"r-ryantm"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/276957",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2086855204
|
chromium: 120.0.6099.216 -> 120.0.6099.224
https://chromereleases.googleblog.com/2024/01/stable-channel-update-for-desktop_16.html
This update includes 4 security fixes.
CVEs:
CVE-2024-0517 CVE-2024-0518 CVE-2024-0519
Description of changes
Things done
Built on platform(s)
[ ] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
24.05 Release Notes (or backporting 23.05 and 23.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
Thanks for the quick review!
I had wanted to take a bit longer to understand how the derivatives are put together, but seeing as there are active exploits in the wild against the unpatched versions, I figured the quickest win here would be to follow what you did a week ago and get the patch in.
If you don't mind mentoring me a bit, I would love to help out with the minor / security patches to start.
|
gharchive/pull-request
| 2024-01-17T19:39:49 |
2025-04-01T04:55:26.461787
|
{
"authors": [
"dhl"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/281613",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2120244414
|
nextflow: 22.10.6 -> 23.10.1
Description of changes
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[x] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
24.05 Release Notes (or backporting 23.05 and 23.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
I am uncertain if this is the right place to mention this, but the metadata for the nextflow package is missing, and the source incorrectly points to the builder template rather than the proper file.
This pull request has been mentioned on NixOS Discourse. There might be relevant details there:
https://discourse.nixos.org/t/prs-in-distress/3604/94
Closing in favor of https://github.com/NixOS/nixpkgs/pull/339197 .
|
gharchive/pull-request
| 2024-02-06T08:41:43 |
2025-04-01T04:55:26.473487
|
{
"authors": [
"dileep-kishore",
"doronbehar",
"edmundmiller",
"nixos-discourse"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/286701",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
254875454
|
tor module: expose control socket
This exposes control socket of tor accessible to tor user and users in tor group
[x] Tested using sandboxing
(nix.useSandbox on NixOS,
or option build-use-sandbox in nix.conf
on non-NixOS)
Built on platform(s)
[x] NixOS
[ ] macOS
[ ] Linux
[ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
[ ] Tested compilation of all pkgs that depend on this change using nix-shell -p nox --run "nox-review wip"
[ ] Tested execution of all binary files (usually in ./result/bin/)
[x] Fits CONTRIBUTING.md.
I would prefer it were hidden behind an enable option.
Also, the service now has two preStarts (probably from git-rebase).
What do you sugest the option name to be as controlSocket should be by default set to some sane path i guess.
I mean one way would be controlSocket.enable and controlSocket.path options, as user would else need to know that /var/run/tor/control is where socket should be.
Jaka Hudoklin notifications@github.com writes:
I mean one way would be controlSocket.enable and controlSocket.path options, as user would else need to know that /var/run/tor/control is where socket should be.
To be honest, I would just remove the path option. Too much work to
make it configurable with sandboxing. Just controlSocket.enable is
fine.
Ok, fixed, is this fine now?
Yes, the new lines are fine, but the line
${optint "ControlPort" (toString cfg.controlPort)}
was recently reverted back to
${optint "ControlPort" cfg.controlPort}
in master (it was a bug).
Can you please rebase on top of master again? (Another reason to hate
GitHub with its overly strict "security model")
I pushed an updated version into #37827.
|
gharchive/pull-request
| 2017-09-03T13:44:03 |
2025-04-01T04:55:26.481810
|
{
"authors": [
"offlinehacker",
"oxij"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/28938",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2152514108
|
python312Packages.aioautomower: 2024.2.7 -> 2024.2.8
Automatic update generated by nixpkgs-update tools. This update was made based on information from passthru.updateScript.
meta.description for python312Packages.aioautomower is: Module to communicate with the Automower Connect API
meta.homepage for python312Packages.aioautomower is: https://github.com/Thomas55555/aioautomower
meta.changelog for python312Packages.aioautomower is: https://github.com/Thomas55555/aioautomower/releases/tag/2024.2.8
Updates performed
Ran passthru.UpdateScript
To inspect upstream changes
Impact
Checks done
built on NixOS
The tests defined in passthru.tests, if any, passed
found 2024.2.8 with grep in /nix/store/h344panva3pxp7nd73ln99jr83prhl9s-python3.12-aioautomower-2024.2.8
found 2024.2.8 in filename of file in /nix/store/h344panva3pxp7nd73ln99jr83prhl9s-python3.12-aioautomower-2024.2.8
Rebuild report (if merged into master) (click to expand)
2 total rebuild path(s)
2 package rebuild(s)
First fifty rebuilds by attrpath
python311Packages.aioautomower
python312Packages.aioautomower
Instructions to test this update (click to expand)
Either download from Cachix:
nix-store -r /nix/store/h344panva3pxp7nd73ln99jr83prhl9s-python3.12-aioautomower-2024.2.8 \
--option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \
--option trusted-public-keys '
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
'
(The Cachix cache is only trusted for this store-path realization.)
For the Cachix download to work, your user must be in the trusted-users list or you can use sudo since root is effectively trusted.
Or, build yourself:
nix-build -A python312Packages.aioautomower https://github.com/r-ryantm/nixpkgs/archive/85c90200cf46eb1cd7b04344296d23a1111a96db.tar.gz
Or:
nix build github:r-ryantm/nixpkgs/85c90200cf46eb1cd7b04344296d23a1111a96db#python312Packages.aioautomower
After you've downloaded or built it, look at the files and if there are any, run the binaries:
ls -la /nix/store/h344panva3pxp7nd73ln99jr83prhl9s-python3.12-aioautomower-2024.2.8
ls -la /nix/store/h344panva3pxp7nd73ln99jr83prhl9s-python3.12-aioautomower-2024.2.8/bin
Pre-merge build results
We have automatically built all packages that will get rebuilt due to
this change.
This gives evidence on whether the upgrade will break dependent packages.
Note sometimes packages show up as failed to build independent of the
change, simply because they are already broken on the target branch.
Result of nixpkgs-review run on x86_64-linux 1
2 packages built:
python311Packages.aioautomower
python312Packages.aioautomower
Maintainer pings
cc @fabaff for testing.
Superseded by #291319
|
gharchive/pull-request
| 2024-02-24T23:02:02 |
2025-04-01T04:55:26.491129
|
{
"authors": [
"fabaff",
"r-ryantm"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/291256",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2165517671
|
rPackages.bayesWatch: fixed build
Description of changes
Fixed build by adding boost to nativeBuildInputs and also tested basic functionality by running the example from the help files.
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
24.05 Release Notes (or backporting 23.05 and 23.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
Thanks, done!
|
gharchive/pull-request
| 2024-03-03T19:18:56 |
2025-04-01T04:55:26.500488
|
{
"authors": [
"b-rodrigues"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/293070",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2186029288
|
doc: fix and simplify stylesheets for the manuals, fix nrd bug
Description of changes
As discussed in https://github.com/NixOS/nixos-homepage/issues/1251, the Nixpkgs and NixOS manuals are now being rendered as-is on the new website. This "breaks" the manuals, because previously we relied on a very complex post-processing step (which was done on the homepage's repository) to get the manuals as we're all used to. This included using the stylesheets from the old homepage.
Since we can't rely on that anymore, I went through the trouble of understanding the steps that were being done in the old homepage, figuring out the final stylesheet rules, and then translating those rules back to the manuals as generated by Nixpkgs. This was done to avoid having to do all those complex steps anymore, I just want to simplify things.
As part of this simplification:
We don't need an overrides.css stylesheet anymore, so I merged all stylesheets into one.
I discovered the source of a bug that existed in the manuals as generated by Nixpkgs, but interestingly didn't exist after post-processing on the old homepage (likely because the old homepage did some XML-related processing which probably fixed the bug). This bug is now fixed in nixos-render-docs.
Ported the anchorjs script from the old homepage (and an extra one to call it), which is responsible for adding the links to the headers in the manuals. The scripts were previously added to the end of the manual, but since nixos-render-docs doesn't support that, I adapted them to work with the scripts at the top of the manual.
Note: the new stylesheets are not absolutely 1:1 with the old stylesheets, which relied on more stuff from the old homepage that I don't want to port over (mainly the custom fonts). In addition to that, I modified the stylesheets a bit to address this comment: https://github.com/NixOS/nixos-homepage/issues/1251#issuecomment-1996614285
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[x] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
24.05 Release Notes (or backporting 23.05 and 23.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
This is very good. Maybe throw in a Nix logo for good measure like in https://github.com/NixOS/nix/pull/9870
This pull request has been mentioned on NixOS Discourse. There might be relevant details there:
https://discourse.nixos.org/t/2024-03-14-documentation-team-meeting-notes-113/41462/1
I tried to look into it for a fixed amount of time, but couldn't find what's causing that. When the browser has enough width, the scroll bar doesn't show up, but as I reduced the browser's width, I could reproduce this behaviour.
My guess is that there is some content in this page that is causing this behaviour, but I can't find the content because there is just too much there. I looked into <code> boxes that have long lines, but in those cases the <code> box has a scroll bar as expected, so I don't know how they could be contributing to this behaviour. It's possible there is some other element that I couldn't find.
Alright let's not worry about it for now then, this is already much better than the current state, so let's merge!
|
gharchive/pull-request
| 2024-03-14T10:45:57 |
2025-04-01T04:55:26.515367
|
{
"authors": [
"DanielSidhion",
"fricklerhandwerk",
"infinisil",
"nixos-discourse"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/295847",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2216799519
|
widelands: 1.1 -> 1.2
Description of changes
New Widelands release v1.2.
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[x] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
[x] Tested integrated graphics / nvidia-offload
24.05 Release Notes (or backporting 23.05 and 23.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
built and ran on x86_64-linux
|
gharchive/pull-request
| 2024-03-31T06:07:54 |
2025-04-01T04:55:26.525623
|
{
"authors": [
"jcumming",
"lolbinarycat"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/300421",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2222093893
|
python312Packages.publicsuffixlist: 0.10.0.20240328 -> 0.10.0.20240403
Description of changes
Things done
Built on platform(s)
[ ] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
24.05 Release Notes (or backporting 23.05 and 23.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
Result of nixpkgs-review pr 301165 run on x86_64-linux 1
5 packages failed to build:
parsedmarc (python311Packages.parsedmarc)
parsedmarc.dist (python311Packages.parsedmarc.dist)
pretalx
pretalx.dist
pretalx.static
8 packages built:
python311Packages.checkdmarc
python311Packages.checkdmarc.dist
python311Packages.publicsuffixlist
python311Packages.publicsuffixlist.dist
python312Packages.publicsuffixlist
python312Packages.publicsuffixlist.dist
trustymail
trustymail.dist
pretalx (https://hydra.nixos.org/build/255122067) and parsedmarc (https://hydra.nixos.org/build/254980937) are already broken.
|
gharchive/pull-request
| 2024-04-03T07:13:08 |
2025-04-01T04:55:26.537447
|
{
"authors": [
"fabaff"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/301165",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
265103498
|
intecture-auth: 0.1.0 -> 0.1.2
Motivation for this change
Version update
Things done
[x] Tested using sandboxing (nix.useSandbox on NixOS, or option build-use-sandbox in nix.conf on non-NixOS)
Built on platform(s)
[x] NixOS
[ ] macOS
[ ] other Linux distributions
[ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
[ ] Tested compilation of all pkgs that depend on this change using nix-shell -p nox --run "nox-review wip"
[x] Tested execution of all binary files (usually in ./result/bin/)
[x] Fits CONTRIBUTING.md.
superseeded by https://github.com/NixOS/nixpkgs/pull/30372
|
gharchive/pull-request
| 2017-10-12T22:06:19 |
2025-04-01T04:55:26.542049
|
{
"authors": [
"Mic92",
"derchrisuk"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/30370",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2254483099
|
pcsx2: 1.7.5587 -> 1.7.5779
Description of changes
Diff: https://github.com/PCSX2/pcsx2/compare/v1.7.5587...v1.7.5779
~Depends on #305508 (which is the base of this branch).~ Merged.
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
24.05 Release Notes (or backporting 23.05 and 23.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
This pull request has been mentioned on NixOS Discourse. There might be relevant details there:
https://discourse.nixos.org/t/prs-ready-for-review/3032/3849
Waiting to know whether it's better to patch shaderc inside the package or in all-packages. (#309064)
@SuperSamus thanks a lot for continuously updating this package! As always I am very happy about your contribution.
Regarding the shaderc patch: IMHO it should be overriden in all-packages.nix. There are many other packages doing it this way as well. The pcsx2 derivation should be agnostic of its input and not try to override them, it cannot know what exact derivations are passed as input. It should basically just ask for a shaderc package and be happy with whatever it gets. The caller should make sure to pass the right one. If a package needs a special version of an input, it is always done via callPackage in all-packages.nix and this here is not different.
Further a fetch* variant should be preferred and used whenever possible like in the duckstation PR to not bloat nixpkgs unnecessarily.
I would however not be happy about moving it to the bottom in all-packages.nix like it was proposed in the duckstation PR. I appreciate its good intentions but in the end this will mess up the ordering in all-packages.nix even more since I expect only few people to notice and adhere to it. In the light of RCF140, eventually all default package calls will be removed from all-packages.nix anyway.
Run if result/bin/nixpkgs-check-by-name --base "$base" .; then
- Because pkgs/by-name/pc/pcsx2 exists, the attribute `pkgs.pcsx2` must be defined like
pcsx2 = callPackage ./../by-name/pc/pcsx2/package.nix { /* ... */ };
However, in this PR, a different `callPackage` is used. See the definition in pkgs/top-level/all-packages.nix:2752:
pcsx2 = qt6Packages.callPackage ../by-name/pc/pcsx2/package.nix {
shaderc = shaderc.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [
(fetchpatch {
url = "file://${pcsx2.src}/.github/workflows/scripts/common/shaderc-changes.patch";
hash = "sha256-cD/gZwo7ARoePbEsHGHV34sx6MomfNOM7BSZDH1NlZM=";
excludes = [
"CHANGES"
"CMakeLists.txt"
"libshaderc/CMakeLists.txt"
];
})
];
});
};
@SuperSamus thanks a lot for your work so far! Currently merging is blocked since there still are change requests that need to be addressed.
I'm waiting on what they decide to do on #309064 (which has the same exact problem).
Ok, all clear
Rebased, done what was done with DuckStation, and backported upstream patches to fix startup crashes
(Current master requires some stuff that nixpkgs doesn't have yet, like an updated SDL2 and Shaderc. One step at a time, this PR has been open long enough already.)
P.S.: we should have a team for emulators.
Anything left to do before this can be merged?
Tested locally. Thanks to everyone and thanks @SuperSamus for maintaining pcsx2 🙂
I had to dismiss the outdated review which blocked the merge.
|
gharchive/pull-request
| 2024-04-20T10:05:12 |
2025-04-01T04:55:26.557933
|
{
"authors": [
"AndersonTorres",
"SuperSamus",
"hrdinka",
"nixos-discourse"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/305509",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2255258525
|
vscode-extensions.github.copilot-chat: 0.13.2024022301 -> 0.14.2024032901
Description of changes
update github.copilot-chat from 0.13.2024022301 to 0.14.2024032901
Things done
I have checked that the installed packets work with vscode 1.88.1. (with extensionsFromVscodeMarketplace )
Result of nixpkgs-review pr 305830 run on x86_64-linux 1
1 package built:
vscode-extensions.github.copilot-chat
How will these continue ?
Well now that it's approved, we simply need to wait for someone with merge permissions to merge your PR!
|
gharchive/pull-request
| 2024-04-21T20:56:05 |
2025-04-01T04:55:26.561074
|
{
"authors": [
"Laurent2916",
"Tobi34"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/305830",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2286728465
|
opencl-headers: 2023.12.14 -> 2024.05.08
Automatic update generated by nixpkgs-update tools. This update was made based on information from https://github.com/KhronosGroup/OpenCL-Headers/releases.
meta.description for opencl-headers is: Khronos OpenCL headers version 2024.05.08
meta.homepage for opencl-headers is: https://www.khronos.org/registry/cl/
Updates performed
Version update
To inspect upstream changes
Release on GitHub
Compare changes on GitHub
Impact
Checks done
built on NixOS
Warning: a test defined in passthru.tests did not pass
found 2024.05.08 in filename of file in /nix/store/c3sm406d7fs5rgg3kzgr015dcpld8l94-opencl-headers-2024.05.08
Rebuild report (if merged into master) (click to expand)
555 total rebuild path(s)
555 package rebuild(s)
First fifty rebuilds by attrpath
MIDIVisualizer
actiona
aitrack
almanah
ansel
arcan
arcan-all-wrapped
arcan-wrapped
arrayfire
audiobookshelf
auto-multiple-choice
backgroundremover
blender
blender-hip
bottles
browsr
caffe
caffeWithCuda
cat9-wrapped
ccextractor
cctag
cgminer
chickenPackages_5.chickenEggs.opencl
citrix_workspace
citrix_workspace_23_09_0
citrix_workspace_23_11_0
citrix_workspace_24_02_0
cl
clblas
clblast
clfft
clinfo
clmagma
clpeak
computecpp
computecpp-unwrapped
cpu-x
crow-translate
crystfel
crystfel-headless
darktable
davinci-resolve
davinci-resolve-studio
deepin.deepin-camera
deepin.deepin-image-viewer
deepin.deepin-ocr-plugin-manager
deepin.deepin-screen-recorder
deepin.image-editor
deface
Instructions to test this update (click to expand)
Either download from Cachix:
nix-store -r /nix/store/c3sm406d7fs5rgg3kzgr015dcpld8l94-opencl-headers-2024.05.08 \
--option binary-caches 'https://cache.nixos.org/ https://nix-community.cachix.org/' \
--option trusted-public-keys '
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
'
(The Cachix cache is only trusted for this store-path realization.)
For the Cachix download to work, your user must be in the trusted-users list or you can use sudo since root is effectively trusted.
Or, build yourself:
nix-build -A opencl-headers https://github.com/r-ryantm/nixpkgs/archive/8ac5effc2f4a56febe7a9cd5213094ec98b07875.tar.gz
Or:
nix build github:r-ryantm/nixpkgs/8ac5effc2f4a56febe7a9cd5213094ec98b07875#opencl-headers
After you've downloaded or built it, look at the files and if there are any, run the binaries:
ls -la /nix/store/c3sm406d7fs5rgg3kzgr015dcpld8l94-opencl-headers-2024.05.08
ls -la /nix/store/c3sm406d7fs5rgg3kzgr015dcpld8l94-opencl-headers-2024.05.08/bin
Pre-merge build results
NixPkgs review skipped
Maintainer pings
@ofborg build opencl-headers
|
gharchive/pull-request
| 2024-05-09T01:28:23 |
2025-04-01T04:55:26.569172
|
{
"authors": [
"JohnRTitor",
"r-ryantm"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/310255",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2319581632
|
ladybird: 0-unstable-2024-03-16 -> 0-unstable-2024-05-26
Description of changes
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[x] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
24.11 Release Notes (or backporting 23.11 and 24.05 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
Result of nixpkgs-review pr 315151 run on aarch64-linux 1
1 package built:
ladybird
|
gharchive/pull-request
| 2024-05-27T17:51:00 |
2025-04-01T04:55:26.579044
|
{
"authors": [
"fgaz",
"getchoo"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/315151",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2341771941
|
beets-unstable: unstable-2024-03-16 -> 2.0.0-unstable-2024-05-25
Motivation for this change
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[ ] For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
22.05 Release Notes (or backporting 21.11 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] (Release notes changes) Ran nixos/doc/manual/md-to-db.sh to update generated release notes
[x] Fits CONTRIBUTING.md.
Thanks for the very quick PR!
I tried running nixpkgs-review and all builds under beetsPackages failed.
Result of nixpkgs-review pr 318334 run on x86_64-linux 1
10 packages failed to build:
beetsPackages.alternatives
beetsPackages.alternatives.dist
beetsPackages.beets-minimal
beetsPackages.beets-minimal.dist
beetsPackages.beets-minimal.doc
beetsPackages.beets-minimal.man
beetsPackages.copyartifacts
beetsPackages.copyartifacts.dist
beetsPackages.extrafiles
beetsPackages.extrafiles.dist
8 packages built:
beets
beets-unstable
beets-unstable.dist
beets-unstable.doc
beets-unstable.man
beets.dist
beets.doc
beets.man
I managed to make beets-minimal and extrafiles build by updating 2 test paths in builtin-plugins.nix:
diff --git a/pkgs/tools/audio/beets/builtin-plugins.nix b/pkgs/tools/audio/beets/builtin-plugins.nix
index 5717424c4768..87b090d6f6de 100644
--- a/pkgs/tools/audio/beets/builtin-plugins.nix
+++ b/pkgs/tools/audio/beets/builtin-plugins.nix
@@ -87,7 +87,7 @@
mbcollection.testPaths = [ ];
mbsubmit = { };
mbsync = { };
- metasync = { };
+ metasync.testPaths = [ ];
missing.testPaths = [ ];
mpdstats.propagatedBuildInputs = [ python3Packages.mpd2 ];
mpdupdate = {
@@ -119,7 +119,7 @@
propagatedBuildInputs = with python3Packages; [ pillow pyxdg ];
wrapperBins = [ imagemagick ];
};
- types.testPaths = [ "test/test_types_plugin.py" ];
+ types.testPaths = [ "test/plugins/test_types_plugin.py" ];
unimported.testPaths = [ ];
web.propagatedBuildInputs = [ python3Packages.flask ];
zero = { };
Thanks for the report @antonmosich :)
|
gharchive/pull-request
| 2024-06-08T18:22:40 |
2025-04-01T04:55:26.590280
|
{
"authors": [
"antonmosich",
"doronbehar"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/318334",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2368292825
|
python3Packages.spatialmath-python: init at 1.1.10
Description of changes
Adds spatialmath-python to Python packages.
One part of many to add roboticstoolbox to Python packages.
Depends on https://github.com/NixOS/nixpkgs/pull/321907 and will remain in draft until it is merged.
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
[x] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
24.11 Release Notes (or backporting 23.11 and 24.05 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
Result of nixpkgs-review pr 321908 run on x86_64-linux 1
4 packages built:
python311Packages.spatialmath-python
python311Packages.spatialmath-python.dist
python312Packages.spatialmath-python
python312Packages.spatialmath-python.dist
Result of nixpkgs-review pr 321908 run on x86_64-linux 1
4 packages built:
python311Packages.spatialmath-python
python311Packages.spatialmath-python.dist
python312Packages.spatialmath-python
python312Packages.spatialmath-python.dist
|
gharchive/pull-request
| 2024-06-23T05:46:31 |
2025-04-01T04:55:26.601296
|
{
"authors": [
"djacu",
"tomberek"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/321908",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2397377383
|
Fix pynitrokey dependencies on Python 3.12
Description of changes
Several dependencies of pynitrokey use testing functions that have been removed on Python 3.12.
pyocd:
Remove capstone dependency. Capstone is broken in Python 3.12 and doesn't seem to be referenced in pyocd code, only the requirements.
Disable tests which call removed not_called function.
Update buildPythonPackage args.
pylink-square:
Disable tests that call removed assertEquals function.
Update buildPythonPackage args.
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[ ] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[ ] Tested basic functionality of all binary files (usually in ./result/bin/)
24.11 Release Notes (or backporting 23.11 and 24.05 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[ ] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
we don't need to remove capstone 4 from the dependencies, #326281 makes capstone 4 build in python 3.12 as well.
Closing in favour of:
#326251
#326627
|
gharchive/pull-request
| 2024-07-09T07:27:36 |
2025-04-01T04:55:26.613290
|
{
"authors": [
"999eagle",
"frogamic"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/325770",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2508607203
|
Revert "nixos: support dm-verity"
Reverts NixOS/nixpkgs#336983
@nikstur and I had some thoughts on the PR that we didn't get to share in the original PR before it was merged. It seems easiest to just revert it and get the changes in after some discussion.
In particular, we want to:
Try to simplify the test, possibly via defer-partitions.
Possibly use virtualisation.fileSystems..overlay
Keep root= on the cmdline
Use a single overlay rather than /var,/etc,/tmp - but that may fall under simplifying the test
|
gharchive/pull-request
| 2024-09-05T19:57:51 |
2025-04-01T04:55:26.615379
|
{
"authors": [
"ElvishJerricco"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/339886",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2568899821
|
python3Packages.langgraph* 20241006 update
Changes
python3Packages.langgraph*:
langgraph: 0.2.21 -> 0.2.34
langgraph-sdk: 0.1.30 -> 0.1.32
langgraph-checkpoint: 1.0.9 -> 2.0.0
langgraph-checkpoint-postgres: 1.0.6 -> 2.0.0
langgraph-checkpoint-sqlite: 1.0.3 -> 2.0.0
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[x] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[x] sandbox = true
[x] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[x] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
24.11 Release Notes (or backporting 23.11 and 24.05 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
Result of nixpkgs-review pr 346948 run on aarch64-darwin 1
20 packages built:
python311Packages.langgraph
python311Packages.langgraph-checkpoint
python311Packages.langgraph-checkpoint-postgres
python311Packages.langgraph-checkpoint-postgres.dist
python311Packages.langgraph-checkpoint-sqlite
python311Packages.langgraph-checkpoint-sqlite.dist
python311Packages.langgraph-checkpoint.dist
python311Packages.langgraph-sdk
python311Packages.langgraph-sdk.dist
python311Packages.langgraph.dist
python312Packages.langgraph
python312Packages.langgraph-checkpoint
python312Packages.langgraph-checkpoint-postgres
python312Packages.langgraph-checkpoint-postgres.dist
python312Packages.langgraph-checkpoint-sqlite
python312Packages.langgraph-checkpoint-sqlite.dist
python312Packages.langgraph-checkpoint.dist
python312Packages.langgraph-sdk
python312Packages.langgraph-sdk.dist
python312Packages.langgraph.dist
@ofborg build python312Packages.langgraph python311Packages.langgraph
@drupol looks like ofborg ate your approval
I don't understand why it's failing on the CI...
I don't understand why it's failing on the CI...
It was a bad hash on langgraph. That uncovered a flaky test that I had to disable.
Result of nixpkgs-review pr 346948 run on aarch64-darwin 1
20 packages built:
python311Packages.langgraph
python311Packages.langgraph-checkpoint
python311Packages.langgraph-checkpoint-postgres
python311Packages.langgraph-checkpoint-postgres.dist
python311Packages.langgraph-checkpoint-sqlite
python311Packages.langgraph-checkpoint-sqlite.dist
python311Packages.langgraph-checkpoint.dist
python311Packages.langgraph-sdk
python311Packages.langgraph-sdk.dist
python311Packages.langgraph.dist
python312Packages.langgraph
python312Packages.langgraph-checkpoint
python312Packages.langgraph-checkpoint-postgres
python312Packages.langgraph-checkpoint-postgres.dist
python312Packages.langgraph-checkpoint-sqlite
python312Packages.langgraph-checkpoint-sqlite.dist
python312Packages.langgraph-checkpoint.dist
python312Packages.langgraph-sdk
python312Packages.langgraph-sdk.dist
python312Packages.langgraph.dist
@ofborg build python312Packages.langgraph python311Packages.langgraph
|
gharchive/pull-request
| 2024-10-06T21:02:47 |
2025-04-01T04:55:26.631954
|
{
"authors": [
"drupol",
"natsukium",
"sarahec"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/346948",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2597959450
|
playonlinux: add python dependency pyasyncore
Current playonlinux start failed with:
Looking for python3... 3.12.6 - selected
/nix/store/6hadbrvivhi7p31rz6rjx8dbl5m9r2ch-playonlinux-4.4/share/playonlinux/python/mainwindow.py:708: SyntaxWarning: invalid escape sequence '\|'
self.SupprotedIconExt = "All|*.xpm;*.XPM;*.png;*.PNG;*.ico;*.ICO;*.jpg;*.JPG;*.jpeg;*.JPEG;*.bmp;*.BMP\
1.0
Traceback (most recent call last):
File "/nix/store/6hadbrvivhi7p31rz6rjx8dbl5m9r2ch-playonlinux-4.4/share/playonlinux/python/mainwindow.py", line 41, in <module>
import options, threading, debug
File "/nix/store/6hadbrvivhi7p31rz6rjx8dbl5m9r2ch-playonlinux-4.4/share/playonlinux/python/options.py", line 21, in <module>
from asyncore import dispatcher
ModuleNotFoundError: No module named 'asyncore'
Add corresponding dependency could fix the issue.
@pasqui23
Things done
Built on platform(s)
[x] x86_64-linux
[ ] aarch64-linux
[ ] x86_64-darwin
[ ] aarch64-darwin
For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
[ ] sandbox = relaxed
[ ] sandbox = true
[x] Tested, as applicable:
NixOS test(s) (look inside nixos/tests)
and/or package tests
or, for functions and "core" functionality, tests in lib/tests or pkgs/test
made sure NixOS tests are linked to the relevant packages
[ ] Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
[x] Tested basic functionality of all binary files (usually in ./result/bin/)
24.11 Release Notes (or backporting 23.11 and 24.05 Release notes)
[ ] (Package updates) Added a release notes entry if the change is major or breaking
[ ] (Module updates) Added a release notes entry if the change is significant
[ ] (Module addition) Added a release notes entry if adding a new NixOS module
[x] Fits CONTRIBUTING.md.
Add a :+1: reaction to pull requests you find important.
LGTM
|
gharchive/pull-request
| 2024-10-18T16:38:53 |
2025-04-01T04:55:26.641796
|
{
"authors": [
"L-Trump",
"pasqui23"
],
"repo": "NixOS/nixpkgs",
"url": "https://github.com/NixOS/nixpkgs/pull/349576",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.