about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/update_vim_plugins/default.nix
blob: 7f0b3f0d68e38180c7804cde604a15f8f99d7dc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[
  (
    final: prev: {
      update-vim-plugins = import ./package.nix {
        inherit
          (prev)
          python3
          # dependencies
          
          nix
          alejandra
          nix-prefetch-git
          ;
      };
    }
  )
]