about summary refs log tree commit diff
path: root/pkgs/applications/audio/clerk/default.nix
blob: fa64cd74e71adfeb944ea3f51c8340cd78e5e70b (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{ lib
, stdenv
, fetchFromGitHub
, makeWrapper
, rofi
, mpc-cli
, perl
, util-linux
, python3Packages
, libnotify
}:

stdenv.mkDerivation {
  pname = "clerk";
  version = "unstable-2016-10-14";

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

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

  dontBuild = true;

  strictDeps = true;

  installPhase =
    let
      binPath = lib.makeBinPath [
        libnotify
        mpc-cli
        perl
        rofi
        util-linux
      ];
    in
      ''
        runHook preInstall

        DESTDIR=$out PREFIX=/ make install
        wrapProgram $out/bin/clerk --prefix PATH : "${binPath}"

        runHook postInstall
      '';

  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 ];
  };
}