nyxt: 2020-10-23 -> 2021-03-27

This commit is contained in:
Michael Raskin 2021-03-28 20:43:42 +02:00
parent 0032a3fc81
commit be2cb07963
4 changed files with 77 additions and 47 deletions

View File

@ -124,9 +124,8 @@ let lispPackages = rec {
}; };
nyxt = pkgs.lispPackages.buildLispPackage rec { nyxt = pkgs.lispPackages.buildLispPackage rec {
baseName = "nyxt"; baseName = "nyxt";
version = "2020-10-23"; version = "2021-03-27";
buildSystems = [ "nyxt" "nyxt-ext" ];
description = "Browser"; description = "Browser";
@ -143,59 +142,56 @@ let lispPackages = rec {
}; };
deps = with pkgs.lispPackages; [ deps = with pkgs.lispPackages; [
alexandria alexandria
bordeaux-threads bordeaux-threads
chanl calispel
cl-annot cl-css
cl-ansi-text cl-json
cl-containers cl-markup
cl-css cl-ppcre
cl-json cl-ppcre-unicode
cl-markup cl-prevalence
cl-ppcre closer-mop
cl-ppcre-unicode cl-containers
cl-prevalence cluffer
cl-webkit2 moptilities
closer-mop dexador
cluffer enchant
dbus file-attributes
dexador iolib
enchant local-time
fset log4cl
hu_dot_dwim_dot_defclass-star mk-string-metrics
ironclad osicat
local-time parenscript
log4cl quri
lparallel serapeum
mk-string-metrics str
osicat plump
parenscript swank
plump trivia
prove-asdf trivial-clipboard
quri trivial-features
serapeum trivial-package-local-nicknames
sqlite trivial-types
str unix-opts
swank cl-html-diff
trivia hu_dot_dwim_dot_defclass-star
trivial-clipboard cl-custom-hash-table
trivial-features fset
trivial-package-local-nicknames cl-cffi-gtk
trivial-types cl-webkit2
unix-opts
]; ];
src = pkgs.fetchFromGitHub { src = pkgs.fetchFromGitHub {
owner = "atlas-engineer"; owner = "atlas-engineer";
repo = "nyxt"; repo = "nyxt";
rev = "f744af5233b3636460ce71650de2b0c7dcb9fa8e"; rev = "8ef171fd1eb62d168defe4a2d7115393230314d1";
sha256 = "1m4jic7nbm2jmxlm8k0zqg62z91g2f2s86by086brgfw056idjmz"; sha256 = "sha256:1dz55mdmj68kmllih7ab70nmp0mwzqp9lh3im7kcjfmc1r64irdv";
# date = 2020-10-23T19:06:04+02:00; # date = 2021-03-27T09:10:00+00:00;
}; };
packageName = "nyxt"; packageName = "nyxt";
asdFilesToKeep = [ "nyxt.asd" "nyxt-ext.asd" ];
propagatedBuildInputs = [ propagatedBuildInputs = [
pkgs.libressl.out pkgs.libressl.out
pkgs.webkitgtk pkgs.webkitgtk

View File

@ -0,0 +1,25 @@
args @ { fetchurl, ... }:
rec {
baseName = ''cl-custom-hash-table'';
version = ''20201220-git'';
description = ''System lacks description'';
deps = [ ];
src = fetchurl {
url = ''http://beta.quicklisp.org/archive/cl-custom-hash-table/2020-12-20/cl-custom-hash-table-20201220-git.tgz'';
sha256 = ''1id16p7vdcgxzvrgk8h6fqi284hgd8cilbnbgsbrbd70n7nj8jg3'';
};
packageName = "cl-custom-hash-table";
asdFilesToKeep = ["cl-custom-hash-table.asd"];
overrides = x: x;
}
/* (SYSTEM cl-custom-hash-table DESCRIPTION System lacks description SHA256
1id16p7vdcgxzvrgk8h6fqi284hgd8cilbnbgsbrbd70n7nj8jg3 URL
http://beta.quicklisp.org/archive/cl-custom-hash-table/2020-12-20/cl-custom-hash-table-20201220-git.tgz
MD5 bd0f2f4a8e808911133af19c03e5c511 NAME cl-custom-hash-table FILENAME
cl-custom-hash-table DEPS NIL DEPENDENCIES NIL VERSION 20201220-git
SIBLINGS (cl-custom-hash-table-test) PARASITES NIL) */

View File

@ -11,6 +11,7 @@ blackbird
bordeaux-threads bordeaux-threads
calispel calispel
caveman caveman
cl-custom-hash-table
cffi cffi
cffi-grovel cffi-grovel
cffi-uffi-compat cffi-uffi-compat

View File

@ -3967,6 +3967,14 @@ let quicklisp-to-nix-packages = rec {
})); }));
"cl-custom-hash-table" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-custom-hash-table" or (x: {}))
(import ./quicklisp-to-nix-output/cl-custom-hash-table.nix {
inherit fetchurl;
}));
"caveman" = buildLispPackage "caveman" = buildLispPackage
((f: x: (x // (f x))) ((f: x: (x // (f x)))
(qlOverrides."caveman" or (x: {})) (qlOverrides."caveman" or (x: {}))