emacsPackages.nano-theme: init at 2021-06-05
This commit is contained in:
parent
e4866dca0a
commit
d1ded9d599
2 changed files with 32 additions and 0 deletions
|
@ -207,6 +207,8 @@
|
||||||
|
|
||||||
perl-completion =
|
perl-completion =
|
||||||
callPackage ./perl-completion { };
|
callPackage ./perl-completion { };
|
||||||
|
nano-theme = callPackage ./nano-theme { };
|
||||||
|
|
||||||
|
|
||||||
pod-mode = callPackage ./pod-mode { };
|
pod-mode = callPackage ./pod-mode { };
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, emacs
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "nano-theme";
|
||||||
|
version = "2021-06-05";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rougier";
|
||||||
|
repo = pname;
|
||||||
|
rev = "99ff1c5e78296a073c6e63b966045e0d83a136e7";
|
||||||
|
hash = "sha256-IDVnl4J4hx2mlLaiA+tKxxRGcIyBULr2HBeY/GMHD90=";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
mkdir -p $out/share/emacs/site-lisp
|
||||||
|
install *.el $out/share/emacs/site-lisp
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "https://github.com/rougier/nano-theme";
|
||||||
|
description = "GNU Emacs / N Λ N O Theme";
|
||||||
|
inherit (emacs.meta) platforms;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue