summary refs log tree commit diff
path: root/pkgs/applications/audio/clerk/default.nix
blob: ebcd09ca6adf167304b1583f7ae6bd6c33f1be5d (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
31
32
33
{ lib, stdenv, fetchFromGitHub, makeWrapper, rofi, mpc_cli, perl,
util-linux, python3Packages, libnotify }:

stdenv.mkDerivation {
  name = "clerk-2016-10-14";

  src = fetchFromGitHub {
    owner = "carnager";
    repo = "clerk";
    rev = "875963bcae095ac1db174627183c76ebe165f787";
    sha256 = "0y045my65hr3hjyx13jrnyg6g3wb41phqb1m7azc4l6vx6r4124b";
  };

  nativeBuildInputs = [ makeWrapper ];
  buildInputs = [ python3Packages.mpd2 ];

  dontBuild = true;

  strictDeps = true;

  installPhase = ''
    DESTDIR=$out PREFIX=/ make install
    wrapProgram $out/bin/clerk \
      --prefix PATH : "${lib.makeBinPath [ rofi mpc_cli perl util-linux libnotify ]}"
  '';

  meta = with lib; {
    description = "An MPD client built on top of rofi";
    homepage    = "https://github.com/carnager/clerk";
    license     = licenses.mit;
    maintainers = with maintainers; [ anderspapitto ];
  };
}