Skip to content

Commit c47250b

Browse files
committed
flake: cleanup
1 parent 480e15c commit c47250b

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

flake.nix

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222

2323
outputs = { self, nixpkgs, ... } @ inputs:
2424
let
25-
lastModifiedDate = self.lastModifiedDate or self.lastModified or "19700101";
26-
27-
version = "${builtins.substring 0 8 lastModifiedDate}-${self.shortRev or "dirty"}";
25+
supportedSystems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
2826

2927
pkgsFor = system: import nixpkgs {
3028
inherit system;
@@ -33,8 +31,6 @@
3331
};
3432
};
3533

36-
supportedSystems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
37-
3834
forAllSystems = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
3935
inherit system;
4036
pkgs = pkgsFor system;

0 commit comments

Comments
 (0)