Commit Graph

282 Commits

Author SHA1 Message Date
Kasper Gałkowski
6817b72ca3 lisp-modules: set maintainers to the lisp team 2023-04-05 20:52:27 +02:00
Kasper Gałkowski
44b62979c7 lisp-modules: reduce number of packages build on Hydra 2023-04-05 17:11:55 +02:00
Robert Schütz
f60d291f64 lisp-modules: don't use mysql alias 2023-04-03 18:01:52 -07:00
Robert Schütz
a182101ae7 lisp-modules: don't use mysql-client alias 2023-04-03 17:56:23 -07:00
Kasper Gałkowski
819d1d78e3 lisp-modules: use meta.mainProgram before pname 2023-03-15 19:06:47 +01:00
Kasper Gałkowski
bf643838f3 lisp-modules: fix typos 2023-03-15 19:06:13 +01:00
Kasper Gałkowski
dae0dca5d1 lisp-modules: second version of wrapLisp
The previous approach of trying to make both the `override` mechanism from
`mkDerivation` and the `overrideScope'` mechanism from `newScope` work together
resulted in hard to understand code, and there was a bug where once overridden
packages would lose the changes on next override with `packageOverrides`.

It's not ideal still, because Lisps created by `mkDerivation` will lose their
`pkgs` after using `override`.
2023-03-11 19:09:25 +01:00
Kasper Gałkowski
84eea85ad9 lisp-modules: use wrapLisp to wrap Lisps
The previous approach of manually repeating a complex pattern inside Common Lisp
implementation package declarations was fragile and hard to change. After
reading python and lua modules code in Nixpkgs, I was able to come up with
something better.

The function `wrapLisp` doesn't need to be inside package declarations so all
the code for wrapping Lisps can be in `all-packages.nix`.

This works by wrapping the `override` function created from `mkDerivation` to
accept a new argument `packageOverrides`.

One problem with this is that `override.__functionArgs` disappears. But one can
look at the source code of a package to discover what can be overridden.
2023-03-11 15:11:38 +01:00
Kasper Gałkowski
653ba45834 sbclPackages.math: fix build
There was a compile-time pathname into the home directory. It was patched to be
a function that works on run-time.
2023-03-10 20:13:54 +01:00
Kasper Gałkowski
a0bdaf345b lisp-modules: replace "_" in package names with "__" for reversibility 2023-03-10 20:10:39 +01:00
Kasper Gałkowski
efe902542a sbclPackages.cl-gtk4: update to tip of trunk
Makes latest examples from upstream work
2023-03-02 21:12:47 +01:00
Kasper Gałkowski
092acca8b3 lisp-modules: make ql-import.lisp automatically pull the latest Quicklisp dist 2023-03-02 19:04:47 +01:00
Kasper Gałkowski
5f2e4cf4be sbclPackages.hu_dot_dwim_dot_graphviz: fix build
hu.dwim.graphviz didn't build because of lack of graphiz in nativeLibs
2023-03-02 19:04:47 +01:00
Kasper Gałkowski
254765f3d2 lisp-modules: make spec.flags a list of strings 2023-03-02 19:04:47 +01:00
Kasper Gałkowski
03ef1b250a nyxt: fix after major changes to lisp-modules 2023-03-02 19:04:47 +01:00
Kasper Gałkowski
e141ed8312 stumpwm: fix after major changes to lisp-modules 2023-03-02 19:04:47 +01:00
Kasper Gałkowski
9e860e41eb lisp-modules: init
From https://github.com/Uthar/nix-cl
Commit ebeb76057abf01029067f1ebe0ae6fae90848bfe
2023-03-02 19:04:47 +01:00
Kasper Gałkowski
04c276ac9c asdf_3_3: init at 3.3.6 2023-03-02 19:04:47 +01:00
Kasper Gałkowski
0467444d96 lisp-modules: remove both current implementations
In preparation for including another API based on github:uthar/nix-cl

This commit will surely temporarily break some packages, but at least it will
make reviewing such big changes.
2023-03-01 16:14:38 +01:00
sternenseemann
43c06b91b3 nyxt: disable webkit sandbox to workaround crash
https://github.com/atlas-engineer/nyxt/issues/1781
https://github.com/NixOS/nixpkgs/issues/158005
2022-07-16 18:39:38 +02:00
sternenseemann
c196a8136a nyxt: 2.2.3 -> 2.2.4 2022-07-16 18:39:38 +02:00
7c6f434c
8188f10752
Merge pull request #166430 from alyssais/openssl-static-retry
treewide: use lib.getLib for OpenSSL libraries
2022-04-02 12:59:55 +00:00
Ben Siraphob
61776f460f
treewide: remove stdenv from buildInputs 2022-03-31 11:19:30 -05:00
Alyssa Ross
fd78240ac8
treewide: use lib.getLib for OpenSSL libraries
At some point, I'd like to make another attempt at
71f1f4884b ("openssl: stop static binaries referencing libs"), which
was reverted in 195c7da07d.  One problem with my previous attempt is
that I moved OpenSSL's libraries to a lib output, but many dependent
packages were hardcoding the out output as the location of the
libraries.  This patch fixes every such case I could find in the tree.
It won't have any effect immediately, but will mean these packages
will automatically use an OpenSSL lib output if it is reintroduced in
future.

This patch should cause very few rebuilds, because it shouldn't make
any change at all to most packages I'm touching.  The few rebuilds
that are introduced come from when I've changed a package builder not
to use variable names like openssl.out in scripts / substitution
patterns, which would be confusing since they don't hardcode the
output any more.

I started by making the following global replacements:

    ${pkgs.openssl.out}/lib -> ${lib.getLib pkgs.openssl}/lib
    ${openssl.out}/lib -> ${lib.getLib openssl}/lib

Then I removed the ".out" suffix when part of the argument to
lib.makeLibraryPath, since that function uses lib.getLib internally.

Then I fixed up cases where openssl was part of the -L flag to the
compiler/linker, since that unambigously is referring to libraries.

Then I manually investigated and fixed the following packages:

 - pycurl
 - citrix-workspace
 - ppp
 - wraith
 - unbound
 - gambit
 - acl2

I'm reasonably confindent in my fixes for all of them.

For acl2, since the openssl library paths are manually provided above
anyway, I don't think openssl is required separately as a build input
at all.  Removing it doesn't make a difference to the output size, the
file list, or the closure.

I've tested evaluation with the OfBorg meta checks, to protect against
introducing evaluation failures.
2022-03-30 15:10:00 +00:00
Felix Buehler
339ccbe933 lispPackages.quicklisp: switch to fetchFromGitHub 2022-03-16 00:45:13 +01:00
Daniel Nagy
8dc3d9e152
lispPackages: add nbd package 2022-03-11 12:31:06 +01:00
Daniel Nagy
751945feae
lispPackages: add flow 2022-03-11 12:30:57 +01:00
Daniel Nagy
5914dc2929
lispPackages: add legit 2022-03-11 12:30:48 +01:00
Daniel Nagy
74f880ab58
lispPackages.slynk: init at sly-20210411-git 2022-02-22 10:56:38 +01:00
Daniel Nagy
95ca2ce47a
lispPackages.mmap: init at 20201220-git 2022-02-22 10:55:27 +01:00
Felix Buehler
70ee115571 from-quicklisp: move urls-from-page.sh to its directory 2022-01-30 23:34:40 +01:00
Daniel Nagy
5239058d52
lispPackages: add lisp-binary and quasiquote-2.0 2022-01-29 17:49:49 +01:00
Daniel Nagy
0047897994
lispPackages: add float-features 2022-01-29 17:49:49 +01:00
7c6f434c
ad80b50646
Merge pull request #154749 from sternenseemann/cl-mustache-init
lispPackages.cl-mustache: init at 20200325-git
2022-01-12 12:01:21 +00:00
7c6f434c
754afda4c9
Merge pull request #154738 from sternenseemann/quicklisp-help-screen
quicklisp-to-nix: document --cacheFaslDir option in help screen
2022-01-12 12:00:12 +00:00
sternenseemann
861f4e4c01 lispPackages.cl-mustache: init at 20200325-git 2022-01-12 12:25:53 +01:00
sternenseemann
4f15ea2f31 quicklisp-to-nix: fix trailing whitespace 2022-01-12 11:16:22 +01:00
sternenseemann
54d4b7079b quicklisp-to-nix: document --cacheFaslDir option in help screen 2022-01-12 11:04:30 +01:00
Nick Cao
509a9f5f14
asdf: fix cross compilation and set strictDeps 2022-01-09 09:50:32 +08:00
7c6f434c
63b7c8bda8
Merge pull request #151221 from sternenseemann/quicklisp-2021-12-09
quicklispPackages: 2021-10-21 -> 2021-12-09
2021-12-24 17:19:26 +00:00
sternenseemann
9f166940e4 nyxt: 2.0.0 -> 2.2.3 2021-12-24 17:30:24 +01:00
sternenseemann
5acf832654 quicklispPackages.spinneret: init at 20211020-git 2021-12-24 17:06:06 +01:00
Felix Buehler
31a706d0db asdf: refactor 2021-12-21 12:52:15 +01:00
sternenseemann
16c4d72e1d lispPackages.quicklisp: distinfo 2021-10-21 -> 2021-12-09
lispPackages.uax-15: drop upstreamed patch

lispPackages.mgl-mat: add missing dependency cl-fad

lispPackages.cl-qrencode: init in preparation for nyxt 2.2.3
2021-12-18 18:27:36 +01:00
github-actions[bot]
017d32f216
Merge master into staging-next 2021-11-28 18:00:57 +00:00
Daniel Nagy
c80cb3ca81
lispPackages: add cl-shellwords 2021-11-28 13:49:59 +01:00
Victor Engmark
57b496ea98 misc: Replace tab indentation with spaces
I've tried to be consistent, using four or eight spaces to line up
with existing code.
2021-11-14 16:04:46 +13:00
xaverdh
03a257e5a3
treewide: quote urls according to rfc 0045 (#145260)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-11-10 11:37:56 +01:00
Michael Raskin
9679be6d87
Merge pull request #142445 from nuddyco/quicklisp-2021-10-21
quicklisp: 2021-08-07 -> 2021-10-21
2021-10-21 09:22:56 +00:00
Daniel Nagy
c82af6b2a9
lispPackages.hunchensocket: init at 20180711-git (#139905) 2021-10-21 09:20:56 +00:00