Vladimir Panteleev
Vladimir Panteleev
dub.sdl: ```sdlang name "test" dependency "openssl" repository="git+https://github.com/CyberShadow/deimos-openssl" version="~107-openssl-+-stdconv-=-linker-error" ``` Prints `fatal: '--detach' cannot be used with '-b/-B/--orphan'` and exits.
```console $ dub --single test.d (compiles test.d...) (runs test.d) $ dub --single test.d (compiles test.d... again) (runs test.d) ``` For some reason this only applies to explicit invocations with `--single`....
```console $ DFLAGS=-unittest dub test.d (compiles test.d...) (runs test.d) $ DFLAGS=-unittest dub test.d (compiles test.d... again) (runs test.d) ``` For some reason this only applies when `DFLAGS` is set. Without...
> One use case for requiring such a declaration is when the module root is outside the Dub project root. For example, the library "foo" containing a D module "foo.bar"...
Any reason for this limitation? One use case is a directory containing a bunch of small programs, some of which have reusable parts and thus are in shared modules. What...
This creates a script that allows running a `.llamafile` with ROCm acceleration under Nix: ```nix let package = { writeShellScript , symlinkJoin , clang , coreutils , gzip , bash...
```console $ nix --extra-experimental-features nix-command --extra-experimental-features flakes run github:nlewo/nix2container#examples.bash.copyToPodman Copy to podman image bash:k8g30kq8xhw50pd9ch321md9n2cylppw Getting image source signatures Copying blob a546c70d96cd skipped: already exists Copying config 7202af4391 done Writing manifest...
I'm not sure how correct these are, but they do allow building a LineageOS image with signing. I have not tried flashing it, though. :)
```console $ cat ../in2023.nix { device = "instantnoodlep"; flavor = "lineageos"; } $ nix-build --arg configuration ../in2023.nix -A generateKeysScript -o generate-keys --show-trace error: … while calling the 'derivationStrict' builtin at...
Hi, I'm trying to use blivet-gui. I think I managed to create a mostly working Nix package, but when I try to run it, the "Scanning storage configuration..." pop-up stays...