-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lispPackages.quicklisp: 2018-04-30 -> 2018-08-31 ; regenerate packages
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.
- Loading branch information
Showing
102 changed files
with
666 additions
and
522 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
with import ../../../default.nix {}; | ||
runCommand "openssl-lib-marked" {} '' | ||
mkdir -p "$out/lib" | ||
for lib in ssl crypto; do | ||
version="${(builtins.parseDrvName openssl.name).version}" | ||
ln -s "${lib.getLib openssl}/lib/lib$lib.so" "$out/lib/lib$lib.so.$version" | ||
version="$(echo "$version" | sed -re 's/[a-z]+$//')" | ||
while test -n "$version"; do | ||
ln -sfT "${lib.getLib openssl}/lib/lib$lib.so" "$out/lib/lib$lib.so.$version" | ||
nextversion="''${version%.*}" | ||
if test "$version" = "$nextversion"; then | ||
version= | ||
else | ||
version="$nextversion" | ||
fi | ||
done | ||
done | ||
'' |
2 changes: 1 addition & 1 deletion
2
pkgs/development/lisp-modules/quicklisp-to-nix-output/alexandria.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ fetchurl, ... }: | ||
args @ { fetchurl, ... }: | ||
rec { | ||
baseName = ''alexandria''; | ||
version = ''20170830-git''; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pkgs/development/lisp-modules/quicklisp-to-nix-output/asdf-system-connections.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pkgs/development/lisp-modules/quicklisp-to-nix-output/chipz.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ fetchurl, ... }: | ||
args @ { fetchurl, ... }: | ||
rec { | ||
baseName = ''chipz''; | ||
version = ''20180328-git''; | ||
|
2 changes: 1 addition & 1 deletion
2
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-aa.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ fetchurl, ... }: | ||
args @ { fetchurl, ... }: | ||
rec { | ||
baseName = ''cl-aa''; | ||
version = ''cl-vectors-20180228-git''; | ||
|
2 changes: 1 addition & 1 deletion
2
pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-anonfun.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ fetchurl, ... }: | ||
args @ { fetchurl, ... }: | ||
rec { | ||
baseName = ''cl-anonfun''; | ||
version = ''20111203-git''; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.