mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
nix: nix-diff script
This commit is contained in:
parent
ee398bfe6c
commit
7dbd39f87c
3 changed files with 68 additions and 1 deletions
|
|
@ -25,6 +25,20 @@
|
|||
};
|
||||
};
|
||||
|
||||
devShells.default = pkgs.mkShellNoCC { shellHook = config.pre-commit.installationScript; };
|
||||
devShells.default = pkgs.mkShellNoCC {
|
||||
shellHook = config.pre-commit.installationScript;
|
||||
packages =
|
||||
let
|
||||
nix-diff = pkgs.writeShellApplication {
|
||||
name = "nix-diff";
|
||||
runtimeInputs = [
|
||||
pkgs.nix-output-monitor
|
||||
pkgs.nvd
|
||||
];
|
||||
text = builtins.readFile ./nix-diff.sh;
|
||||
};
|
||||
in
|
||||
[ nix-diff ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue