!UUqahLbShAYkkrXmKs:matrix.org

DevOS

33 Members
Seeking help and geeking out together on https://github.com/divnix/devos & https://github.com/divnix/digga10 Servers

Load older messages


SenderMessageTime
5 Jul 2021
@fufexan:matrix.orgfufexan or sharedOverlays 20:53:06
@blaggacao:matrix.orgDavid Arnold (blaggacao) Ah yeah! But that still wouldn't error out. πŸ™‚ So all good with fromOverlays and internalOverlays, which I feel kind of responsible for... πŸ‘οΈ 20:54:36
@fufexan:matrix.orgfufexanhmm, then I'm not really sure what caused it after all20:55:50
@blaggacao:matrix.orgDavid Arnold (blaggacao) It definitly was self.overlay vs self.overlays 20:56:11
@blaggacao:matrix.orgDavid Arnold (blaggacao)(since self.overlay` is a function)20:56:33
@blaggacao:matrix.orgDavid Arnold (blaggacao) * (since self.overlay is a function) 20:56:42
@blaggacao:matrix.orgDavid Arnold (blaggacao)
diff --git a/flake.nix b/flake.nix
index 5903627..c2ce172 100644
--- a/flake.nix
+++ b/flake.nix
@@ -19,14 +19,14 @@
       utils.lib.systemFlake {
         inherit self inputs;

-        channels.nixpkgs.overlaysBuilder = _: [ self.overlay ];
+        # channels.nixpkgs.overlaysBuilder = _: [ self.overlay ];

         overlay = import ./pkgs { inherit inputs; };
         overlays = internalOverlays { inherit (self) pkgs inputs; };

         # build all packages defined in ./pkgs/default.nix for their respective systems
         outputsBuilder = channels: {
-          packages = fromOverlays self.overlay channels;
+          packages = fromOverlays self.overlays channels;
         };
       };
 }
20:58:01
@blaggacao:matrix.orgDavid Arnold (blaggacao) This makes aaef1cbefa3827d759d5a75c000fd6fa1fa2b52d so it does not error out. 20:58:22
@blaggacao:matrix.orgDavid Arnold (blaggacao)No worries, trading m time for mind share is usually a high yield tradeoff 🀣21:00:21
@fufexan:matrix.orgfufexanthen I'm happy to help and be helped πŸ˜€21:01:07
@fufexan:matrix.orgfufexan
In reply to @blaggacao:matrix.org
This makes aaef1cbefa3827d759d5a75c000fd6fa1fa2b52d so it does not error out.
well, it does not but the output isn't right
21:01:57
@fufexan:matrix.orgfufexan

without the overlaysBuilder

git+file:///home/mihai/Documents/code/git/nur
β”œβ”€β”€β”€overlay: Nixpkgs overlay
β”œβ”€β”€β”€overlays
β”œβ”€β”€β”€packages
β”‚   β”œβ”€β”€β”€aarch64-linux
β”‚   β”œβ”€β”€β”€i686-linux
β”‚   β”œβ”€β”€β”€x86_64-darwin
β”‚   └───x86_64-linux
└───pkgs: unknown
21:02:11
@blaggacao:matrix.orgDavid Arnold (blaggacao)
In reply to @fufexan:matrix.org
well, it does not but the output isn't right
Hehe, yeah. That's beyond my responsability, though πŸ˜‚
21:02:31
@blaggacao:matrix.orgDavid Arnold (blaggacao)But that's where Pacman helped πŸ‘οΈ21:02:44
@fufexan:matrix.orgfufexanthat's right, thank you both!21:02:59
6 Jul 2021
@timdeh:matrix.org@timdeh:matrix.org David Arnold: hows the patch polyfill coming along? I'd like to test with a nixpkgs PR 18:27:53
@blaggacao:matrix.orgDavid Arnold (blaggacao)
In reply to @timdeh:matrix.org
David Arnold: hows the patch polyfill coming along? I'd like to test with a nixpkgs PR
I wasn't yet able to trick nix into accepting an impure builds env where patch binary would be externally supplied. I kind of assume this must be possible since this is how I understand the nixpkgs itself sets up the stdenv, well at least /bin/sh.
18:57:13
@blaggacao:matrix.orgDavid Arnold (blaggacao) Applying them patches via an overlay is currently my best bet: https://www.github.com/blaggacao/devos/tree/main/flake.nix, but there is also pkgs.applyPatches which depends on stdenvNoCC. Yesterday, I was looking into how I could build that stdenvNoCC artificially to expose that function only, bit didn't make it to a conclusion, yet. 19:02:08
@blaggacao:matrix.orgDavid Arnold (blaggacao)* Applying them patches via an overlay is currently my best bet: https://www.github.com/blaggacao/devos/tree/main/flake.nix, but there is also `pkgs.applyPatches` which depends on `stdenvNoCC`. Yesterday, I was looking into how I could build that `stdenvNoCC` artificially to expose that function only, but didn't make it to a conclusion, yet.19:02:44
@spacesbot:nixos.devspacesbot - keeps a log of public NixOS channels changed their display name from spacesbot to spacesbot - keeps a log of public NixOS channels.22:11:39
@ultranix:matrix.orgultranix joined the room.23:12:17
8 Jul 2021
@pamymaf:matrix.orgpamymaf joined the room.18:12:52
@anodium:matrix.orgAndrea Pascal joined the room.18:23:04
@pamymaf:matrix.orgpamymaf set a profile picture.20:15:38
9 Jul 2021
@danielphan.2003:matrix.org@danielphan.2003:matrix.orgRedacted or Malformed Event02:15:53
@gytis-ivaskevicius:matrix.org@gytis-ivaskevicius:matrix.org Do any of you have any idea why GA is not printing any logs when nix develop is used? https://github.com/gytis-ivaskevicius/flake-utils-plus/runs/3030446572?check_suite_focus=true 15:34:06
@gytis-ivaskevicius:matrix.org@gytis-ivaskevicius:matrix.orgits not even reporting exit statuses :/15:34:13
@gytis-ivaskevicius:matrix.org@gytis-ivaskevicius:matrix.orgIt seems that it stopped working after few random fixups πŸ€”15:45:57
@gytis-ivaskevicius:matrix.org@gytis-ivaskevicius:matrix.orghttps://github.com/gytis-ivaskevicius/flake-utils-plus/runs/2438062323?check_suite_focus=true15:45:58
10 Jul 2021
@blaggacao:matrix.orgDavid Arnold (blaggacao) fufexan maybe you'd have an interest to review https://github.com/divnix/digga/pull/84? (w.r.t. the hm fup issue). 00:53:17

Show newer messages


Back to Room ListRoom Version: 6