justanotheruser has quit [Ping timeout: 256 seconds]
orivej has quit [Ping timeout: 256 seconds]
tilpner has quit [Remote host closed the connection]
tilpner has joined #nixos-dev
confusus has joined #nixos-dev
jonringer has quit [Ping timeout: 244 seconds]
justanotheruser has joined #nixos-dev
sascha has joined #nixos-dev
sascha is now known as Guest66578
confusus has quit [Remote host closed the connection]
Guest66578 has quit [Client Quit]
sgrunert has joined #nixos-dev
cole-h has quit [Quit: Goodbye]
alp has joined #nixos-dev
alp has quit [Ping timeout: 240 seconds]
sgrunert has quit [Remote host closed the connection]
sgrunert has joined #nixos-dev
alp has joined #nixos-dev
<manveru>
Ericson2314: like a fixed output derivation?
orivej has joined #nixos-dev
lopsided98 has quit [Quit: No Ping reply in 180 seconds.]
AlwaysLivid has joined #nixos-dev
ris has quit [Ping timeout: 246 seconds]
lopsided98 has joined #nixos-dev
teto has joined #nixos-dev
<manveru>
niksnut: is there any way to have git with submodules as a flake input?
<niksnut>
manveru: haven't tried, but I think you should be able to add ?submodules=true to a git input
<niksnut>
not github
<niksnut>
or "submodules = true;" if you're using the attrset input notation
<manveru>
it works with the query param, not the attr it seems, thanks :)
AlwaysLivid has quit [Quit: We are a collection of 7 billion codependent atoms. Stop hating based on constructs and come along for the ride.]
alp has quit [Ping timeout: 272 seconds]
<manveru>
niksnut: sorry, i spoke too soon... even in the url it was ignored, and as attr it causes a schizophrenic error :)
<niksnut>
eh
<manveru>
if i set `submodules = true;`, it's `flake input attribute 'submodules' is a Boolean while a string is expected`, when i set `submodules = "true";` it's `input attribute 'submodules' is not a Boolean`
<garbas>
gchristensen: it is so nice to see you back online :)
<cole-h>
+1
<worldofpeace>
niksnut: In the rfc I said "team" at the end but it's actually just trying to specific. So can you drop "team" at the end?
<worldofpeace>
* trying to be specific in the rfc as to what's being talked about
<samueldr>
garbas: transient issue with the backend at bonsai? "type":"index_not_found_exception","reason":"no such index [latest-12-nixos-20.03]"
<samueldr>
oh...
* garbas
checks
<samueldr>
no
<samueldr>
channel attribute somehow is "nixos-20.03" in their link
<garbas>
oh probably that is an old link (from 2 months ago)
<samueldr>
:(
<samueldr>
though at least it wasn't public yet
<garbas>
it wasn't announced anywhere.
<samueldr>
yeah
<garbas>
but I should display that wrong channel is selected. can you create an issue
<niksnut>
worldofpeace: sorry, fixed
<worldofpeace>
niksnut: no problem. thanks ❤️
AlwaysLivid has quit [Ping timeout: 244 seconds]
orivej has joined #nixos-dev
AlwaysLivid has joined #nixos-dev
bennofs[m] has joined #nixos-dev
noonien has joined #nixos-dev
orivej has quit [Ping timeout: 260 seconds]
<ris>
is the idea of passthru.tests to slowly supplant checkPhase?
<ivan>
nixpkgs hydra is incompatible with nix again
cole-h has quit [Quit: Goodbye]
AlwaysLivid has quit [Read error: Connection reset by peer]
cole-h has joined #nixos-dev
<jtojnar>
ris chackPhase is still the right place for package's own checks (e.g. `make check`)
<ris>
fair enough - but passthru.tests has clear advantages in that changes to its inputs don't cause a rebuild of reverse dependencies
<jtojnar>
right, but `make check` typically requires build artefact that are not installed so it cannot be moved to a separate derivation without extracting them somehow
<jtojnar>
there are some calls for separate derivations per phase, or even recursive nix but that is mostly orthogonal
<jtojnar>
and far from implementation
<ris>
yup absolutely
<ris>
i only just learned the other day that checkInputs aren't only injected in the checkPhase
<ris>
which worried me
<jtojnar>
yeah, that is hard to fix in shell
<jtojnar>
I am not the only one who dreams of generic builder written in a proper programming language