nixpkgs/pkgs/applications/misc/pell/default.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, scsh, sox, libnotify }:
2016-04-04 21:06:52 +00:00
stdenv.mkDerivation rec {
pname = "pell";
2017-12-22 02:55:55 +00:00
version = "0.0.4";
2016-04-04 21:06:52 +00:00
src = fetchFromGitHub {
owner = "ebzzry";
repo = pname;
2017-12-22 02:55:55 +00:00
rev = "f251625ece6bb5517227970287119e7d2dfcea8b";
sha256 = "0k8m1lv2kyrs8fylxmbgxg3jn65g57frf2bndc82gkr5svwb554a";
2016-04-04 21:06:52 +00:00
};
installPhase = ''
mkdir -p $out/bin
mkdir -p $out/share
cp pell $out/bin
2017-12-22 02:55:55 +00:00
cp resources/online.mp3 $out/share
cp resources/offline.mp3 $out/share
2016-04-04 21:06:52 +00:00
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 "
2017-12-22 02:55:55 +00:00
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"
2016-04-04 21:06:52 +00:00
'';
meta = with lib; {
homepage = "https://github.com/ebzzry/pell";
2017-10-21 02:20:53 +00:00
description = "A simple host availability monitor";
2016-04-04 21:06:52 +00:00
license = licenses.mit;
maintainers = [ maintainers.ebzzry ];
platforms = platforms.unix;
};
dontBuild = true;
}