diff options
author | Vincent Ambo <tazjin@google.com> | 2020-01-22T01·28+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-01-22T01·28+0000 |
commit | aab85ef0db43a34af1fe961c9f69b17a91b13e19 (patch) | |
tree | fdab08fb7fd23382798f3a1204322b058ae0e74f /overrides/lispPackages/quicklisp.nix | |
parent | 78db43898b2d1134a063e57300ee470cd1b8d1be (diff) |
chore(overrides): Remove lispPackages overrides r/441
No longer required since Gemma now uses buildLisp.nix
Diffstat (limited to 'overrides/lispPackages/quicklisp.nix')
-rw-r--r-- | overrides/lispPackages/quicklisp.nix | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/overrides/lispPackages/quicklisp.nix b/overrides/lispPackages/quicklisp.nix deleted file mode 100644 index 1d23db762d34..000000000000 --- a/overrides/lispPackages/quicklisp.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ 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; - })); -}) |