| 15 Sep 2025 |
raitobezarius (DECT: 7248) | laurents: the mistake in the lix code seems trivial at least | 18:31:05 |
raitobezarius (DECT: 7248) | submodules is supported only for git:// | 18:31:12 |
raitobezarius (DECT: 7248) | not for github:// | 18:31:15 |
raitobezarius (DECT: 7248) | which… kinda makes sense? | 18:31:19 |
raitobezarius (DECT: 7248) | github:// archives doesn't give you submodules, does it? | 18:31:32 |
laurents | well, to be honest, I was working with a local copy of everything, so I hit the but with a "path" input | 18:32:04 |
raitobezarius (DECT: 7248) | I made it work without change to Lix | 18:32:27 |
raitobezarius (DECT: 7248) | just by changing the input type | 18:32:30 |
raitobezarius (DECT: 7248) |
diff --git i/flake.lock w/flake.lock
index 01c49ec..a09a7f1 100644
--- i/flake.lock
+++ w/flake.lock
@@ -11,18 +11,18 @@
},
"locked": {
"lastModified": 1757954848,
- "narHash": "sha256-T/T5Kz2fWZpYNeZlHQ8jomJd6X6nVFpvKqPPhSWFDgM=",
- "owner": "laurents",
- "repo": "alaveteli",
+ "narHash": "sha256-7OvEveYbZHk8KsQKN4KXkuZpMv81JRkPPQj5bJ2Ph18=",
+ "ref": "nix-devenv",
"rev": "3eb0e355f2451bfa6149bb5e732034f8d4ffeaf2",
+ "revCount": 20314,
"submodules": true,
- "type": "github"
+ "type": "git",
+ "url": "https://github.com/laurents/alaveteli"
},
"original": {
- "owner": "laurents",
"ref": "nix-devenv",
- "repo": "alaveteli",
- "type": "github"
+ "type": "git",
+ "url": "https://github.com/laurents/alaveteli"
}
},
"cachix": {
diff --git i/flake.nix w/flake.nix
index f845fe6..b3e936f 100644
--- i/flake.nix
+++ w/flake.nix
@@ -4,7 +4,7 @@
inputs = {
nixpkgs.url = "github:cachix/devenv-nixpkgs/rolling";
alaveteli-flake = {
- url = "github:laurents/alaveteli/nix-devenv";
+ url = "git+https://github.com/laurents/alaveteli?ref=nix-devenv";
inputs.nixpkgs.follows = "nixpkgs";
};
};
| 18:32:51 |
raitobezarius (DECT: 7248) | * diff --git i/flake.lock w/flake.lock
index 01c49ec..a09a7f1 100644
--- i/flake.lock
+++ w/flake.lock
@@ -11,18 +11,18 @@
},
"locked": {
"lastModified": 1757954848,
- "narHash": "sha256-T/T5Kz2fWZpYNeZlHQ8jomJd6X6nVFpvKqPPhSWFDgM=",
- "owner": "laurents",
- "repo": "alaveteli",
+ "narHash": "sha256-7OvEveYbZHk8KsQKN4KXkuZpMv81JRkPPQj5bJ2Ph18=",
+ "ref": "nix-devenv",
"rev": "3eb0e355f2451bfa6149bb5e732034f8d4ffeaf2",
+ "revCount": 20314,
"submodules": true,
- "type": "github"
+ "type": "git",
+ "url": "https://github.com/laurents/alaveteli"
},
"original": {
- "owner": "laurents",
"ref": "nix-devenv",
- "repo": "alaveteli",
- "type": "github"
+ "type": "git",
+ "url": "https://github.com/laurents/alaveteli"
}
},
"cachix": {
diff --git i/flake.nix w/flake.nix
index f845fe6..b3e936f 100644
--- i/flake.nix
+++ w/flake.nix
@@ -4,7 +4,7 @@
inputs = {
nixpkgs.url = "github:cachix/devenv-nixpkgs/rolling";
alaveteli-flake = {
- url = "github:laurents/alaveteli/nix-devenv";
+ url = "git+https://github.com/laurents/alaveteli?ref=nix-devenv";
inputs.nixpkgs.follows = "nixpkgs";
};
};
| 18:32:59 |
raitobezarius (DECT: 7248) | so I guess the question is | 18:33:11 |
raitobezarius (DECT: 7248) | should submodules be an available option with the path fetcher type | 18:33:18 |
raitobezarius (DECT: 7248) | or wait | 18:33:43 |
raitobezarius (DECT: 7248) | you got an error because the thing referred to self.submodules ? | 18:33:48 |