lispPackages.cl-protobufs: init at 20170403-git
This commit is contained in:
parent
75ba415fbc
commit
0a4704bd19
3 changed files with 44 additions and 0 deletions
|
@ -0,0 +1,30 @@
|
||||||
|
args @ { fetchurl, ... }:
|
||||||
|
rec {
|
||||||
|
baseName = ''cl-protobufs'';
|
||||||
|
version = ''20170403-git'';
|
||||||
|
|
||||||
|
description = ''Protobufs for Common Lisp'';
|
||||||
|
|
||||||
|
deps = [ args."alexandria" args."babel" args."closer-mop" args."trivial-features" args."trivial-garbage" ];
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = ''http://beta.quicklisp.org/archive/cl-protobufs/2017-04-03/cl-protobufs-20170403-git.tgz'';
|
||||||
|
sha256 = ''0ibpl076k8gq79sacg96mzjf5hqkrxzi5wlx3bjap52pla53w4g5'';
|
||||||
|
};
|
||||||
|
|
||||||
|
packageName = "cl-protobufs";
|
||||||
|
|
||||||
|
asdFilesToKeep = ["cl-protobufs.asd"];
|
||||||
|
overrides = x: x;
|
||||||
|
}
|
||||||
|
/* (SYSTEM cl-protobufs DESCRIPTION Protobufs for Common Lisp SHA256
|
||||||
|
0ibpl076k8gq79sacg96mzjf5hqkrxzi5wlx3bjap52pla53w4g5 URL
|
||||||
|
http://beta.quicklisp.org/archive/cl-protobufs/2017-04-03/cl-protobufs-20170403-git.tgz
|
||||||
|
MD5 86c8da92b246b4b77d6107bc5dfaff08 NAME cl-protobufs FILENAME
|
||||||
|
cl-protobufs DEPS
|
||||||
|
((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel)
|
||||||
|
(NAME closer-mop FILENAME closer-mop)
|
||||||
|
(NAME trivial-features FILENAME trivial-features)
|
||||||
|
(NAME trivial-garbage FILENAME trivial-garbage))
|
||||||
|
DEPENDENCIES (alexandria babel closer-mop trivial-features trivial-garbage)
|
||||||
|
VERSION 20170403-git SIBLINGS (cl-protobufs-tests) PARASITES NIL) */
|
|
@ -33,6 +33,7 @@ closer-mop
|
||||||
cl-ppcre
|
cl-ppcre
|
||||||
cl-ppcre-template
|
cl-ppcre-template
|
||||||
cl-ppcre-unicode
|
cl-ppcre-unicode
|
||||||
|
cl-protobufs
|
||||||
cl-reexport
|
cl-reexport
|
||||||
cl-smtp
|
cl-smtp
|
||||||
clsql
|
clsql
|
||||||
|
|
|
@ -2012,6 +2012,19 @@ let quicklisp-to-nix-packages = rec {
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
||||||
|
"cl-protobufs" = buildLispPackage
|
||||||
|
((f: x: (x // (f x)))
|
||||||
|
(qlOverrides."cl-protobufs" or (x: {}))
|
||||||
|
(import ./quicklisp-to-nix-output/cl-protobufs.nix {
|
||||||
|
inherit fetchurl;
|
||||||
|
"alexandria" = quicklisp-to-nix-packages."alexandria";
|
||||||
|
"babel" = quicklisp-to-nix-packages."babel";
|
||||||
|
"closer-mop" = quicklisp-to-nix-packages."closer-mop";
|
||||||
|
"trivial-features" = quicklisp-to-nix-packages."trivial-features";
|
||||||
|
"trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage";
|
||||||
|
}));
|
||||||
|
|
||||||
|
|
||||||
"cl-ppcre-unicode" = buildLispPackage
|
"cl-ppcre-unicode" = buildLispPackage
|
||||||
((f: x: (x // (f x)))
|
((f: x: (x // (f x)))
|
||||||
(qlOverrides."cl-ppcre-unicode" or (x: {}))
|
(qlOverrides."cl-ppcre-unicode" or (x: {}))
|
||||||
|
|
Loading…
Reference in a new issue