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.

feat(ci): add reuse check

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

+19
+16
checks/reuse.nix
··· 1 + # SPDX-FileCopyrightText: 2026 Sefa Eyeoglu <contact@scrumplex.net> 2 + # 3 + # SPDX-License-Identifier: MIT 4 + 5 + { 6 + self, 7 + reuse, 8 + runCommand, 9 + }: runCommand "ipl-check-reuse" { 10 + nativeBuildInputs = [reuse]; 11 + } '' 12 + pushd "${self}" 13 + reuse lint 14 + popd 15 + touch "$out" 16 + ''
+3
flake.nix
··· 50 50 vencord = pkgs.callPackage ./checks/vencord.nix { 51 51 inherit (ourPackages) importPnpmLock iplConfigHook; 52 52 }; 53 + reuse = pkgs.callPackage ./checks/reuse.nix { 54 + inherit self; 55 + }; 53 56 } 54 57 ); 55 58 };