update for lix 2.91-dev

the api of nix::Pid changed, causing a build failure.
This commit is contained in:
eldritch horrors 2024-06-25 23:57:51 +02:00
parent fd86a1a068
commit f8869bdcca
2 changed files with 5 additions and 5 deletions

View file

@ -47,11 +47,11 @@
"pre-commit-hooks": "pre-commit-hooks" "pre-commit-hooks": "pre-commit-hooks"
}, },
"locked": { "locked": {
"lastModified": 1718767907, "lastModified": 1719348166,
"narHash": "sha256-gpd+mGQxqVHw2kO6rSPQel8TkChHh9UpqxjsmQi0QJM=", "narHash": "sha256-GK6PusfbMgkg+qdgChmrw78KTNQkm7SDoJ6+lJKY6vg=",
"rev": "85f282ef572577899b3d80ba8def1b920a386218", "rev": "f170870ae7b18c8ee13fb42fe19b5aa05ddf56c0",
"type": "tarball", "type": "tarball",
"url": "https://git.lix.systems/api/v1/repos/lix-project/lix/archive/85f282ef572577899b3d80ba8def1b920a386218.tar.gz" "url": "https://git.lix.systems/api/v1/repos/lix-project/lix/archive/f170870ae7b18c8ee13fb42fe19b5aa05ddf56c0.tar.gz"
}, },
"original": { "original": {
"type": "tarball", "type": "tarball",

View file

@ -93,7 +93,7 @@ struct Proc {
to = std::move(toPipe.writeSide); to = std::move(toPipe.writeSide);
from = std::move(fromPipe.readSide); from = std::move(fromPipe.readSide);
pid = p; pid = std::move(p);
} }
~Proc() {} ~Proc() {}