nixos-configs/apps/update-sources/default.nix
matt1432 a67f0fd422
All checks were successful
Discord / discord commits (push) Has been skipped
feat(apps): add to nixFastBuild and clean up nix code
2024-11-15 13:39:20 -05:00

13 lines
224 B
Nix

{
buildApp,
callPackage,
...
}:
buildApp {
src = ./.;
npmDepsHash = "sha256-zl/UIwBQqpV89Rvagyq3mQDJxkWM0h1evtKg9TiTdiw=";
runtimeInputs = [
(callPackage ../../nixosModules/docker/updateImage.nix {})
];
}