IFD-embracing Nix expression to import pnpm-lock.yaml files in Nix derivations
nixpkgs nix flake pnpm
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: format code

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>

authored by

Sefa Eyeoglu and committed by tangled.org 385b26d2 12e183a9

+11 -8
+11 -8
checks/reuse.nix
··· 6 6 self, 7 7 reuse, 8 8 runCommand, 9 - }: runCommand "ipl-check-reuse" { 10 - nativeBuildInputs = [reuse]; 11 - } '' 12 - pushd "${self}" 13 - reuse lint 14 - popd 15 - touch "$out" 16 - '' 9 + }: 10 + runCommand "ipl-check-reuse" 11 + { 12 + nativeBuildInputs = [ reuse ]; 13 + } 14 + '' 15 + pushd "${self}" 16 + reuse lint 17 + popd 18 + touch "$out" 19 + ''