sbclPackages.nkeymaps: 20230214-git -> 1.1.0

This commit is contained in:
Vonfry 2023-10-21 19:09:08 +08:00
parent 6be2c349a3
commit 1c610c67f2
No known key found for this signature in database
GPG Key ID: E47DA4B266B726FA

View File

@ -329,14 +329,17 @@ let
lispLibs = with self; [ bordeaux-threads closer-mop serapeum ];
};
nkeymaps = build-asdf-system {
nkeymaps = build-asdf-system rec {
pname = "nkeymaps";
version = "20230214-git";
src = pkgs.fetchzip {
url = "http://beta.quicklisp.org/archive/nhooks/2023-02-14/nkeymaps-20230214-git.tgz";
sha256 = "197vxqby87vnpgcwchs3dqihk1gimp2cx9cc201pkdzvnbrixji6";
version = "1.1.0";
src = pkgs.fetchFromGitHub {
owner = "atlas-engineer";
repo = "nkeymaps";
rev = version;
hash = "sha256-ewMu2IgEzCYY72vG91IA7l8X78Ph6jpQvbKeOFZdAyM=";
};
lispLibs = with self; [ alexandria fset trivial-package-local-nicknames ];
lispLibs = with self; [ alexandria fset trivial-package-local-nicknames
str ];
};