Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
scsh,
|
|
sox,
|
|
libnotify,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "pell";
|
|
version = "0.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ebzzry";
|
|
repo = "pell";
|
|
rev = "f251625ece6bb5517227970287119e7d2dfcea8b";
|
|
sha256 = "0k8m1lv2kyrs8fylxmbgxg3jn65g57frf2bndc82gkr5svwb554a";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/share
|
|
cp pell $out/bin
|
|
cp resources/online.mp3 $out/share
|
|
cp resources/offline.mp3 $out/share
|
|
chmod +x $out/bin/pell
|
|
'';
|
|
|
|
postFixup = ''
|
|
substituteInPlace $out/bin/pell --replace "/usr/bin/env scsh" "${scsh}/bin/scsh"
|
|
substituteInPlace $out/bin/pell --replace "(play " "(${sox}/bin/play "
|
|
substituteInPlace $out/bin/pell --replace "(notify-send " "(${libnotify}/bin/notify-send "
|
|
substituteInPlace $out/bin/pell --replace "/usr/share/pell/online.mp3" "$out/share/online.mp3"
|
|
substituteInPlace $out/bin/pell --replace "/usr/share/pell/offline.mp3" "$out/share/offline.mp3"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ebzzry/pell";
|
|
description = "Simple host availability monitor";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.ebzzry ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "pell";
|
|
};
|
|
|
|
dontBuild = true;
|
|
}
|