Commit 1652c8cf authored by rewine's avatar rewine Committed by Jörg Thalheim
Browse files

clerk: unstable-2016-10-14 -> unstable-2023-01-14

parent b13b23f4
Loading
Loading
Loading
Loading
+50 −26
Original line number Diff line number Diff line
@@ -3,55 +3,79 @@
, fetchFromGitHub
, makeWrapper
, rofi
, tmux
, fzf
, mpc-cli
, perl
, util-linux
, python3Packages
, libnotify
, perlPackages
}:

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

  src = fetchFromGitHub {
    owner = "carnager";
    repo = "clerk";
    rev = "875963bcae095ac1db174627183c76ebe165f787";
    sha256 = "0y045my65hr3hjyx13jrnyg6g3wb41phqb1m7azc4l6vx6r4124b";
    rev = "90c0e702fc4f8b65f0ced7b8944c063629e3686d";
    hash = "sha256-nkm1vJaWgN8gOkmAbsjPfstax8TwUSkEzYKJ1iEz1hM";
  };

  postPatch = ''
    substituteInPlace clerk_rating_client.service \
      --replace "/usr" "$out"
  '';

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

  buildInputs = with perlPackages; [
    perl
    DataMessagePack
    DataSectionSimple
    ConfigSimple
    TryTiny
    IPCRun
    HTTPDate
    FileSlurper
    ArrayUtils
    NetMPD
  ];

  dontBuild = true;

  strictDeps = true;

  installPhase =
    let
  installPhase = ''
    runHook preInstall

    install -D clerk.pl $out/bin/clerk
    install -D clerk_rating_client $out/bin/clerk_rating_client
    install -D clerk_rating_client.service $out/lib/systemd/user/clerk_rating_client.service
    runHook postInstall
  '';

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

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

        runHook postInstall
    wrapProgram $out/bin/clerk --set PERL5LIB $PERL5LIB --prefix PATH : "${binPath}"
    wrapProgram $out/bin/clerk_rating_client --set PERL5LIB $PERL5LIB --prefix PATH : "${binPath}"
  '';

  meta = with lib; {
    description = "An MPD client built on top of rofi";
    description = "An MPD client based on rofi/fzf";
    homepage = "https://github.com/carnager/clerk";
    license = licenses.mit;
    broken = true; # not compatible with current version of rofi
    maintainers = with maintainers; [ anderspapitto ];
    maintainers = with maintainers; [ anderspapitto rewine ];
    mainProgram = "clerk";
  };
}