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

40 lines
1.1 KiB
Nix
Raw Normal View History

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