nixpkgs/pkgs/applications/audio/clerk/default.nix

57 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, makeWrapper
, rofi
2022-01-25 02:15:41 +00:00
, mpc-cli
, perl
, util-linux
, python3Packages
, libnotify
}:
2016-10-13 05:07:43 +00:00
stdenv.mkDerivation {
pname = "clerk";
version = "unstable-2016-10-14";
2016-10-13 05:07:43 +00:00
src = fetchFromGitHub {
owner = "carnager";
repo = "clerk";
rev = "875963bcae095ac1db174627183c76ebe165f787";
sha256 = "0y045my65hr3hjyx13jrnyg6g3wb41phqb1m7azc4l6vx6r4124b";
};
nativeBuildInputs = [ makeWrapper ];
2021-03-25 10:35:40 +00:00
buildInputs = [ python3Packages.mpd2 ];
2016-10-13 05:07:43 +00:00
2017-08-10 13:49:56 +00:00
dontBuild = true;
2016-10-13 05:07:43 +00:00
2021-03-25 10:35:40 +00:00
strictDeps = true;
2022-01-25 02:15:41 +00:00
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
'';
2016-10-13 05:07:43 +00:00
meta = with lib; {
2016-10-13 05:07:43 +00:00
description = "An MPD client built on top of rofi";
homepage = "https://github.com/carnager/clerk";
license = licenses.mit;
2016-10-13 05:07:43 +00:00
maintainers = with maintainers; [ anderspapitto ];
};
}