<clever>
then you can fixup $PATH, and source the original
<clever>
source will ignore the #!
<clever>
tobiasBora: yeah, at that point you would want to source the original script, or use wrapProgram
<clever>
you can also run `patchShebangs $out/bin/` to force it into patching
<clever>
tobiasBora: if you use something like `#!/usr/bin/env bash`, then the patchShebangs function will replace it with $(which bash) during the fixupPhase
<clever>
tobiasBora: and this shell will be correct even when cross-compiling
<clever>
> "#!${pkgs.runtimeShell}"
<clever>
tobiasBora: nix auto-detects dependencies based on what strings you use
<clever>
typetetris: i would expect it to affect all, but maybe your using a different version of nix-shell and its fixed in some?
<clever>
tobiasBora: *doh*
<clever>
typetetris: oh, i sent the answer to tobiasBora by accident! check up about 30mins
<clever>
whald: if you bisect hydra, you could narrow down what exactly it is
<clever>
whald: probably the hydra version then
<clever>
whald: hydra-eval-jobs doesnt rely on any state or DB, so you can just freely run it with those args, from any build of hydra
<clever>
whald: i'm not sure, but you can nix-build different versions of hydra, and re-run the new hydra-eval-jobs on each build, to see when it works and doesnt
<clever>
whald: compare the example/hello.nix in /nix/store/n093kdbbiyw0ws47979c7h7aqkl1w5gw-source to the checkout?
<clever>
whald: change the `-I hydra=...` to a local copy, and then delete the `{ ... }:` line, any difference?
<clever>
whald: try adding the --arg's back in one at a time, singlequote the chuck of nix for each one
<clever>
also, you want to instead use runCommand "remarkable-toolchain-sdk" { inherit src; } ''shellcode'';
<clever>
so thats src = { src = fetchurl ...; };
<clever>
Orbstheorem: you gave it a set, containing a src key
<clever>
Orbstheorem: extractToolchainFromScript takes one argument, the entire arg is put into src
<clever>
Orbstheorem: oh, i see the problem
<clever>
Orbstheorem: and what does builtins.fetchurl return, when ran in `nix repl`?
<clever>
Orbstheorem: does the error say what line its on? does --show-trace say something useful?
<clever>
Orbstheorem: can you paste your code?
<clever>
Orbstheorem: fetchurl is already a derivation
<clever>
Orbstheorem: just assign it to the src attr
<clever>
boogiewoogie[m]: look at linuxPackagesFor in all-packages.nix, youll probably want boot.extraModulePackages = [ (config.boot.kernelPackages.callPackage ./your-module.nix {}) ];
<clever>
boogiewoogie[m]: yeah
2020-10-16
<clever>
jasom: buildEnv
2020-10-15
<clever>
gluonix: genericBuild will then cd into $sourceRoot, and continue the build
<clever>
gluonix: the unpackPhase will unpack $src, then set $sourceRoot to point to the directory it just made
<clever>
clefru_mm: builtins.fetchGit doesnt need a hash, its different from pkgs.fetchgit
<clever>
clefru_mm: there is also builtins.fetchgit
<clever>
clefru_mm: but thats going to still rebuild every time any file changes, not just files git is tracking
<clever>
clefru_mm: pkgs.runCommand "name" { buildInputs = [ git ]; } "git clone ${./.} $out" would do the same thing
<clever>
src = lib.cleanSource ./.; is one way to remove the extra stuff and make the hash more stable
<clever>
but often, you added a result symlink to the dir, and now the hash differs
<clever>
clefru_mm: and if the hash is the same, it wont rebuild
<clever>
clefru_mm: when you do `src = ./foobar;` nix will copy the entire directory at eval time, and hash that copy
<clever>
exactly
<clever>
codygman__: run the `ghc-pkg list` inside that ghc
<clever>
superherointj: its implemented in plain nix, rather then c++
<clever>
225 mod = base: int: base - (int * (builtins.div base int));
<clever>
> lib.mod 14 5
<clever>
DigitalKiwi: if you can get a .drv out of that with `nix-store --query --deriver`, then you can nix-diff your way to recreating the cfg
<clever>
pumpy: no idea whats going on then
<clever>
pumpy: if you do the same thing without making a snapshot, does it have any difference?
<clever>
and only one guest from that disk at a time, right?
<clever>
are you booting the guest from the original or the snapshot?
<clever>
when does the fsck get ran? on bootup?
<clever>
that should just work without any issues
<clever>
pumpy: and you never mount /dev/zroot/nix on the host, correct?
<clever>
pumpy: on the host side, the device backing vda
<clever>
pumpy: and then the VM is configured to use /dev/zroot/nix ?
<clever>
pumpy: how is that configured on the host?
<clever>
pumpy: how is the VM giving the guest access to the volume?
<clever>
pumpy: how is the guest accessing the zvol?
<clever>
pumpy: that shouldnt cause any visible effect in the guest
<clever>
pumpy: what zfs command did you run?
<clever>
ah, if it builds then your already solved
<clever>
DigitalKiwi: review the --show-trace line by line and look for any potential cycles
<clever>
DigitalKiwi: youll need to be careful, because what if self.smallcheck_1_2_0 depends on random_1_2_0?
<clever>
ah, modifying an existing overlay
<clever>
DigitalKiwi: are you passing the file in the above gist to overrideScope?
<clever>
DigitalKiwi: super is the previous value, so you can avoid infinite recursion
<clever>
DigitalKiwi: self is the final value after the overlay has been applied
<clever>
DigitalKiwi: overrideScope inserts an overlay onto a scope, mutating many packages
<clever>
DigitalKiwi: overrideCabal acts on the args passed to the haskell mkDerivation function
<clever>
DigitalKiwi: .override acts on the args callPackage passed into the package
<clever>
and just exports every var nix-build would have exported
<clever>
nix-shell can take any derivation
<clever>
you can usually just jump right to running make when resuming
<clever>
zecnate: but if you nix-build --keep-failed, then nix-shell, you can cd into that tempdir, and resume the build
<clever>
zecnate: the sandbox isnt active, so it can see things it shouldnt see
<clever>
,tell Henson sure!
2020-10-14
<clever>
but now its hash-source and hash-source, and it finds the old copy more easily
<clever>
so it would try to download package-2, and then discover the hash is wrong
<clever>
but it re-checking was more of an accidental feature, because /nix/store/hash-package-1 wont make a search for /nix/store/hash-package-2 happy
<clever>
pie_: usually, if the version# changes, the contents definitely changed
<clever>
aswanson: but the name has since been set to "source" for most things, breaking that
<clever>
aswanson: previously, the version was included in the name, so the name+hash would have differed
<clever>
aswanson: if you claim the hash and name are the same, then nix will trust you, and reuse the old thing by that name&hash
<clever>
let blocks are recursive, sets arent
<clever>
pkgs.newScope in my simple-test.nix example
<clever>
pie_: thats the newScope function, from the parent scope
<clever>
pie_: so you can put a scope within a scope
<clever>
pie_: and makeScope will create another newScope within that new scope
<clever>
so when you run the new callPackage on `{ a }: ...`, it will look for extra.a first, then splicedPackagesWithXorg.a
<clever>
pie_: you pass it a set, and it will create a custom callPackage, that searches an extra place
<clever>
`nix-env -i $(nix-build '<nixpkgs>' -A pinentry-qt)` would trick it into installing -qt instead
<clever>
jasom: and nix-env prefers installing the .out of things
<clever>
jasom: because pinentry-qt is an alias to pinentry.qt
<clever>
ugubok: did you try adding glib to the buildInputs?
<clever>
gluonix: if you use plain stdenv.mkDerivation it will work a lot better, without a lot of that code
<clever>
gluonix: make, autoconf, and gcc are in the stdenv by default, but stdenvNoCC forces them to not be there
<clever>
gluonix: line 24 of the Dockerfile, that is going to copy things weirdly and break a lot of stuff, you need to give it a derivation not a path