mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-08 04:05:58 +01:00
Merge pull request #167 from JamesReynolds/main
Fix error: attribute 'lastModifiedDate' missing
This commit is contained in:
commit
322a495412
1 changed files with 2 additions and 2 deletions
|
@ -33,11 +33,11 @@
|
|||
in {
|
||||
packages = genSystems (system: {
|
||||
wlroots = pkgsFor.${system}.wlroots.overrideAttrs (prev: {
|
||||
version = mkVersion inputs.wlroots.lastModifiedDate;
|
||||
version = mkVersion (toString (inputs.wlroots.lastModifiedDate or inputs.wlroots.lastModified or "19700101"));
|
||||
src = inputs.wlroots;
|
||||
});
|
||||
default = pkgsFor.${system}.callPackage ./nix/default.nix {
|
||||
version = mkVersion self.lastModifiedDate;
|
||||
version = mkVersion (toString (self.lastModifiedDate or self.lastModified or "19700101"));
|
||||
inherit (self.packages.${system}) wlroots;
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue