blob: 2bde901ad43ef16523ad7a6210803f5434b4ebe6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
args @ { fetchurl, ... }:
rec {
baseName = ''plump'';
version = ''20180228-git'';
description = ''An XML / XHTML / HTML parser that aims to be as lenient as possible.'';
deps = [ args."array-utils" args."documentation-utils" args."trivial-indent" ];
src = fetchurl {
url = ''http://beta.quicklisp.org/archive/plump/2018-02-28/plump-20180228-git.tgz'';
sha256 = ''0q8carmnrh1qdhdag9w5iikdlga8g7jn824bjypzx0iwyqn1ap01'';
};
packageName = "plump";
asdFilesToKeep = ["plump.asd"];
overrides = x: x;
}
/* (SYSTEM plump DESCRIPTION
An XML / XHTML / HTML parser that aims to be as lenient as possible. SHA256
0q8carmnrh1qdhdag9w5iikdlga8g7jn824bjypzx0iwyqn1ap01 URL
http://beta.quicklisp.org/archive/plump/2018-02-28/plump-20180228-git.tgz
MD5 f210bc3fae00bac3140d939cbb2fd1de NAME plump FILENAME plump DEPS
((NAME array-utils FILENAME array-utils)
(NAME documentation-utils FILENAME documentation-utils)
(NAME trivial-indent FILENAME trivial-indent))
DEPENDENCIES (array-utils documentation-utils trivial-indent) VERSION
20180228-git SIBLINGS (plump-dom plump-lexer plump-parser) PARASITES NIL) */
|