chore: revert to default lon expression

This commit is contained in:
Julien Malka 2024-10-21 22:21:46 +02:00
parent e7e83d7ea9
commit 35047d3322
Signed by: Luj
GPG key ID: 6FC74C847011FD83
2 changed files with 8 additions and 3 deletions

View file

@ -24,14 +24,14 @@ let
args@{ fetchType, ... }:
if fetchType == "git" then
builtins.fetchGit {
inherit (args) url;
url = args.url;
ref = args.branch;
rev = args.revision;
narHash = args.hash;
}
else if fetchType == "tarball" then
builtins.fetchTarball {
inherit (args) url;
url = args.url;
sha256 = args.hash;
}
else

View file

@ -16,7 +16,12 @@ let
src = ./.;
hooks = {
statix.enable = true;
statix = {
enable = true;
settings.ignore = [
"**/lon.nix"
];
};
deadnix.enable = true;
rfc101 = {
enable = true;