summaryrefslogtreecommitdiff
path: root/pkgs/notmuch/notmuch-vim/default.nix
blob: e79a253acd2486e1894d8da8bf98beeb454bb348 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ stdenv, notmuch }:
stdenv.mkDerivation rec {
  name = "notmuch-vim-${version}";
  version = notmuch.version;
  outputs = [ "out" ];
  src = notmuch.src;
  phases = [ "unpackPhase" "installPhase" ];
  installPhase = ''
    make -C vim DESTDIR=$out prefix="/share/vim/vimfiles" install
    '';
}