emacs manual-packages.nix: remove redundant nano-theme

This commit is contained in:
AndersonTorres 2022-11-19 20:08:11 -03:00
parent 75519d54a0
commit e492d287b5
2 changed files with 0 additions and 24 deletions

View File

@ -50,8 +50,6 @@ self: with self; {
_map = self.map;
};
nano-theme = callPackage ./manual-packages/nano-theme { };
ott-mode = callPackage ./manual-packages/ott-mode { };
perl-completion = callPackage ./manual-packages/perl-completion { };

View File

@ -1,22 +0,0 @@
{ trivialBuild
, fetchFromGitHub
, emacs
}:
trivialBuild rec {
pname = "nano-theme";
version = "0.pre+unstable=2021-06-29";
src = fetchFromGitHub {
owner = "rougier";
repo = pname;
rev = "4a231787a32b3019f9f0abb3511a112fd54bf685";
hash = "sha256-eco9BMKLhPuwFJb5QesbM6g3cZv3FdVvQ9fXq6D3Ifc=";
};
meta = {
homepage = "https://github.com/rougier/nano-theme";
description = "GNU Emacs / N Λ N O Theme";
inherit (emacs.meta) platforms;
};
}