summary refs log tree commit diff
path: root/pkgs/applications/audio/vimpc/default.nix
blob: bcbfa6d3874f47fd0bd207c0f9a49dd78ecbbcf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchFromGitHub, autoreconfHook, mpd_clientlib, ncurses, pcre, pkgconfig
, taglib, curl }:

stdenv.mkDerivation rec {
  version = "0.09.2";
  pname = "vimpc";

  src = fetchFromGitHub {
    owner = "boysetsfrog";
    repo = "vimpc";
    rev = "v${version}";
    sha256 = "0lswzkap2nm7v5h7ppb6a64cb35rajysd09nb204rxgrkij4m6nx";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];
  buildInputs = [ mpd_clientlib ncurses pcre taglib curl ];

  postInstall = ''
    mkdir -p $out/etc
    cp doc/vimpcrc.example $out/etc
  '';

  meta = with stdenv.lib; {
    description = "A vi/vim inspired client for the Music Player Daemon (mpd)";
    homepage = "https://github.com/boysetsfrog/vimpc";
    license = licenses.gpl3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ pSub ];
  };
}