summaryrefslogtreecommitdiff
path: root/pkgs/scripts/default.nix
blob: dc370567aa6debd1c563bdfc173b58748af78ce5 (plain)
1
2
3
4
5
6
7
8
{ callPackage, symlinkJoin, ... }:
symlinkJoin {
  name = "scripts";
  paths = [
    (callPackage ./clip.nix { toPDF = false; })
    (callPackage ./clip.nix { toPDF = true; })
  ];
}