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.
25 lines
729 B
Nix
25 lines
729 B
Nix
args @ { fetchurl, ... }:
|
|
rec {
|
|
baseName = ''rt'';
|
|
version = ''20101006-git'';
|
|
|
|
description = ''MIT Regression Tester'';
|
|
|
|
deps = [ ];
|
|
|
|
src = fetchurl {
|
|
url = ''http://beta.quicklisp.org/archive/rt/2010-10-06/rt-20101006-git.tgz'';
|
|
sha256 = ''1jncar0xwkqk8yrc2dln389ivvgzs7ijdhhs3zpfyi5d21f0qa1v'';
|
|
};
|
|
|
|
packageName = "rt";
|
|
|
|
asdFilesToKeep = ["rt.asd"];
|
|
overrides = x: x;
|
|
}
|
|
/* (SYSTEM rt DESCRIPTION MIT Regression Tester SHA256
|
|
1jncar0xwkqk8yrc2dln389ivvgzs7ijdhhs3zpfyi5d21f0qa1v URL
|
|
http://beta.quicklisp.org/archive/rt/2010-10-06/rt-20101006-git.tgz MD5
|
|
94a56c473399572ca835ac91c77c04e5 NAME rt FILENAME rt DEPS NIL DEPENDENCIES
|
|
NIL VERSION 20101006-git SIBLINGS NIL PARASITES NIL) */
|