We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 480e15c commit c47250bCopy full SHA for c47250b
flake.nix
@@ -22,9 +22,7 @@
22
23
outputs = { self, nixpkgs, ... } @ inputs:
24
let
25
- lastModifiedDate = self.lastModifiedDate or self.lastModified or "19700101";
26
-
27
- version = "${builtins.substring 0 8 lastModifiedDate}-${self.shortRev or "dirty"}";
+ supportedSystems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
28
29
pkgsFor = system: import nixpkgs {
30
inherit system;
@@ -33,8 +31,6 @@
33
31
};
34
32
35
36
- supportedSystems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
37
38
forAllSystems = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
39
40
pkgs = pkgsFor system;
0 commit comments