diff options
author | Vincent Ambo <mail@tazj.in> | 2019-11-15T23·46+0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-15T23·46+0000 |
commit | ae53bf30c3306eeb56731e6e7aefc2bab278c6e0 (patch) | |
tree | ed66073f8c7dc2f01814ae8cc786bdf32988f0bd /overrides/lispPackages/quicklisp.nix | |
parent | 9ba4bbb60954c3fafb5e5f0aa5f8ff478c09a600 (diff) | |
parent | ecd54d58b1863ccd84e6a85b161fb1ef066e5efd (diff) |
Merge pull request #9 from tazjin/feat/read-tree r/95
Configure automatic package layouts via repository structure
Diffstat (limited to 'overrides/lispPackages/quicklisp.nix')
-rw-r--r-- | overrides/lispPackages/quicklisp.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/overrides/lispPackages/quicklisp.nix b/overrides/lispPackages/quicklisp.nix new file mode 100644 index 000000000000..1d23db762d34 --- /dev/null +++ b/overrides/lispPackages/quicklisp.nix @@ -0,0 +1,26 @@ +{ lib, lispPackages }: + +let inherit (lispPackages) buildLispPackage qlOverrides fetchurl; +in lispPackages // lib.fix(self: { + "s-xml" = buildLispPackage + ((f: x: (x // (f x))) + (qlOverrides."s-xml" or (x: {})) + (import ./quicklisp-to-nix-output/s-xml.nix { + inherit fetchurl; + })); + + "s-sysdeps" = buildLispPackage + ((f: x: (x // (f x))) + (qlOverrides."s-sysdeps" or (x: {})) + (import ./quicklisp-to-nix-output/s-sysdeps.nix { + inherit fetchurl; + })); + + "cl-prevalence" = buildLispPackage + ((f: x: (x // (f x))) + (qlOverrides."cl-prevalence" or (x: {})) + (import ./quicklisp-to-nix-output/cl-prevalence.nix { + inherit fetchurl; + inherit (self) s-sysdeps s-xml; + })); +}) |