about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/comments/default.nix
blob: 6205dcbeeeeda8450e724a09a1a81ba79bc015f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[
  (
    final: prev: {
      comments = import ./comments.nix {
        inherit
          (prev)
          lib
          makeWrapper
          rustPlatform
          # dependencies
          
          less
          coreutils
          ;
      };
    }
  )
]