mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 11:10:03 +00:00
flake.nix: Handle missing rev attribute
Dirty trees no longer set 'rev', so we need to handle this.
This commit is contained in:
parent
2a0cf385d2
commit
60330b6065
|
@ -23,8 +23,8 @@
|
|||
import ./nixos/lib/eval-config.nix (args // {
|
||||
modules = modules ++
|
||||
[ { system.nixos.versionSuffix =
|
||||
".${lib.substring 0 8 self.lastModified}.${self.shortRev}";
|
||||
system.nixos.revision = self.rev;
|
||||
".${lib.substring 0 8 self.lastModified}.${self.shortRev or "dirty"}";
|
||||
system.nixos.revision = lib.mkIf (self ? rev) self.rev;
|
||||
}
|
||||
];
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue