diff options
author | Vincent Ambo <tazjin@google.com> | 2019-09-02T00·24+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-09-02T00·24+0100 |
commit | b43e5529f770818710fffd2458e320f49272d26f (patch) | |
tree | 6db312785f934137d3245b2f6261986a576b263b /third_party/common_lisp/quicklisp-to-nix-output/s-xml.nix | |
parent | a635beabfa965436e411d76473714f8b53d29549 (diff) |
feat(third_party): Add missing Quicklisp packages for Gemma r/69
Gemma depends on cl-prevalence, which isn't in the nixpkgs Quicklisp snapshot. This adds the package and its dependencies to the overlay.
Diffstat (limited to 'third_party/common_lisp/quicklisp-to-nix-output/s-xml.nix')
-rw-r--r-- | third_party/common_lisp/quicklisp-to-nix-output/s-xml.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/third_party/common_lisp/quicklisp-to-nix-output/s-xml.nix b/third_party/common_lisp/quicklisp-to-nix-output/s-xml.nix new file mode 100644 index 000000000000..ec12dde52231 --- /dev/null +++ b/third_party/common_lisp/quicklisp-to-nix-output/s-xml.nix @@ -0,0 +1,27 @@ +args @ { fetchurl, ... }: +rec { + baseName = ''s-xml''; + version = ''20150608-git''; + + parasites = [ "s-xml.examples" "s-xml.test" ]; + + description = ''Simple Common Lisp XML Parser''; + + deps = [ ]; + + src = fetchurl { + url = ''http://beta.quicklisp.org/archive/s-xml/2015-06-08/s-xml-20150608-git.tgz''; + sha256 = ''0cy36wqzasqma4maw9djq1vdwsp5hxq8svlbnhbv9sq9zzys5viq''; + }; + + packageName = "s-xml"; + + asdFilesToKeep = ["s-xml.asd"]; + overrides = x: x; +} +/* (SYSTEM s-xml DESCRIPTION Simple Common Lisp XML Parser SHA256 + 0cy36wqzasqma4maw9djq1vdwsp5hxq8svlbnhbv9sq9zzys5viq URL + http://beta.quicklisp.org/archive/s-xml/2015-06-08/s-xml-20150608-git.tgz + MD5 9c31c80f0661777c493fab683f776716 NAME s-xml FILENAME s-xml DEPS NIL + DEPENDENCIES NIL VERSION 20150608-git SIBLINGS NIL PARASITES + (s-xml.examples s-xml.test)) */ |