5048b0d1f9
Added a wrapper package that creates symlinks to OpenSSL libraries with the actual versions, because we have 1.0.2 with .so-suffix .1.0.0 and cl-async-ssl is unhappy because of that. I continue to dislike cl-postgres and simple-date upstream packaging.
27 lines
956 B
Nix
27 lines
956 B
Nix
args @ { fetchurl, ... }:
|
|
rec {
|
|
baseName = ''trivial-features'';
|
|
version = ''20161204-git'';
|
|
|
|
description = ''Ensures consistent *FEATURES* across multiple CLs.'';
|
|
|
|
deps = [ ];
|
|
|
|
src = fetchurl {
|
|
url = ''http://beta.quicklisp.org/archive/trivial-features/2016-12-04/trivial-features-20161204-git.tgz'';
|
|
sha256 = ''0i2zyc9c7jigljxll29sh9gv1fawdsf0kq7s86pwba5zi99q2ij2'';
|
|
};
|
|
|
|
packageName = "trivial-features";
|
|
|
|
asdFilesToKeep = ["trivial-features.asd"];
|
|
overrides = x: x;
|
|
}
|
|
/* (SYSTEM trivial-features DESCRIPTION
|
|
Ensures consistent *FEATURES* across multiple CLs. SHA256
|
|
0i2zyc9c7jigljxll29sh9gv1fawdsf0kq7s86pwba5zi99q2ij2 URL
|
|
http://beta.quicklisp.org/archive/trivial-features/2016-12-04/trivial-features-20161204-git.tgz
|
|
MD5 07497e3fd92e68027a96f877cfe62bd4 NAME trivial-features FILENAME
|
|
trivial-features DEPS NIL DEPENDENCIES NIL VERSION 20161204-git SIBLINGS
|
|
(trivial-features-tests) PARASITES NIL) */
|