2015-05-27 20:56:04 +01:00
|
|
|
{trivialBuild, lib, fetchFromGitHub}:
|
2014-01-21 00:12:55 +00:00
|
|
|
|
|
|
|
trivialBuild rec {
|
|
|
|
pname = "nyan-mode";
|
|
|
|
version = "20150128";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "TeMPOraL";
|
|
|
|
repo = pname;
|
|
|
|
rev = "41faa2c809da7b2cb3e6f8fadefae3f338ced3f2";
|
|
|
|
sha256 = "1idaac7sjc8hhbf5zif61ncg1pvg28c0qfihavdx61albww0ll7f";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./directory.patch ];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
substituteInPlace nyan-mode.el \
|
|
|
|
--replace "@OUT@" "$out/"
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
cp -r img $out
|
|
|
|
cp -r mus $out
|
|
|
|
'';
|
|
|
|
|
2015-05-27 20:56:04 +01:00
|
|
|
meta = with lib; {
|
2014-01-21 00:12:55 +00:00
|
|
|
description = "An analog indicator of the position in the buffer";
|
|
|
|
homepage = https://github.com/TeMPOraL/nyan-mode/;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2014-01-21 00:12:55 +00:00
|
|
|
};
|
|
|
|
}
|