Merge master into staging-next
This commit is contained in:
commit
f555f95ed8
@ -159,10 +159,9 @@ in
|
||||
###### implementation
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
systemd.services.logstash = with pkgs; {
|
||||
systemd.services.logstash = {
|
||||
description = "Logstash Daemon";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
environment = { JAVA_HOME = jre; };
|
||||
path = [ pkgs.bash ];
|
||||
serviceConfig = {
|
||||
ExecStartPre = ''${pkgs.coreutils}/bin/mkdir -p "${cfg.dataDir}" ; ${pkgs.coreutils}/bin/chmod 700 "${cfg.dataDir}"'';
|
||||
|
@ -120,6 +120,7 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
passthru.elkPackages = elk;
|
||||
testScript = ''
|
||||
import json
|
||||
|
||||
|
@ -35,13 +35,13 @@
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "strawberry";
|
||||
version = "0.9.1";
|
||||
version = "0.9.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jonaski";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-1aXHMvjLK5WiE0mut/a3ynuMfNHgPbUzAZdmaVJBDXQ=";
|
||||
sha256 = "sha256:0d9asg21j9ai23sb35cimws8bd8fsnpha777rgscraa7i09q0rx2";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
@ -67,7 +67,6 @@ mkDerivation rec {
|
||||
libselinux
|
||||
libsepol
|
||||
p11-kit
|
||||
util-linux
|
||||
]
|
||||
++ lib.optionals withGstreamer (with gst_all_1; [
|
||||
gstreamer
|
||||
@ -77,7 +76,11 @@ mkDerivation rec {
|
||||
])
|
||||
++ lib.optional withVlc libvlc;
|
||||
|
||||
nativeBuildInputs = [ cmake ninja pkg-config qttools ];
|
||||
nativeBuildInputs = [
|
||||
cmake ninja pkg-config qttools
|
||||
] ++ lib.optionals stdenv.isLinux [
|
||||
util-linux
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DUSE_SYSTEM_TAGLIB=ON"
|
||||
@ -91,7 +94,7 @@ mkDerivation rec {
|
||||
description = "Music player and music collection organizer";
|
||||
homepage = "https://www.strawberrymusicplayer.org/";
|
||||
changelog = "https://raw.githubusercontent.com/jonaski/strawberry/${version}/Changelog";
|
||||
license = licenses.gpl3;
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
# upstream says darwin should work but they lack maintainers as of 0.6.6
|
||||
platforms = platforms.linux;
|
||||
|
@ -18,14 +18,14 @@
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "jrnl";
|
||||
version = "2.7.1";
|
||||
version = "2.8";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jrnl-org";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1m1shgnvwzzs0g6ph7rprwxd7w8zj0x4sbgiqsv9z41k6li7xj4r";
|
||||
sha256 = "1zpsvrjhami9y7204yjbdzi04bkkz6i3apda9fh3hbq83y6wzprz";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ poetry ];
|
||||
|
22
pkgs/applications/networking/cluster/kconf/default.nix
Normal file
22
pkgs/applications/networking/cluster/kconf/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kconf";
|
||||
version = "1.10.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "particledecay";
|
||||
repo = "kconf";
|
||||
rev = "v${version}";
|
||||
sha256 = "NlTpHQFOJJcIt/xMT3fvdrlxANyg//wtYMmXzEtaFXo=";
|
||||
};
|
||||
|
||||
vendorSha256 = "2d4o87wE9QZltk2YOHc20XVYF8n0EOrDf5mJ6i6EB0c=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "An opinionated command line tool for managing multiple kubeconfigs";
|
||||
homepage = "https://github.com/particledecay/kconf";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ thmzlt ];
|
||||
};
|
||||
}
|
@ -2,7 +2,7 @@
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kube3d";
|
||||
version = "4.3.0";
|
||||
version = "4.4.0";
|
||||
|
||||
excludedPackages = "tools";
|
||||
|
||||
@ -10,7 +10,7 @@ buildGoModule rec {
|
||||
owner = "rancher";
|
||||
repo = "k3d";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-ybEYKr0rQY8Qg74V1mXqShq5Z2d/Adf0bSSbEMIyo3I=";
|
||||
sha256 = "sha256-+9VtFHZ4ZZiX04u5YvPoQaelH9Q9oKMrbFHFFiNUxBA=";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
@ -31,6 +31,14 @@ buildGoModule rec {
|
||||
--zsh <($out/bin/k3d completion zsh)
|
||||
'';
|
||||
|
||||
doInstallCheck = true;
|
||||
installCheckPhase = ''
|
||||
runHook preInstallCheck
|
||||
$out/bin/k3d --help
|
||||
$out/bin/k3d version | grep "k3d version v${version}"
|
||||
runHook postInstallCheck
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/rancher/k3d";
|
||||
changelog = "https://github.com/rancher/k3d/blob/v${version}/CHANGELOG.md";
|
||||
|
26
pkgs/applications/networking/cluster/pgo-client/default.nix
Normal file
26
pkgs/applications/networking/cluster/pgo-client/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "pgo-client";
|
||||
version = "4.6.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "CrunchyData";
|
||||
repo = "postgres-operator";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-zPFsLKbuVq2wMjFsqjBGiatPBwGR/X6q3mj8o5BE+r0=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-DU1kc7YDQ+denj6tHVGt79s494aBFZ2KM7PVSn951KI=";
|
||||
|
||||
subPackages = [ "cmd/pgo" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A CLI client for Crunchy PostgreSQL Kubernetes Operator";
|
||||
homepage = "https://github.com/CrunchyData/postgres-operator";
|
||||
changelog = "https://github.com/CrunchyData/postgres-operator/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.bryanasdev000 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem 'terraforming'
|
@ -0,0 +1,92 @@
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
aws-eventstream (1.1.1)
|
||||
aws-partitions (1.436.0)
|
||||
aws-sdk-autoscaling (1.59.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-cloudwatch (1.50.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-core (3.113.0)
|
||||
aws-eventstream (~> 1, >= 1.0.2)
|
||||
aws-partitions (~> 1, >= 1.239.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
jmespath (~> 1.0)
|
||||
aws-sdk-dynamodb (1.60.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-ec2 (1.230.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-efs (1.39.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-elasticache (1.54.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-elasticloadbalancing (1.31.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-elasticloadbalancingv2 (1.61.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-iam (1.51.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-kms (1.43.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-rds (1.117.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-redshift (1.58.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-route53 (1.48.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-s3 (1.93.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sdk-kms (~> 1)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-sns (1.39.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-sqs (1.38.0)
|
||||
aws-sdk-core (~> 3, >= 3.112.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sigv4 (1.2.3)
|
||||
aws-eventstream (~> 1, >= 1.0.2)
|
||||
jmespath (1.4.0)
|
||||
multi_json (1.12.2)
|
||||
terraforming (0.18.0)
|
||||
aws-sdk-autoscaling (~> 1)
|
||||
aws-sdk-cloudwatch (~> 1)
|
||||
aws-sdk-dynamodb (~> 1.18)
|
||||
aws-sdk-ec2 (~> 1)
|
||||
aws-sdk-efs (~> 1, >= 1.13.0)
|
||||
aws-sdk-elasticache (~> 1)
|
||||
aws-sdk-elasticloadbalancing (~> 1)
|
||||
aws-sdk-elasticloadbalancingv2 (~> 1)
|
||||
aws-sdk-iam (~> 1)
|
||||
aws-sdk-kms (~> 1)
|
||||
aws-sdk-rds (~> 1)
|
||||
aws-sdk-redshift (~> 1)
|
||||
aws-sdk-route53 (~> 1)
|
||||
aws-sdk-s3 (~> 1)
|
||||
aws-sdk-sns (~> 1)
|
||||
aws-sdk-sqs (~> 1)
|
||||
multi_json (~> 1.12.1)
|
||||
thor
|
||||
thor (1.1.0)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
terraforming
|
||||
|
||||
BUNDLED WITH
|
||||
2.1.4
|
@ -0,0 +1,20 @@
|
||||
{ lib, bundlerApp, bundlerUpdateScript, ruby }:
|
||||
|
||||
bundlerApp rec {
|
||||
inherit ruby;
|
||||
|
||||
pname = "terraforming";
|
||||
gemdir = ./.;
|
||||
exes = [ "terraforming" ];
|
||||
|
||||
passthru.updateScript = bundlerUpdateScript "terraforming";
|
||||
|
||||
meta = with lib; {
|
||||
inherit (ruby.meta) platforms;
|
||||
|
||||
description = "Export existing AWS resources to Terraform style (tf, tfstate)";
|
||||
homepage = "https://github.com/dtan4/terraforming";
|
||||
license = with licenses; mit;
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
};
|
||||
}
|
261
pkgs/applications/networking/cluster/terraforming/gemset.nix
Normal file
261
pkgs/applications/networking/cluster/terraforming/gemset.nix
Normal file
@ -0,0 +1,261 @@
|
||||
{
|
||||
aws-eventstream = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0jfki5ikfr8ln5cdgv4iv1643kax0bjpp29jh78chzy713274jh3";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.1.1";
|
||||
};
|
||||
aws-partitions = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1gn09cafg2n6gdc3ja80r3xjllly05r0m7x3w3b3rywir6k6ai4f";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.436.0";
|
||||
};
|
||||
aws-sdk-autoscaling = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0br6hfi2i5rri8ivamkmnx00p640s24pqmp8s67sm5asvdfzx4vr";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.59.0";
|
||||
};
|
||||
aws-sdk-cloudwatch = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0xga00dn925rfgz4p2zf734aaik00dqb9psll27lg5626jd6xr0c";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.50.0";
|
||||
};
|
||||
aws-sdk-core = {
|
||||
dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1774xyfqf307qvh5npvf01948ayrviaadq576r4jxin6xvlg8j9z";
|
||||
type = "gem";
|
||||
};
|
||||
version = "3.113.0";
|
||||
};
|
||||
aws-sdk-dynamodb = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1dfsmkzv9cziykzc56g9pwxmbdqjpykxka3fq07b6iarzh38j1i3";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.60.0";
|
||||
};
|
||||
aws-sdk-ec2 = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1c7qqly2f94db3643xwjj9mcb34vilx11awbv40v2f8z7xisvvz3";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.230.0";
|
||||
};
|
||||
aws-sdk-efs = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0kmpz86sxkm6nzcf80nd65902fy29hz8lvx1kjwl5idx07ls8pnd";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.39.0";
|
||||
};
|
||||
aws-sdk-elasticache = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "05kn2k437rnsf9nkwc1x5i2klrasjgyk1pj89f2gb0za86swjcza";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.54.0";
|
||||
};
|
||||
aws-sdk-elasticloadbalancing = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0j3px8dn2yxsnmy010kfkwa1a2flbdxachmly20f436ysi3ql3v3";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.31.0";
|
||||
};
|
||||
aws-sdk-elasticloadbalancingv2 = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "16hknbqv5s1im04dch9kdbc79x072613imdih62w48mvsf12c1mm";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.61.0";
|
||||
};
|
||||
aws-sdk-iam = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0x2768blsy8lpib9pi2f2d67flabar3bq6chmbj07iqzpwvpz569";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.51.0";
|
||||
};
|
||||
aws-sdk-kms = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "01pd0f4srsa65zl4zq4014p9j5yrr2yy9h9ab17g3w9d0qqm2vsh";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.43.0";
|
||||
};
|
||||
aws-sdk-rds = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0hwxgcka6bmzdn5pazss0fv8xgbbgas4h2cwpzwhkjkwhh23dx6a";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.117.0";
|
||||
};
|
||||
aws-sdk-redshift = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1sp186v00lj517hia6rsn28ph8rqknz9r79vbkbyh5fgrbh2j6bd";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.58.0";
|
||||
};
|
||||
aws-sdk-route53 = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0p9g0scw9c6qancdwvaw3kkj3pywchy2vl3qz2rqpjncqvj04pn5";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.48.0";
|
||||
};
|
||||
aws-sdk-s3 = {
|
||||
dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0iy2f9z43pc6fgwmga2cz8nf9gy2pwcw4jib141vp8z8dhylqj94";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.93.0";
|
||||
};
|
||||
aws-sdk-sns = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0pmxi871r2nkl6by89vsy05ahk8dr6hmkny56fycrby6r9kri9q4";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.39.0";
|
||||
};
|
||||
aws-sdk-sqs = {
|
||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "01m2l8y4q4fixjvl70w5bi1ihmmx2y4krms9kkjwd3ch21y14hif";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.38.0";
|
||||
};
|
||||
aws-sigv4 = {
|
||||
dependencies = ["aws-eventstream"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1d9zhmi3mpfzkkpg7yw7s9r1dwk157kh9875j3c7gh6cy95lmmaw";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.2.3";
|
||||
};
|
||||
jmespath = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1d4wac0dcd1jf6kc57891glih9w57552zgqswgy74d1xhgnk0ngf";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.4.0";
|
||||
};
|
||||
multi_json = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1raim9ddjh672m32psaa9niw67ywzjbxbdb8iijx3wv9k5b0pk2x";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.12.2";
|
||||
};
|
||||
terraforming = {
|
||||
dependencies = ["aws-sdk-autoscaling" "aws-sdk-cloudwatch" "aws-sdk-dynamodb" "aws-sdk-ec2" "aws-sdk-efs" "aws-sdk-elasticache" "aws-sdk-elasticloadbalancing" "aws-sdk-elasticloadbalancingv2" "aws-sdk-iam" "aws-sdk-kms" "aws-sdk-rds" "aws-sdk-redshift" "aws-sdk-route53" "aws-sdk-s3" "aws-sdk-sns" "aws-sdk-sqs" "multi_json" "thor"];
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "03fyhqx6bxpbn26pbcz748gz7rh7q3r9r0jimq7vj07fl454fmwh";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.18.0";
|
||||
};
|
||||
thor = {
|
||||
groups = ["default"];
|
||||
platforms = [];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "18yhlvmfya23cs3pvhr1qy38y41b6mhr5q9vwv5lrgk16wmf3jna";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.1.0";
|
||||
};
|
||||
}
|
@ -2,16 +2,16 @@
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "dnscontrol";
|
||||
version = "3.7.0";
|
||||
version = "3.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "StackExchange";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-el94Iq7/+1FfGpqbhKEO6FGpaCxoueoc/+Se+WfT+G0=";
|
||||
sha256 = "sha256-VSNvyigaGfGDbcng6ltdq+X35zT2tb2p4j/4KAjd1Yk=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-MSHg1RWjbXm1pf6HTyJL4FcnLuacL9fO1F6zbouVkWg=";
|
||||
vendorSha256 = "sha256-VU0uJDp5koVU+wDwr3ctrDY0R3vd/JmpA7gtWWpwpfw=";
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
|
@ -3,24 +3,28 @@
|
||||
with lib;
|
||||
stdenv.mkDerivation {
|
||||
pname = "aliza";
|
||||
version = "1.98.43";
|
||||
version = "1.98.57";
|
||||
src = fetchurl {
|
||||
# See https://www.aliza-dicom-viewer.com/download
|
||||
url = "https://drive.google.com/uc?export=download&id=1HiDYUVN30oSWZWt3HBp7gNRBCLLtJM1I";
|
||||
sha256 = "0d70q67j2q0wdn4m2fxljqb97jwmscqgg3rm1rkb77fi2ik206ra";
|
||||
urls = [
|
||||
"https://drive.google.com/uc?export=download&id=1-AXa3tjy_onecW2k7ftjAQl0KGTb0B1Y"
|
||||
"https://web.archive.org/web/20210327224315/https://doc-0s-0s-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/1lgjid9ti29rdf5ebmd7o58iqhs3gfpo/1616884950000/16072287944266838401/*/1-AXa3tjy_onecW2k7ftjAQl0KGTb0B1Y?e=download"
|
||||
];
|
||||
sha256 = "01qk2gadmc24pmfdnmpiz7vgfiqkvhznyq9rsr153frscg76gc9b";
|
||||
name = "aliza.rpm";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildInputs = [ rpmextract ];
|
||||
nativeBuildInputs = [ makeWrapper rpmextract ];
|
||||
|
||||
unpackCmd = "rpmextract $curSrc";
|
||||
|
||||
patchPhase = ''
|
||||
postPatch = ''
|
||||
sed -i 's/^Exec.*$/Exec=aliza %F/' share/applications/aliza.desktop
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out
|
||||
cp -r bin share $out
|
||||
|
||||
|
@ -18,14 +18,14 @@ in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "simgrid";
|
||||
version = "3.26";
|
||||
version = "3.27";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "framagit.org";
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0kwiggdjqjhjvmwb1m7hb9clvm3xz948fy5ia67dif2pakwad754";
|
||||
sha256 = "13nwsyk030fhl3srhpc28j5s6594z0m38606f4ygc4qhv9wxw011";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake perl python3 boost valgrind ]
|
||||
@ -105,6 +105,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://simgrid.org/";
|
||||
license = licenses.lgpl2Plus;
|
||||
maintainers = with maintainers; [ mickours mpoquet ];
|
||||
platforms = ["x86_64-linux"];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -0,0 +1,35 @@
|
||||
{ stdenv, lib, fetchgit, libfprint-tod }:
|
||||
stdenv.mkDerivation {
|
||||
pname = "libfprint-2-tod1-goodix";
|
||||
version = "0.0.6";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.launchpad.net/~oem-solutions-engineers/libfprint-2-tod1-goodix/+git/libfprint-2-tod1-goodix";
|
||||
rev = "882735c6366fbe30149eea5cfd6d0ddff880f0e4"; # droped-lp1880058 on 20202-11-25
|
||||
sha256 = "sha256-Uv+Rr4V31DyaZFOj79Lpyfl3G6zVWShh20roI0AvMPU=";
|
||||
};
|
||||
|
||||
buildPhase = ''
|
||||
patchelf \
|
||||
--set-rpath ${lib.makeLibraryPath [ libfprint-tod ]} \
|
||||
usr/lib/x86_64-linux-gnu/libfprint-2/tod-1/libfprint-tod-goodix-53xc-0.0.6.so
|
||||
|
||||
ldd usr/lib/x86_64-linux-gnu/libfprint-2/tod-1/libfprint-tod-goodix-53xc-0.0.6.so
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p "$out/usr/lib/libfprint-2/tod-1/"
|
||||
mkdir -p "$out/usr/lib/udev/rules.d/"
|
||||
|
||||
cp usr/lib/x86_64-linux-gnu/libfprint-2/tod-1/libfprint-tod-goodix-53xc-$version.so "$out/usr/lib/libfprint-2/tod-1/"
|
||||
cp lib/udev/rules.d/60-libfprint-2-tod1-goodix.rules "$out/usr/lib/udev/rules.d/"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Goodix driver module for libfprint-2-tod Touch OEM Driver";
|
||||
homepage = "https://git.launchpad.net/~oem-solutions-engineers/libfprint-2-tod1-goodix/+git/libfprint-2-tod1-goodix/";
|
||||
license = licenses.unfree;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ grahamc ];
|
||||
};
|
||||
}
|
40
pkgs/development/libraries/libfprint-tod/default.nix
Normal file
40
pkgs/development/libraries/libfprint-tod/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib
|
||||
, libfprint
|
||||
, fetchFromGitLab
|
||||
}:
|
||||
|
||||
# for the curious, "tod" means "Touch OEM Drivers" meaning it can load
|
||||
# external .so's.
|
||||
libfprint.overrideAttrs ({ postPatch ? "", mesonFlags ? [], ... }: let
|
||||
version = "1.90.7+git20210222+tod1";
|
||||
in {
|
||||
pname = "libfprint-tod";
|
||||
inherit version;
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "gitlab.freedesktop.org";
|
||||
owner = "3v1n0";
|
||||
repo = "libfprint";
|
||||
rev = "v${version}";
|
||||
sha256 = "0cj7iy5799pchyzqqncpkhibkq012g3bdpn18pfb19nm43svhn4j";
|
||||
};
|
||||
|
||||
mesonFlags = mesonFlags ++ [
|
||||
"-Dudev_hwdb_dir=${placeholder "out"}/lib/udev/hwdb.d"
|
||||
];
|
||||
|
||||
|
||||
postPatch = ''
|
||||
${postPatch}
|
||||
patchShebangs ./tests/*.py ./tests/*.sh
|
||||
'';
|
||||
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://gitlab.freedesktop.org/3v1n0/libfprint";
|
||||
description = "A library designed to make it easy to add support for consumer fingerprint readers, with support for loaded drivers";
|
||||
license = licenses.lgpl21;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ grahamc ];
|
||||
};
|
||||
})
|
@ -37,6 +37,7 @@
|
||||
, libGL
|
||||
, libGLU
|
||||
, libintl
|
||||
, libmanette
|
||||
, openjpeg
|
||||
, enableGeoLocation ? true
|
||||
, geoclue2
|
||||
@ -59,7 +60,7 @@ with lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "webkitgtk";
|
||||
version = "2.30.6";
|
||||
version = "2.32.0";
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
@ -67,7 +68,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://webkitgtk.org/releases/${pname}-${version}.tar.xz";
|
||||
sha256 = "07kwkn7gnlfw4idl5vyyzhzbj2bjzvjrclbikn9vaw0pm73nwwsh";
|
||||
sha256 = "1w3b0w8izp0i070grhv19j631sdcd0mcqnjnax13k8mdx7dg8zcx";
|
||||
};
|
||||
|
||||
patches = optionals stdenv.isLinux [
|
||||
@ -115,6 +116,7 @@ stdenv.mkDerivation rec {
|
||||
libgcrypt
|
||||
libidn
|
||||
libintl
|
||||
libmanette
|
||||
libnotify
|
||||
libpthreadstubs
|
||||
libsecret
|
||||
|
@ -124,9 +124,8 @@ let lispPackages = rec {
|
||||
};
|
||||
nyxt = pkgs.lispPackages.buildLispPackage rec {
|
||||
baseName = "nyxt";
|
||||
version = "2020-10-23";
|
||||
version = "2021-03-27";
|
||||
|
||||
buildSystems = [ "nyxt" "nyxt-ext" ];
|
||||
|
||||
description = "Browser";
|
||||
|
||||
@ -143,59 +142,56 @@ let lispPackages = rec {
|
||||
};
|
||||
|
||||
deps = with pkgs.lispPackages; [
|
||||
alexandria
|
||||
bordeaux-threads
|
||||
chanl
|
||||
cl-annot
|
||||
cl-ansi-text
|
||||
cl-containers
|
||||
cl-css
|
||||
cl-json
|
||||
cl-markup
|
||||
cl-ppcre
|
||||
cl-ppcre-unicode
|
||||
cl-prevalence
|
||||
cl-webkit2
|
||||
closer-mop
|
||||
cluffer
|
||||
dbus
|
||||
dexador
|
||||
enchant
|
||||
fset
|
||||
hu_dot_dwim_dot_defclass-star
|
||||
ironclad
|
||||
local-time
|
||||
log4cl
|
||||
lparallel
|
||||
mk-string-metrics
|
||||
osicat
|
||||
parenscript
|
||||
plump
|
||||
prove-asdf
|
||||
quri
|
||||
serapeum
|
||||
sqlite
|
||||
str
|
||||
swank
|
||||
trivia
|
||||
trivial-clipboard
|
||||
trivial-features
|
||||
trivial-package-local-nicknames
|
||||
trivial-types
|
||||
unix-opts
|
||||
alexandria
|
||||
bordeaux-threads
|
||||
calispel
|
||||
cl-css
|
||||
cl-json
|
||||
cl-markup
|
||||
cl-ppcre
|
||||
cl-ppcre-unicode
|
||||
cl-prevalence
|
||||
closer-mop
|
||||
cl-containers
|
||||
cluffer
|
||||
moptilities
|
||||
dexador
|
||||
enchant
|
||||
file-attributes
|
||||
iolib
|
||||
local-time
|
||||
log4cl
|
||||
mk-string-metrics
|
||||
osicat
|
||||
parenscript
|
||||
quri
|
||||
serapeum
|
||||
str
|
||||
plump
|
||||
swank
|
||||
trivia
|
||||
trivial-clipboard
|
||||
trivial-features
|
||||
trivial-package-local-nicknames
|
||||
trivial-types
|
||||
unix-opts
|
||||
cl-html-diff
|
||||
hu_dot_dwim_dot_defclass-star
|
||||
cl-custom-hash-table
|
||||
fset
|
||||
cl-cffi-gtk
|
||||
cl-webkit2
|
||||
];
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "atlas-engineer";
|
||||
repo = "nyxt";
|
||||
rev = "f744af5233b3636460ce71650de2b0c7dcb9fa8e";
|
||||
sha256 = "1m4jic7nbm2jmxlm8k0zqg62z91g2f2s86by086brgfw056idjmz";
|
||||
# date = 2020-10-23T19:06:04+02:00;
|
||||
rev = "8ef171fd1eb62d168defe4a2d7115393230314d1";
|
||||
sha256 = "sha256:1dz55mdmj68kmllih7ab70nmp0mwzqp9lh3im7kcjfmc1r64irdv";
|
||||
# date = 2021-03-27T09:10:00+00:00;
|
||||
};
|
||||
|
||||
packageName = "nyxt";
|
||||
|
||||
asdFilesToKeep = [ "nyxt.asd" "nyxt-ext.asd" ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pkgs.libressl.out
|
||||
pkgs.webkitgtk
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''_3bmd-ext-code-blocks'';
|
||||
version = ''3bmd-20201220-git'';
|
||||
baseName = "_3bmd-ext-code-blocks";
|
||||
version = "3bmd-20201220-git";
|
||||
|
||||
description = ''extension to 3bmd implementing github style ``` delimited code blocks, with support for syntax highlighting using colorize, pygments, or chroma'';
|
||||
description = "extension to 3bmd implementing github style ``` delimited code blocks, with support for syntax highlighting using colorize, pygments, or chroma";
|
||||
|
||||
deps = [ args."_3bmd" args."alexandria" args."colorize" args."esrap" args."html-encode" args."split-sequence" args."trivial-with-current-source-form" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/3bmd/2020-12-20/3bmd-20201220-git.tgz'';
|
||||
sha256 = ''0hcx8p8la3fmwhj8ddqik7bwrn9rvf5mcv6m77glimwckh51na71'';
|
||||
url = "http://beta.quicklisp.org/archive/3bmd/2020-12-20/3bmd-20201220-git.tgz";
|
||||
sha256 = "0hcx8p8la3fmwhj8ddqik7bwrn9rvf5mcv6m77glimwckh51na71";
|
||||
};
|
||||
|
||||
packageName = "3bmd-ext-code-blocks";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''_3bmd'';
|
||||
version = ''20201220-git'';
|
||||
baseName = "_3bmd";
|
||||
version = "20201220-git";
|
||||
|
||||
description = ''markdown processor in CL using esrap parser.'';
|
||||
description = "markdown processor in CL using esrap parser.";
|
||||
|
||||
deps = [ args."alexandria" args."esrap" args."split-sequence" args."trivial-with-current-source-form" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/3bmd/2020-12-20/3bmd-20201220-git.tgz'';
|
||||
sha256 = ''0hcx8p8la3fmwhj8ddqik7bwrn9rvf5mcv6m77glimwckh51na71'';
|
||||
url = "http://beta.quicklisp.org/archive/3bmd/2020-12-20/3bmd-20201220-git.tgz";
|
||||
sha256 = "0hcx8p8la3fmwhj8ddqik7bwrn9rvf5mcv6m77glimwckh51na71";
|
||||
};
|
||||
|
||||
packageName = "3bmd";
|
||||
|
@ -1,18 +1,19 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''access'';
|
||||
version = ''20210124-git'';
|
||||
baseName = "access";
|
||||
version = "20210124-git";
|
||||
|
||||
parasites = [ "access-test" ];
|
||||
|
||||
description = ''A library providing functions that unify data-structure access for Common Lisp:
|
||||
access and (setf access)'';
|
||||
description = "A library providing functions that unify data-structure access for Common Lisp:
|
||||
access and (setf access)";
|
||||
|
||||
deps = [ args."alexandria" args."anaphora" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/access/2021-01-24/access-20210124-git.tgz'';
|
||||
sha256 = ''1n4j15v1ikspchcbb0bn15kk3lh78f6bxk56cs4arimm8bisyqlq'';
|
||||
url = "http://beta.quicklisp.org/archive/access/2021-01-24/access-20210124-git.tgz";
|
||||
sha256 = "1n4j15v1ikspchcbb0bn15kk3lh78f6bxk56cs4arimm8bisyqlq";
|
||||
};
|
||||
|
||||
packageName = "access";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''acclimation'';
|
||||
version = ''20200925-git'';
|
||||
baseName = "acclimation";
|
||||
version = "20200925-git";
|
||||
|
||||
description = ''Library supporting internationalization'';
|
||||
description = "Library supporting internationalization";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/acclimation/2020-09-25/acclimation-20200925-git.tgz'';
|
||||
sha256 = ''11vw1h5zxicj5qxb1smiyjxafw8xk0isnzcf5g0lqis3y9ssqxbw'';
|
||||
url = "http://beta.quicklisp.org/archive/acclimation/2020-09-25/acclimation-20200925-git.tgz";
|
||||
sha256 = "11vw1h5zxicj5qxb1smiyjxafw8xk0isnzcf5g0lqis3y9ssqxbw";
|
||||
};
|
||||
|
||||
packageName = "acclimation";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''alexandria'';
|
||||
version = ''20200925-git'';
|
||||
baseName = "alexandria";
|
||||
version = "20200925-git";
|
||||
|
||||
description = ''Alexandria is a collection of portable public domain utilities.'';
|
||||
description = "Alexandria is a collection of portable public domain utilities.";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/alexandria/2020-09-25/alexandria-20200925-git.tgz'';
|
||||
sha256 = ''1cpvnzfs807ah07hrk8kplim6ryzqs4r35ym03cpky5xdl8c89fl'';
|
||||
url = "http://beta.quicklisp.org/archive/alexandria/2020-09-25/alexandria-20200925-git.tgz";
|
||||
sha256 = "1cpvnzfs807ah07hrk8kplim6ryzqs4r35ym03cpky5xdl8c89fl";
|
||||
};
|
||||
|
||||
packageName = "alexandria";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''anaphora'';
|
||||
version = ''20210124-git'';
|
||||
baseName = "anaphora";
|
||||
version = "20210124-git";
|
||||
|
||||
parasites = [ "anaphora/test" ];
|
||||
|
||||
description = ''The Anaphoric Macro Package from Hell'';
|
||||
description = "The Anaphoric Macro Package from Hell";
|
||||
|
||||
deps = [ args."rt" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/anaphora/2021-01-24/anaphora-20210124-git.tgz'';
|
||||
sha256 = ''0b4xwrnv007sfcqkxkarrbf99v3md8h199z1z69r4vx7r5pq2i4v'';
|
||||
url = "http://beta.quicklisp.org/archive/anaphora/2021-01-24/anaphora-20210124-git.tgz";
|
||||
sha256 = "0b4xwrnv007sfcqkxkarrbf99v3md8h199z1z69r4vx7r5pq2i4v";
|
||||
};
|
||||
|
||||
packageName = "anaphora";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''arnesi'';
|
||||
version = ''20170403-git'';
|
||||
baseName = "arnesi";
|
||||
version = "20170403-git";
|
||||
|
||||
parasites = [ "arnesi/cl-ppcre-extras" "arnesi/slime-extras" ];
|
||||
|
||||
description = ''A bag-of-tools utilities library used to aid in implementing the bese.it toolkit'';
|
||||
description = "A bag-of-tools utilities library used to aid in implementing the bese.it toolkit";
|
||||
|
||||
deps = [ args."alexandria" args."cl-ppcre" args."closer-mop" args."collectors" args."iterate" args."swank" args."symbol-munger" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/arnesi/2017-04-03/arnesi-20170403-git.tgz'';
|
||||
sha256 = ''01kirjpgv5pgbcdxjrnw3ld4jw7wrqm3rgqnxwac4gxaphr2s6q4'';
|
||||
url = "http://beta.quicklisp.org/archive/arnesi/2017-04-03/arnesi-20170403-git.tgz";
|
||||
sha256 = "01kirjpgv5pgbcdxjrnw3ld4jw7wrqm3rgqnxwac4gxaphr2s6q4";
|
||||
};
|
||||
|
||||
packageName = "arnesi";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''array-utils'';
|
||||
version = ''20201220-git'';
|
||||
baseName = "array-utils";
|
||||
version = "20201220-git";
|
||||
|
||||
description = ''A few utilities for working with arrays.'';
|
||||
description = "A few utilities for working with arrays.";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/array-utils/2020-12-20/array-utils-20201220-git.tgz'';
|
||||
sha256 = ''11y6k8gzzcj00jyccg2k9nh6rvivcvh23z4yzjfly7adygd3n717'';
|
||||
url = "http://beta.quicklisp.org/archive/array-utils/2020-12-20/array-utils-20201220-git.tgz";
|
||||
sha256 = "11y6k8gzzcj00jyccg2k9nh6rvivcvh23z4yzjfly7adygd3n717";
|
||||
};
|
||||
|
||||
packageName = "array-utils";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''asdf-package-system'';
|
||||
version = ''20150608-git'';
|
||||
baseName = "asdf-package-system";
|
||||
version = "20150608-git";
|
||||
|
||||
description = ''System lacks description'';
|
||||
description = "System lacks description";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/asdf-package-system/2015-06-08/asdf-package-system-20150608-git.tgz'';
|
||||
sha256 = ''17lfwfc15hcag8a2jsaxkx42wmz2mwkvxf6vb2h9cim7dwsnyy29'';
|
||||
url = "http://beta.quicklisp.org/archive/asdf-package-system/2015-06-08/asdf-package-system-20150608-git.tgz";
|
||||
sha256 = "17lfwfc15hcag8a2jsaxkx42wmz2mwkvxf6vb2h9cim7dwsnyy29";
|
||||
};
|
||||
|
||||
packageName = "asdf-package-system";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''asdf-system-connections'';
|
||||
version = ''20170124-git'';
|
||||
baseName = "asdf-system-connections";
|
||||
version = "20170124-git";
|
||||
|
||||
description = ''Allows for ASDF system to be connected so that auto-loading may occur.'';
|
||||
description = "Allows for ASDF system to be connected so that auto-loading may occur.";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/asdf-system-connections/2017-01-24/asdf-system-connections-20170124-git.tgz'';
|
||||
sha256 = ''0h8237bq3niw6glcsps77n1ykcmc5bjkcrbjyxjgkmcb1c5kwwpq'';
|
||||
url = "http://beta.quicklisp.org/archive/asdf-system-connections/2017-01-24/asdf-system-connections-20170124-git.tgz";
|
||||
sha256 = "0h8237bq3niw6glcsps77n1ykcmc5bjkcrbjyxjgkmcb1c5kwwpq";
|
||||
};
|
||||
|
||||
packageName = "asdf-system-connections";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''babel'';
|
||||
version = ''20200925-git'';
|
||||
baseName = "babel";
|
||||
version = "20200925-git";
|
||||
|
||||
description = ''Babel, a charset conversion library.'';
|
||||
description = "Babel, a charset conversion library.";
|
||||
|
||||
deps = [ args."alexandria" args."trivial-features" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/babel/2020-09-25/babel-20200925-git.tgz'';
|
||||
sha256 = ''1hpjm2whw7zla9igzj50y3nibii0mfg2a6y6nslaf5vpkni88jfi'';
|
||||
url = "http://beta.quicklisp.org/archive/babel/2020-09-25/babel-20200925-git.tgz";
|
||||
sha256 = "1hpjm2whw7zla9igzj50y3nibii0mfg2a6y6nslaf5vpkni88jfi";
|
||||
};
|
||||
|
||||
packageName = "babel";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''blackbird'';
|
||||
version = ''20160531-git'';
|
||||
baseName = "blackbird";
|
||||
version = "20160531-git";
|
||||
|
||||
description = ''A promise implementation for Common Lisp.'';
|
||||
description = "A promise implementation for Common Lisp.";
|
||||
|
||||
deps = [ args."vom" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/blackbird/2016-05-31/blackbird-20160531-git.tgz'';
|
||||
sha256 = ''0l053fb5fdz1q6dyfgys6nmbairc3aig4wjl5abpf8b1paf7gzq9'';
|
||||
url = "http://beta.quicklisp.org/archive/blackbird/2016-05-31/blackbird-20160531-git.tgz";
|
||||
sha256 = "0l053fb5fdz1q6dyfgys6nmbairc3aig4wjl5abpf8b1paf7gzq9";
|
||||
};
|
||||
|
||||
packageName = "blackbird";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''bordeaux-threads'';
|
||||
version = ''v0.8.8'';
|
||||
baseName = "bordeaux-threads";
|
||||
version = "v0.8.8";
|
||||
|
||||
parasites = [ "bordeaux-threads/test" ];
|
||||
|
||||
description = ''Bordeaux Threads makes writing portable multi-threaded apps simple.'';
|
||||
description = "Bordeaux Threads makes writing portable multi-threaded apps simple.";
|
||||
|
||||
deps = [ args."alexandria" args."fiveam" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/bordeaux-threads/2020-06-10/bordeaux-threads-v0.8.8.tgz'';
|
||||
sha256 = ''1ppb7lvr796k1j4hi0jnp717v9zxy6vq4f5cyzgn7svg1ic6l0pp'';
|
||||
url = "http://beta.quicklisp.org/archive/bordeaux-threads/2020-06-10/bordeaux-threads-v0.8.8.tgz";
|
||||
sha256 = "1ppb7lvr796k1j4hi0jnp717v9zxy6vq4f5cyzgn7svg1ic6l0pp";
|
||||
};
|
||||
|
||||
packageName = "bordeaux-threads";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''buildnode-xhtml'';
|
||||
version = ''buildnode-20170403-git'';
|
||||
baseName = "buildnode-xhtml";
|
||||
version = "buildnode-20170403-git";
|
||||
|
||||
description = ''Tool for building up an xml dom of an excel spreadsheet nicely.'';
|
||||
description = "Tool for building up an xml dom of an excel spreadsheet nicely.";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."buildnode" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."closure-common" args."closure-html" args."collectors" args."cxml" args."flexi-streams" args."iterate" args."named-readtables" args."puri" args."split-sequence" args."swank" args."symbol-munger" args."trivial-features" args."trivial-gray-streams" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz'';
|
||||
sha256 = ''1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6'';
|
||||
url = "http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz";
|
||||
sha256 = "1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6";
|
||||
};
|
||||
|
||||
packageName = "buildnode-xhtml";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''buildnode'';
|
||||
version = ''20170403-git'';
|
||||
baseName = "buildnode";
|
||||
version = "20170403-git";
|
||||
|
||||
parasites = [ "buildnode-test" ];
|
||||
|
||||
description = ''Tool for building up an xml dom nicely.'';
|
||||
description = "Tool for building up an xml dom nicely.";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."buildnode-xhtml" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."closer-mop" args."closure-common" args."closure-html" args."collectors" args."cxml" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" args."puri" args."split-sequence" args."swank" args."symbol-munger" args."trivial-features" args."trivial-gray-streams" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz'';
|
||||
sha256 = ''1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6'';
|
||||
url = "http://beta.quicklisp.org/archive/buildnode/2017-04-03/buildnode-20170403-git.tgz";
|
||||
sha256 = "1gb3zsp4g31iscvvhvb99z0i7lfn1g3493q6sgpr46fmn2vdwwb6";
|
||||
};
|
||||
|
||||
packageName = "buildnode";
|
||||
|
@ -1,18 +1,19 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''calispel'';
|
||||
version = ''20170830-git'';
|
||||
baseName = "calispel";
|
||||
version = "20170830-git";
|
||||
|
||||
parasites = [ "calispel-test" ];
|
||||
|
||||
description = ''Thread-safe message-passing channels, in the style of
|
||||
the occam programming language.'';
|
||||
description = "Thread-safe message-passing channels, in the style of
|
||||
the occam programming language.";
|
||||
|
||||
deps = [ args."alexandria" args."bordeaux-threads" args."eager-future2" args."jpl-queues" args."jpl-util" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/calispel/2017-08-30/calispel-20170830-git.tgz'';
|
||||
sha256 = ''0qwmzmyh63jlw5bdv4wf458n1dz9k77gd5b4ix1kd6xrzx247k7i'';
|
||||
url = "http://beta.quicklisp.org/archive/calispel/2017-08-30/calispel-20170830-git.tgz";
|
||||
sha256 = "0qwmzmyh63jlw5bdv4wf458n1dz9k77gd5b4ix1kd6xrzx247k7i";
|
||||
};
|
||||
|
||||
packageName = "calispel";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''caveman'';
|
||||
version = ''20200325-git'';
|
||||
baseName = "caveman";
|
||||
version = "20200325-git";
|
||||
|
||||
description = ''Web Application Framework for Common Lisp'';
|
||||
description = "Web Application Framework for Common Lisp";
|
||||
|
||||
deps = [ args."alexandria" args."anaphora" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."chipz" args."chunga" args."circular-streams" args."cl_plus_ssl" args."cl-annot" args."cl-ansi-text" args."cl-base64" args."cl-colors" args."cl-colors2" args."cl-cookie" args."cl-emb" args."cl-fad" args."cl-ppcre" args."cl-project" args."cl-reexport" args."cl-syntax" args."cl-syntax-annot" args."cl-utilities" args."clack" args."clack-handler-hunchentoot" args."clack-socket" args."clack-test" args."clack-v1-compat" args."dexador" args."dissect" args."do-urlencode" args."fast-http" args."fast-io" args."flexi-streams" args."http-body" args."hunchentoot" args."ironclad" args."jonathan" args."lack" args."lack-component" args."lack-middleware-backtrace" args."lack-util" args."let-plus" args."local-time" args."map-set" args."marshal" args."md5" args."myway" args."named-readtables" args."proc-parse" args."prove" args."quri" args."rfc2388" args."rove" args."smart-buffer" args."split-sequence" args."static-vectors" args."trivial-backtrace" args."trivial-features" args."trivial-garbage" args."trivial-gray-streams" args."trivial-mimes" args."trivial-types" args."usocket" args."xsubseq" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/caveman/2020-03-25/caveman-20200325-git.tgz'';
|
||||
sha256 = ''0s134lamlyll4ad0380rj0hkiy9gakly7cb6sjr1yg2yd6ydz1py'';
|
||||
url = "http://beta.quicklisp.org/archive/caveman/2020-03-25/caveman-20200325-git.tgz";
|
||||
sha256 = "0s134lamlyll4ad0380rj0hkiy9gakly7cb6sjr1yg2yd6ydz1py";
|
||||
};
|
||||
|
||||
packageName = "caveman";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cffi-grovel'';
|
||||
version = ''cffi_0.23.0'';
|
||||
baseName = "cffi-grovel";
|
||||
version = "cffi_0.23.0";
|
||||
|
||||
description = ''The CFFI Groveller'';
|
||||
description = "The CFFI Groveller";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."cffi" args."cffi-toolchain" args."trivial-features" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz'';
|
||||
sha256 = ''1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck'';
|
||||
url = "http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz";
|
||||
sha256 = "1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck";
|
||||
};
|
||||
|
||||
packageName = "cffi-grovel";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cffi-toolchain'';
|
||||
version = ''cffi_0.23.0'';
|
||||
baseName = "cffi-toolchain";
|
||||
version = "cffi_0.23.0";
|
||||
|
||||
description = ''The CFFI toolchain'';
|
||||
description = "The CFFI toolchain";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz'';
|
||||
sha256 = ''1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck'';
|
||||
url = "http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz";
|
||||
sha256 = "1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck";
|
||||
};
|
||||
|
||||
packageName = "cffi-toolchain";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cffi-uffi-compat'';
|
||||
version = ''cffi_0.23.0'';
|
||||
baseName = "cffi-uffi-compat";
|
||||
version = "cffi_0.23.0";
|
||||
|
||||
description = ''UFFI Compatibility Layer for CFFI'';
|
||||
description = "UFFI Compatibility Layer for CFFI";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz'';
|
||||
sha256 = ''1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck'';
|
||||
url = "http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz";
|
||||
sha256 = "1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck";
|
||||
};
|
||||
|
||||
packageName = "cffi-uffi-compat";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cffi'';
|
||||
version = ''cffi_0.23.0'';
|
||||
baseName = "cffi";
|
||||
version = "cffi_0.23.0";
|
||||
|
||||
parasites = [ "cffi/c2ffi" "cffi/c2ffi-generator" ];
|
||||
|
||||
description = ''The Common Foreign Function Interface'';
|
||||
description = "The Common Foreign Function Interface";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."cl-json" args."cl-ppcre" args."trivial-features" args."uiop" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz'';
|
||||
sha256 = ''1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck'';
|
||||
url = "http://beta.quicklisp.org/archive/cffi/2020-07-15/cffi_0.23.0.tgz";
|
||||
sha256 = "1szpbg5m5fjq7bpkblflpnwmgz3ncsvp1y43g3jzwlk7yfxrwxck";
|
||||
};
|
||||
|
||||
packageName = "cffi";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''chanl'';
|
||||
version = ''20210124-git'';
|
||||
baseName = "chanl";
|
||||
version = "20210124-git";
|
||||
|
||||
parasites = [ "chanl/examples" "chanl/tests" ];
|
||||
|
||||
description = ''Communicating Sequential Process support for Common Lisp'';
|
||||
description = "Communicating Sequential Process support for Common Lisp";
|
||||
|
||||
deps = [ args."alexandria" args."bordeaux-threads" args."fiveam" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/chanl/2021-01-24/chanl-20210124-git.tgz'';
|
||||
sha256 = ''1lb0k5nh51f8hskpm1pma5ds4lk1zpbk9czpw9bk8hdykr178mzc'';
|
||||
url = "http://beta.quicklisp.org/archive/chanl/2021-01-24/chanl-20210124-git.tgz";
|
||||
sha256 = "1lb0k5nh51f8hskpm1pma5ds4lk1zpbk9czpw9bk8hdykr178mzc";
|
||||
};
|
||||
|
||||
packageName = "chanl";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''chipz'';
|
||||
version = ''20190202-git'';
|
||||
baseName = "chipz";
|
||||
version = "20190202-git";
|
||||
|
||||
description = ''A library for decompressing deflate, zlib, and gzip data'';
|
||||
description = "A library for decompressing deflate, zlib, and gzip data";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/chipz/2019-02-02/chipz-20190202-git.tgz'';
|
||||
sha256 = ''1vk8nml2kvkpwydcnm49gz2j9flvl8676kbvci5qa7qm286dhn5a'';
|
||||
url = "http://beta.quicklisp.org/archive/chipz/2019-02-02/chipz-20190202-git.tgz";
|
||||
sha256 = "1vk8nml2kvkpwydcnm49gz2j9flvl8676kbvci5qa7qm286dhn5a";
|
||||
};
|
||||
|
||||
packageName = "chipz";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''chunga'';
|
||||
version = ''20200427-git'';
|
||||
baseName = "chunga";
|
||||
version = "20200427-git";
|
||||
|
||||
description = ''System lacks description'';
|
||||
description = "System lacks description";
|
||||
|
||||
deps = [ args."trivial-gray-streams" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/chunga/2020-04-27/chunga-20200427-git.tgz'';
|
||||
sha256 = ''0p6dlnan6raincd682brcjbklyvmkfkhz0yzp2bkfw67s9615bkk'';
|
||||
url = "http://beta.quicklisp.org/archive/chunga/2020-04-27/chunga-20200427-git.tgz";
|
||||
sha256 = "0p6dlnan6raincd682brcjbklyvmkfkhz0yzp2bkfw67s9615bkk";
|
||||
};
|
||||
|
||||
packageName = "chunga";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''circular-streams'';
|
||||
version = ''20161204-git'';
|
||||
baseName = "circular-streams";
|
||||
version = "20161204-git";
|
||||
|
||||
description = ''Circularly readable streams for Common Lisp'';
|
||||
description = "Circularly readable streams for Common Lisp";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/circular-streams/2016-12-04/circular-streams-20161204-git.tgz'';
|
||||
sha256 = ''1i29b9sciqs5x59hlkdj2r4siyqgrwj5hb4lnc80jgfqvzbq4128'';
|
||||
url = "http://beta.quicklisp.org/archive/circular-streams/2016-12-04/circular-streams-20161204-git.tgz";
|
||||
sha256 = "1i29b9sciqs5x59hlkdj2r4siyqgrwj5hb4lnc80jgfqvzbq4128";
|
||||
};
|
||||
|
||||
packageName = "circular-streams";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-aa'';
|
||||
version = ''cl-vectors-20180228-git'';
|
||||
baseName = "cl-aa";
|
||||
version = "cl-vectors-20180228-git";
|
||||
|
||||
description = ''cl-aa: polygon rasterizer'';
|
||||
description = "cl-aa: polygon rasterizer";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz'';
|
||||
sha256 = ''0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz";
|
||||
sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly";
|
||||
};
|
||||
|
||||
packageName = "cl-aa";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-annot'';
|
||||
version = ''20150608-git'';
|
||||
baseName = "cl-annot";
|
||||
version = "20150608-git";
|
||||
|
||||
description = ''Python-like Annotation Syntax for Common Lisp'';
|
||||
description = "Python-like Annotation Syntax for Common Lisp";
|
||||
|
||||
deps = [ args."alexandria" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-annot/2015-06-08/cl-annot-20150608-git.tgz'';
|
||||
sha256 = ''0ixsp20rk498phv3iivipn3qbw7a7x260x63hc6kpv2s746lpdg3'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-annot/2015-06-08/cl-annot-20150608-git.tgz";
|
||||
sha256 = "0ixsp20rk498phv3iivipn3qbw7a7x260x63hc6kpv2s746lpdg3";
|
||||
};
|
||||
|
||||
packageName = "cl-annot";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-anonfun'';
|
||||
version = ''20111203-git'';
|
||||
baseName = "cl-anonfun";
|
||||
version = "20111203-git";
|
||||
|
||||
description = ''Anonymous function helpers for Common Lisp'';
|
||||
description = "Anonymous function helpers for Common Lisp";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-anonfun/2011-12-03/cl-anonfun-20111203-git.tgz'';
|
||||
sha256 = ''16r3v3yba41smkqpz0qvzabkxashl39klfb6vxhzbly696x87p1m'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-anonfun/2011-12-03/cl-anonfun-20111203-git.tgz";
|
||||
sha256 = "16r3v3yba41smkqpz0qvzabkxashl39klfb6vxhzbly696x87p1m";
|
||||
};
|
||||
|
||||
packageName = "cl-anonfun";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-ansi-text'';
|
||||
version = ''20210124-git'';
|
||||
baseName = "cl-ansi-text";
|
||||
version = "20210124-git";
|
||||
|
||||
description = ''ANSI control string characters, focused on color'';
|
||||
description = "ANSI control string characters, focused on color";
|
||||
|
||||
deps = [ args."alexandria" args."cl-colors2" args."cl-ppcre" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-ansi-text/2021-01-24/cl-ansi-text-20210124-git.tgz'';
|
||||
sha256 = ''1l7slqk26xznfyn0zpp5l32v6xfpj4qj42h4x4ds5s1yncq306cm'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-ansi-text/2021-01-24/cl-ansi-text-20210124-git.tgz";
|
||||
sha256 = "1l7slqk26xznfyn0zpp5l32v6xfpj4qj42h4x4ds5s1yncq306cm";
|
||||
};
|
||||
|
||||
packageName = "cl-ansi-text";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-async-repl'';
|
||||
version = ''cl-async-20210228-git'';
|
||||
baseName = "cl-async-repl";
|
||||
version = "cl-async-20210228-git";
|
||||
|
||||
description = ''REPL integration for CL-ASYNC.'';
|
||||
description = "REPL integration for CL-ASYNC.";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-async" args."cl-async-base" args."cl-async-util" args."cl-libuv" args."cl-ppcre" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."vom" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz'';
|
||||
sha256 = ''08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz";
|
||||
sha256 = "08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4";
|
||||
};
|
||||
|
||||
packageName = "cl-async-repl";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-async-ssl'';
|
||||
version = ''cl-async-20210228-git'';
|
||||
baseName = "cl-async-ssl";
|
||||
version = "cl-async-20210228-git";
|
||||
|
||||
description = ''SSL Wrapper around cl-async socket implementation.'';
|
||||
description = "SSL Wrapper around cl-async socket implementation.";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-async" args."cl-async-base" args."cl-async-util" args."cl-libuv" args."cl-ppcre" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."vom" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz'';
|
||||
sha256 = ''08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz";
|
||||
sha256 = "08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4";
|
||||
};
|
||||
|
||||
packageName = "cl-async-ssl";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-async'';
|
||||
version = ''20210228-git'';
|
||||
baseName = "cl-async";
|
||||
version = "20210228-git";
|
||||
|
||||
parasites = [ "cl-async-base" "cl-async-util" ];
|
||||
|
||||
description = ''Asynchronous operations for Common Lisp.'';
|
||||
description = "Asynchronous operations for Common Lisp.";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-libuv" args."cl-ppcre" args."fast-io" args."static-vectors" args."trivial-features" args."trivial-gray-streams" args."uiop" args."vom" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz'';
|
||||
sha256 = ''08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-async/2021-02-28/cl-async-20210228-git.tgz";
|
||||
sha256 = "08r8jlvj2zbc1f864imb864adkqhspgm5s8drjykqhv1d3hrsvy4";
|
||||
};
|
||||
|
||||
packageName = "cl-async";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-base64'';
|
||||
version = ''20201016-git'';
|
||||
baseName = "cl-base64";
|
||||
version = "20201016-git";
|
||||
|
||||
parasites = [ "cl-base64/test" ];
|
||||
|
||||
description = ''Base64 encoding and decoding with URI support.'';
|
||||
description = "Base64 encoding and decoding with URI support.";
|
||||
|
||||
deps = [ args."kmrcl" args."ptester" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-base64/2020-10-16/cl-base64-20201016-git.tgz'';
|
||||
sha256 = ''1wd2sgvfrivrbzlhs1vgj762jqz7sk171ssli6gl1kfwbnphzx9z'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-base64/2020-10-16/cl-base64-20201016-git.tgz";
|
||||
sha256 = "1wd2sgvfrivrbzlhs1vgj762jqz7sk171ssli6gl1kfwbnphzx9z";
|
||||
};
|
||||
|
||||
packageName = "cl-base64";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-cffi-gtk-cairo'';
|
||||
version = ''cl-cffi-gtk-20201220-git'';
|
||||
baseName = "cl-cffi-gtk-cairo";
|
||||
version = "cl-cffi-gtk-20201220-git";
|
||||
|
||||
description = ''A Lisp binding to Cairo'';
|
||||
description = "A Lisp binding to Cairo";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."iterate" args."trivial-features" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz'';
|
||||
sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz";
|
||||
sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1";
|
||||
};
|
||||
|
||||
packageName = "cl-cffi-gtk-cairo";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-cffi-gtk-gdk-pixbuf'';
|
||||
version = ''cl-cffi-gtk-20201220-git'';
|
||||
baseName = "cl-cffi-gtk-gdk-pixbuf";
|
||||
version = "cl-cffi-gtk-20201220-git";
|
||||
|
||||
description = ''A Lisp binding to GDK Pixbuf 2'';
|
||||
description = "A Lisp binding to GDK Pixbuf 2";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz'';
|
||||
sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz";
|
||||
sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1";
|
||||
};
|
||||
|
||||
packageName = "cl-cffi-gtk-gdk-pixbuf";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-cffi-gtk-gdk'';
|
||||
version = ''cl-cffi-gtk-20201220-git'';
|
||||
baseName = "cl-cffi-gtk-gdk";
|
||||
version = "cl-cffi-gtk-20201220-git";
|
||||
|
||||
description = ''A Lisp binding to GDK 3'';
|
||||
description = "A Lisp binding to GDK 3";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-cairo" args."cl-cffi-gtk-gdk-pixbuf" args."cl-cffi-gtk-gio" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."cl-cffi-gtk-pango" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz'';
|
||||
sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz";
|
||||
sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1";
|
||||
};
|
||||
|
||||
packageName = "cl-cffi-gtk-gdk";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-cffi-gtk-gio'';
|
||||
version = ''cl-cffi-gtk-20201220-git'';
|
||||
baseName = "cl-cffi-gtk-gio";
|
||||
version = "cl-cffi-gtk-20201220-git";
|
||||
|
||||
description = ''A Lisp binding to GIO 2'';
|
||||
description = "A Lisp binding to GIO 2";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz'';
|
||||
sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz";
|
||||
sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1";
|
||||
};
|
||||
|
||||
packageName = "cl-cffi-gtk-gio";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-cffi-gtk-glib'';
|
||||
version = ''cl-cffi-gtk-20201220-git'';
|
||||
baseName = "cl-cffi-gtk-glib";
|
||||
version = "cl-cffi-gtk-20201220-git";
|
||||
|
||||
description = ''A Lisp binding to GLib 2'';
|
||||
description = "A Lisp binding to GLib 2";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."iterate" args."trivial-features" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz'';
|
||||
sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz";
|
||||
sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1";
|
||||
};
|
||||
|
||||
packageName = "cl-cffi-gtk-glib";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-cffi-gtk-gobject'';
|
||||
version = ''cl-cffi-gtk-20201220-git'';
|
||||
baseName = "cl-cffi-gtk-gobject";
|
||||
version = "cl-cffi-gtk-20201220-git";
|
||||
|
||||
description = ''A Lisp binding GObject 2'';
|
||||
description = "A Lisp binding GObject 2";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-glib" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz'';
|
||||
sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz";
|
||||
sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1";
|
||||
};
|
||||
|
||||
packageName = "cl-cffi-gtk-gobject";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-cffi-gtk-pango'';
|
||||
version = ''cl-cffi-gtk-20201220-git'';
|
||||
baseName = "cl-cffi-gtk-pango";
|
||||
version = "cl-cffi-gtk-20201220-git";
|
||||
|
||||
description = ''A Lisp binding to Pango'';
|
||||
description = "A Lisp binding to Pango";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-cairo" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz'';
|
||||
sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz";
|
||||
sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1";
|
||||
};
|
||||
|
||||
packageName = "cl-cffi-gtk-pango";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-cffi-gtk'';
|
||||
version = ''20201220-git'';
|
||||
baseName = "cl-cffi-gtk";
|
||||
version = "20201220-git";
|
||||
|
||||
description = ''A Lisp binding to GTK 3'';
|
||||
description = "A Lisp binding to GTK 3";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cl-cffi-gtk-cairo" args."cl-cffi-gtk-gdk" args."cl-cffi-gtk-gdk-pixbuf" args."cl-cffi-gtk-gio" args."cl-cffi-gtk-glib" args."cl-cffi-gtk-gobject" args."cl-cffi-gtk-pango" args."closer-mop" args."iterate" args."trivial-features" args."trivial-garbage" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz'';
|
||||
sha256 = ''15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-cffi-gtk/2020-12-20/cl-cffi-gtk-20201220-git.tgz";
|
||||
sha256 = "15vc0d7nirh0m6rkvzby2zb7qcpyvsxzs5yw5h6h3madyl8qm9b1";
|
||||
};
|
||||
|
||||
packageName = "cl-cffi-gtk";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-change-case'';
|
||||
version = ''20210228-git'';
|
||||
baseName = "cl-change-case";
|
||||
version = "20210228-git";
|
||||
|
||||
parasites = [ "cl-change-case/test" ];
|
||||
|
||||
description = ''Convert strings between camelCase, param-case, PascalCase and more'';
|
||||
description = "Convert strings between camelCase, param-case, PascalCase and more";
|
||||
|
||||
deps = [ args."cl-ppcre" args."cl-ppcre-unicode" args."cl-unicode" args."fiveam" args."flexi-streams" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-change-case/2021-02-28/cl-change-case-20210228-git.tgz'';
|
||||
sha256 = ''15x8zxwa3pxs02fh0qxmbvz6vi59x6ha09p5hs4rgd6axs0k4pmi'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-change-case/2021-02-28/cl-change-case-20210228-git.tgz";
|
||||
sha256 = "15x8zxwa3pxs02fh0qxmbvz6vi59x6ha09p5hs4rgd6axs0k4pmi";
|
||||
};
|
||||
|
||||
packageName = "cl-change-case";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-cli'';
|
||||
version = ''20151218-git'';
|
||||
baseName = "cl-cli";
|
||||
version = "20151218-git";
|
||||
|
||||
description = ''Command line parser'';
|
||||
description = "Command line parser";
|
||||
|
||||
deps = [ args."split-sequence" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-cli/2015-12-18/cl-cli-20151218-git.tgz'';
|
||||
sha256 = ''0d097wjprljghkai1yacvjqmjm1mwpa46yxbacjnwps8pqwh18ay'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-cli/2015-12-18/cl-cli-20151218-git.tgz";
|
||||
sha256 = "0d097wjprljghkai1yacvjqmjm1mwpa46yxbacjnwps8pqwh18ay";
|
||||
};
|
||||
|
||||
packageName = "cl-cli";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-colors'';
|
||||
version = ''20180328-git'';
|
||||
baseName = "cl-colors";
|
||||
version = "20180328-git";
|
||||
|
||||
parasites = [ "cl-colors-tests" ];
|
||||
|
||||
description = ''Simple color library for Common Lisp'';
|
||||
description = "Simple color library for Common Lisp";
|
||||
|
||||
deps = [ args."alexandria" args."anaphora" args."let-plus" args."lift" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-colors/2018-03-28/cl-colors-20180328-git.tgz'';
|
||||
sha256 = ''0anrb3zsi03dixfsjz92y06w93kpn0d0c5142fhx72f5kafwvc4a'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-colors/2018-03-28/cl-colors-20180328-git.tgz";
|
||||
sha256 = "0anrb3zsi03dixfsjz92y06w93kpn0d0c5142fhx72f5kafwvc4a";
|
||||
};
|
||||
|
||||
packageName = "cl-colors";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-colors2'';
|
||||
version = ''20200218-git'';
|
||||
baseName = "cl-colors2";
|
||||
version = "20200218-git";
|
||||
|
||||
parasites = [ "cl-colors2/tests" ];
|
||||
|
||||
description = ''Simple color library for Common Lisp'';
|
||||
description = "Simple color library for Common Lisp";
|
||||
|
||||
deps = [ args."alexandria" args."cl-ppcre" args."clunit2" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-colors2/2020-02-18/cl-colors2-20200218-git.tgz'';
|
||||
sha256 = ''0rpf8j232qv254zhkvkz3ja20al1kswvcqhvvv0r2ag6dks56j29'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-colors2/2020-02-18/cl-colors2-20200218-git.tgz";
|
||||
sha256 = "0rpf8j232qv254zhkvkz3ja20al1kswvcqhvvv0r2ag6dks56j29";
|
||||
};
|
||||
|
||||
packageName = "cl-colors2";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-containers'';
|
||||
version = ''20200427-git'';
|
||||
baseName = "cl-containers";
|
||||
version = "20200427-git";
|
||||
|
||||
parasites = [ "cl-containers/with-moptilities" "cl-containers/with-utilities" ];
|
||||
|
||||
description = ''A generic container library for Common Lisp'';
|
||||
description = "A generic container library for Common Lisp";
|
||||
|
||||
deps = [ args."asdf-system-connections" args."metatilities-base" args."moptilities" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-containers/2020-04-27/cl-containers-20200427-git.tgz'';
|
||||
sha256 = ''0llaymnlss0dhwyqgr2s38w1hjb2as1x1nn57qcvdphnm7qs50fy'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-containers/2020-04-27/cl-containers-20200427-git.tgz";
|
||||
sha256 = "0llaymnlss0dhwyqgr2s38w1hjb2as1x1nn57qcvdphnm7qs50fy";
|
||||
};
|
||||
|
||||
packageName = "cl-containers";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-cookie'';
|
||||
version = ''20191007-git'';
|
||||
baseName = "cl-cookie";
|
||||
version = "20191007-git";
|
||||
|
||||
description = ''HTTP cookie manager'';
|
||||
description = "HTTP cookie manager";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."cl-ppcre" args."cl-utilities" args."local-time" args."proc-parse" args."quri" args."split-sequence" args."trivial-features" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-cookie/2019-10-07/cl-cookie-20191007-git.tgz'';
|
||||
sha256 = ''1xcb69n3qfp37nwj0mj2whf3yj5xfsgh9sdw6c64gxqkiiq9nfhh'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-cookie/2019-10-07/cl-cookie-20191007-git.tgz";
|
||||
sha256 = "1xcb69n3qfp37nwj0mj2whf3yj5xfsgh9sdw6c64gxqkiiq9nfhh";
|
||||
};
|
||||
|
||||
packageName = "cl-cookie";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-css'';
|
||||
version = ''20140914-git'';
|
||||
baseName = "cl-css";
|
||||
version = "20140914-git";
|
||||
|
||||
description = ''Simple inline CSS generator'';
|
||||
description = "Simple inline CSS generator";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-css/2014-09-14/cl-css-20140914-git.tgz'';
|
||||
sha256 = ''16zjm10qqyv5v0ysvicbiscplrwlfr0assbf01gp73j1m108rn7n'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-css/2014-09-14/cl-css-20140914-git.tgz";
|
||||
sha256 = "16zjm10qqyv5v0ysvicbiscplrwlfr0assbf01gp73j1m108rn7n";
|
||||
};
|
||||
|
||||
packageName = "cl-css";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-csv'';
|
||||
version = ''20201016-git'';
|
||||
baseName = "cl-csv";
|
||||
version = "20201016-git";
|
||||
|
||||
parasites = [ "cl-csv/speed-test" "cl-csv/test" ];
|
||||
|
||||
description = ''Facilities for reading and writing CSV format files'';
|
||||
description = "Facilities for reading and writing CSV format files";
|
||||
|
||||
deps = [ args."alexandria" args."cl-interpol" args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."iterate" args."lisp-unit2" args."named-readtables" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-csv/2020-10-16/cl-csv-20201016-git.tgz'';
|
||||
sha256 = ''1w12ads26v5sgcmy6rjm6ys9lml7l6rz86w776s2an2maci9kzmf'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-csv/2020-10-16/cl-csv-20201016-git.tgz";
|
||||
sha256 = "1w12ads26v5sgcmy6rjm6ys9lml7l6rz86w776s2an2maci9kzmf";
|
||||
};
|
||||
|
||||
packageName = "cl-csv";
|
||||
|
@ -0,0 +1,26 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = "cl-custom-hash-table";
|
||||
version = "20201220-git";
|
||||
|
||||
description = "System lacks description";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://beta.quicklisp.org/archive/cl-custom-hash-table/2020-12-20/cl-custom-hash-table-20201220-git.tgz";
|
||||
sha256 = "1id16p7vdcgxzvrgk8h6fqi284hgd8cilbnbgsbrbd70n7nj8jg3";
|
||||
};
|
||||
|
||||
packageName = "cl-custom-hash-table";
|
||||
|
||||
asdFilesToKeep = ["cl-custom-hash-table.asd"];
|
||||
overrides = x: x;
|
||||
}
|
||||
/* (SYSTEM cl-custom-hash-table DESCRIPTION System lacks description SHA256
|
||||
1id16p7vdcgxzvrgk8h6fqi284hgd8cilbnbgsbrbd70n7nj8jg3 URL
|
||||
http://beta.quicklisp.org/archive/cl-custom-hash-table/2020-12-20/cl-custom-hash-table-20201220-git.tgz
|
||||
MD5 bd0f2f4a8e808911133af19c03e5c511 NAME cl-custom-hash-table FILENAME
|
||||
cl-custom-hash-table DEPS NIL DEPENDENCIES NIL VERSION 20201220-git
|
||||
SIBLINGS (cl-custom-hash-table-test) PARASITES NIL) */
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-dbi'';
|
||||
version = ''20210228-git'';
|
||||
baseName = "cl-dbi";
|
||||
version = "20210228-git";
|
||||
|
||||
description = ''System lacks description'';
|
||||
description = "System lacks description";
|
||||
|
||||
deps = [ args."alexandria" args."bordeaux-threads" args."closer-mop" args."dbi" args."split-sequence" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz'';
|
||||
sha256 = ''0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-dbi/2021-02-28/cl-dbi-20210228-git.tgz";
|
||||
sha256 = "0yfs7k6samv6q0n1bvscvcck7qg3c4g03qn7i81619q7g2f98jdk";
|
||||
};
|
||||
|
||||
packageName = "cl-dbi";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-difflib'';
|
||||
version = ''20130128-git'';
|
||||
baseName = "cl-difflib";
|
||||
version = "20130128-git";
|
||||
|
||||
description = ''A Lisp library for computing differences between sequences.'';
|
||||
description = "A Lisp library for computing differences between sequences.";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-difflib/2013-01-28/cl-difflib-20130128-git.tgz'';
|
||||
sha256 = ''1bgb0nmm93x90c7v1q1ah1v5dfm2anhkim7nh88sg7kg50y4ksm6'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-difflib/2013-01-28/cl-difflib-20130128-git.tgz";
|
||||
sha256 = "1bgb0nmm93x90c7v1q1ah1v5dfm2anhkim7nh88sg7kg50y4ksm6";
|
||||
};
|
||||
|
||||
packageName = "cl-difflib";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-dot'';
|
||||
version = ''20200925-git'';
|
||||
baseName = "cl-dot";
|
||||
version = "20200925-git";
|
||||
|
||||
description = ''Generate Dot Output from Arbitrary Lisp Data'';
|
||||
description = "Generate Dot Output from Arbitrary Lisp Data";
|
||||
|
||||
deps = [ args."uiop" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-dot/2020-09-25/cl-dot-20200925-git.tgz'';
|
||||
sha256 = ''01vx4yzasmgswrlyagjr2cz76g906jsijdwikdf8wvxyyq77gkla'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-dot/2020-09-25/cl-dot-20200925-git.tgz";
|
||||
sha256 = "01vx4yzasmgswrlyagjr2cz76g906jsijdwikdf8wvxyyq77gkla";
|
||||
};
|
||||
|
||||
packageName = "cl-dot";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-emb'';
|
||||
version = ''20190521-git'';
|
||||
baseName = "cl-emb";
|
||||
version = "20190521-git";
|
||||
|
||||
description = ''A templating system for Common Lisp'';
|
||||
description = "A templating system for Common Lisp";
|
||||
|
||||
deps = [ args."cl-ppcre" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-emb/2019-05-21/cl-emb-20190521-git.tgz'';
|
||||
sha256 = ''1d6bi2mx1kw7an3maxjp4ldrhkwfdb58va9whxblz2xjlbykdv8d'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-emb/2019-05-21/cl-emb-20190521-git.tgz";
|
||||
sha256 = "1d6bi2mx1kw7an3maxjp4ldrhkwfdb58va9whxblz2xjlbykdv8d";
|
||||
};
|
||||
|
||||
packageName = "cl-emb";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-fad'';
|
||||
version = ''20210124-git'';
|
||||
baseName = "cl-fad";
|
||||
version = "20210124-git";
|
||||
|
||||
parasites = [ "cl-fad-test" ];
|
||||
|
||||
description = ''Portable pathname library'';
|
||||
description = "Portable pathname library";
|
||||
|
||||
deps = [ args."alexandria" args."bordeaux-threads" args."cl-ppcre" args."unit-test" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-fad/2021-01-24/cl-fad-20210124-git.tgz'';
|
||||
sha256 = ''17vkvkwg4wpyny5x2nsazgpip5nxxahsjngaxjyrj5z15d4lkrm0'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-fad/2021-01-24/cl-fad-20210124-git.tgz";
|
||||
sha256 = "17vkvkwg4wpyny5x2nsazgpip5nxxahsjngaxjyrj5z15d4lkrm0";
|
||||
};
|
||||
|
||||
packageName = "cl-fad";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-fuse-meta-fs'';
|
||||
version = ''20190710-git'';
|
||||
baseName = "cl-fuse-meta-fs";
|
||||
version = "20190710-git";
|
||||
|
||||
description = ''CFFI bindings to FUSE (Filesystem in user space)'';
|
||||
description = "CFFI bindings to FUSE (Filesystem in user space)";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-fuse" args."cl-utilities" args."iterate" args."pcall" args."pcall-queue" args."trivial-backtrace" args."trivial-features" args."trivial-utf-8" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-fuse-meta-fs/2019-07-10/cl-fuse-meta-fs-20190710-git.tgz'';
|
||||
sha256 = ''1c2nyxj7q8njxydn4xiagvnb21zhb1l07q7nhfw0qs2qk6dkasq7'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-fuse-meta-fs/2019-07-10/cl-fuse-meta-fs-20190710-git.tgz";
|
||||
sha256 = "1c2nyxj7q8njxydn4xiagvnb21zhb1l07q7nhfw0qs2qk6dkasq7";
|
||||
};
|
||||
|
||||
packageName = "cl-fuse-meta-fs";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-fuse'';
|
||||
version = ''20200925-git'';
|
||||
baseName = "cl-fuse";
|
||||
version = "20200925-git";
|
||||
|
||||
description = ''CFFI bindings to FUSE (Filesystem in user space)'';
|
||||
description = "CFFI bindings to FUSE (Filesystem in user space)";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."cl-utilities" args."iterate" args."trivial-backtrace" args."trivial-features" args."trivial-utf-8" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-fuse/2020-09-25/cl-fuse-20200925-git.tgz'';
|
||||
sha256 = ''1c5cn0l0md77asw804qssylcbbphw81mfpbijydd0s25q6xga7dp'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-fuse/2020-09-25/cl-fuse-20200925-git.tgz";
|
||||
sha256 = "1c5cn0l0md77asw804qssylcbbphw81mfpbijydd0s25q6xga7dp";
|
||||
};
|
||||
|
||||
packageName = "cl-fuse";
|
||||
|
@ -1,18 +1,19 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-hooks'';
|
||||
version = ''architecture.hooks-20181210-git'';
|
||||
baseName = "cl-hooks";
|
||||
version = "architecture.hooks-20181210-git";
|
||||
|
||||
parasites = [ "cl-hooks/test" ];
|
||||
|
||||
description = ''This system provides the hooks extension point
|
||||
mechanism (as known, e.g., from GNU Emacs).'';
|
||||
description = "This system provides the hooks extension point
|
||||
mechanism (as known, e.g., from GNU Emacs).";
|
||||
|
||||
deps = [ args."alexandria" args."anaphora" args."closer-mop" args."fiveam" args."let-plus" args."trivial-garbage" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/architecture.hooks/2018-12-10/architecture.hooks-20181210-git.tgz'';
|
||||
sha256 = ''04l8rjmgsd7i580rpm1wndz1jcvfqrmwllnkh3h7als3azi3q2ns'';
|
||||
url = "http://beta.quicklisp.org/archive/architecture.hooks/2018-12-10/architecture.hooks-20181210-git.tgz";
|
||||
sha256 = "04l8rjmgsd7i580rpm1wndz1jcvfqrmwllnkh3h7als3azi3q2ns";
|
||||
};
|
||||
|
||||
packageName = "cl-hooks";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-html-diff'';
|
||||
version = ''20130128-git'';
|
||||
baseName = "cl-html-diff";
|
||||
version = "20130128-git";
|
||||
|
||||
description = ''System lacks description'';
|
||||
description = "System lacks description";
|
||||
|
||||
deps = [ args."cl-difflib" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-html-diff/2013-01-28/cl-html-diff-20130128-git.tgz'';
|
||||
sha256 = ''0dbqfgfl2qmlk91fncjj804md2crvj0bsvkdxfrsybrhn6dmikci'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-html-diff/2013-01-28/cl-html-diff-20130128-git.tgz";
|
||||
sha256 = "0dbqfgfl2qmlk91fncjj804md2crvj0bsvkdxfrsybrhn6dmikci";
|
||||
};
|
||||
|
||||
packageName = "cl-html-diff";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-html-parse'';
|
||||
version = ''20200925-git'';
|
||||
baseName = "cl-html-parse";
|
||||
version = "20200925-git";
|
||||
|
||||
description = ''HTML Parser'';
|
||||
description = "HTML Parser";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-html-parse/2020-09-25/cl-html-parse-20200925-git.tgz'';
|
||||
sha256 = ''14pfd4gwjb8ywr79dqrcznw6h8a1il3g5b6cm5x9aiyr49zdv15f'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-html-parse/2020-09-25/cl-html-parse-20200925-git.tgz";
|
||||
sha256 = "14pfd4gwjb8ywr79dqrcznw6h8a1il3g5b6cm5x9aiyr49zdv15f";
|
||||
};
|
||||
|
||||
packageName = "cl-html-parse";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-html5-parser'';
|
||||
version = ''20190521-git'';
|
||||
baseName = "cl-html5-parser";
|
||||
version = "20190521-git";
|
||||
|
||||
description = ''A HTML5 parser for Common Lisp'';
|
||||
description = "A HTML5 parser for Common Lisp";
|
||||
|
||||
deps = [ args."cl-ppcre" args."flexi-streams" args."string-case" args."trivial-gray-streams" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-html5-parser/2019-05-21/cl-html5-parser-20190521-git.tgz'';
|
||||
sha256 = ''055jz0yqgjncvy2dxvnwg4iwdvmfsvkch46v58nymz5gi8gaaz7p'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-html5-parser/2019-05-21/cl-html5-parser-20190521-git.tgz";
|
||||
sha256 = "055jz0yqgjncvy2dxvnwg4iwdvmfsvkch46v58nymz5gi8gaaz7p";
|
||||
};
|
||||
|
||||
packageName = "cl-html5-parser";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-interpol'';
|
||||
version = ''20201220-git'';
|
||||
baseName = "cl-interpol";
|
||||
version = "20201220-git";
|
||||
|
||||
parasites = [ "cl-interpol-test" ];
|
||||
|
||||
description = ''System lacks description'';
|
||||
description = "System lacks description";
|
||||
|
||||
deps = [ args."cl-ppcre" args."cl-unicode" args."flexi-streams" args."named-readtables" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-interpol/2020-12-20/cl-interpol-20201220-git.tgz'';
|
||||
sha256 = ''1q3zxsbl5br08lv481jsqmq8r9yayp44x6icixcxx5sdz6fbcd3d'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-interpol/2020-12-20/cl-interpol-20201220-git.tgz";
|
||||
sha256 = "1q3zxsbl5br08lv481jsqmq8r9yayp44x6icixcxx5sdz6fbcd3d";
|
||||
};
|
||||
|
||||
packageName = "cl-interpol";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-jpeg'';
|
||||
version = ''20170630-git'';
|
||||
baseName = "cl-jpeg";
|
||||
version = "20170630-git";
|
||||
|
||||
description = ''A self-contained baseline JPEG codec implementation'';
|
||||
description = "A self-contained baseline JPEG codec implementation";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-jpeg/2017-06-30/cl-jpeg-20170630-git.tgz'';
|
||||
sha256 = ''1wwzn2valhh5ka7qkmab59pb1ijagcj296553fp8z03migl0sil0'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-jpeg/2017-06-30/cl-jpeg-20170630-git.tgz";
|
||||
sha256 = "1wwzn2valhh5ka7qkmab59pb1ijagcj296553fp8z03migl0sil0";
|
||||
};
|
||||
|
||||
packageName = "cl-jpeg";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-json'';
|
||||
version = ''20141217-git'';
|
||||
baseName = "cl-json";
|
||||
version = "20141217-git";
|
||||
|
||||
parasites = [ "cl-json.test" ];
|
||||
|
||||
description = ''JSON in Lisp. JSON (JavaScript Object Notation) is a lightweight data-interchange format.'';
|
||||
description = "JSON in Lisp. JSON (JavaScript Object Notation) is a lightweight data-interchange format.";
|
||||
|
||||
deps = [ args."fiveam" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-json/2014-12-17/cl-json-20141217-git.tgz'';
|
||||
sha256 = ''00cfppyi6njsbpv1x03jcv4zwplg0q1138174l3wjkvi3gsql17g'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-json/2014-12-17/cl-json-20141217-git.tgz";
|
||||
sha256 = "00cfppyi6njsbpv1x03jcv4zwplg0q1138174l3wjkvi3gsql17g";
|
||||
};
|
||||
|
||||
packageName = "cl-json";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-l10n-cldr'';
|
||||
version = ''20120909-darcs'';
|
||||
baseName = "cl-l10n-cldr";
|
||||
version = "20120909-darcs";
|
||||
|
||||
description = ''The necessary CLDR files for cl-l10n packaged in a QuickLisp friendly way.'';
|
||||
description = "The necessary CLDR files for cl-l10n packaged in a QuickLisp friendly way.";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-l10n-cldr/2012-09-09/cl-l10n-cldr-20120909-darcs.tgz'';
|
||||
sha256 = ''03l81bx8izvzwzw0qah34l4k47l4gmhr917phhhl81qp55x7zbiv'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-l10n-cldr/2012-09-09/cl-l10n-cldr-20120909-darcs.tgz";
|
||||
sha256 = "03l81bx8izvzwzw0qah34l4k47l4gmhr917phhhl81qp55x7zbiv";
|
||||
};
|
||||
|
||||
packageName = "cl-l10n-cldr";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-l10n'';
|
||||
version = ''20161204-darcs'';
|
||||
baseName = "cl-l10n";
|
||||
version = "20161204-darcs";
|
||||
|
||||
parasites = [ "cl-l10n/test" ];
|
||||
|
||||
description = ''Portable CL Locale Support'';
|
||||
description = "Portable CL Locale Support";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."bordeaux-threads" args."cl-fad" args."cl-l10n-cldr" args."cl-ppcre" args."closer-mop" args."closure-common" args."cxml" args."flexi-streams" args."hu_dot_dwim_dot_stefil" args."iterate" args."local-time" args."metabang-bind" args."parse-number" args."puri" args."trivial-features" args."trivial-gray-streams" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-l10n/2016-12-04/cl-l10n-20161204-darcs.tgz'';
|
||||
sha256 = ''1r8jgwks21az78c5kdxgw5llk9ml423vjkv1f93qg1vx3zma6vzl'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-l10n/2016-12-04/cl-l10n-20161204-darcs.tgz";
|
||||
sha256 = "1r8jgwks21az78c5kdxgw5llk9ml423vjkv1f93qg1vx3zma6vzl";
|
||||
};
|
||||
|
||||
packageName = "cl-l10n";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-libuv'';
|
||||
version = ''20200610-git'';
|
||||
baseName = "cl-libuv";
|
||||
version = "20200610-git";
|
||||
|
||||
description = ''Low-level libuv bindings for Common Lisp.'';
|
||||
description = "Low-level libuv bindings for Common Lisp.";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."cffi" args."cffi-grovel" args."cffi-toolchain" args."trivial-features" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-libuv/2020-06-10/cl-libuv-20200610-git.tgz'';
|
||||
sha256 = ''1ywk1z1ibyk3z0irg5azjrjk3x08ixv30fx4qa0p500fmbfhha19'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-libuv/2020-06-10/cl-libuv-20200610-git.tgz";
|
||||
sha256 = "1ywk1z1ibyk3z0irg5azjrjk3x08ixv30fx4qa0p500fmbfhha19";
|
||||
};
|
||||
|
||||
packageName = "cl-libuv";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-locale'';
|
||||
version = ''20151031-git'';
|
||||
baseName = "cl-locale";
|
||||
version = "20151031-git";
|
||||
|
||||
description = ''Simple i18n library for Common Lisp'';
|
||||
description = "Simple i18n library for Common Lisp";
|
||||
|
||||
deps = [ args."alexandria" args."anaphora" args."arnesi" args."cl-annot" args."cl-syntax" args."cl-syntax-annot" args."closer-mop" args."collectors" args."iterate" args."named-readtables" args."symbol-munger" args."trivial-types" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-locale/2015-10-31/cl-locale-20151031-git.tgz'';
|
||||
sha256 = ''14j4xazrx2v5cj4q4irfwra0ksvl2l0s7073fimpwc0xqjfsnjpg'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-locale/2015-10-31/cl-locale-20151031-git.tgz";
|
||||
sha256 = "14j4xazrx2v5cj4q4irfwra0ksvl2l0s7073fimpwc0xqjfsnjpg";
|
||||
};
|
||||
|
||||
packageName = "cl-locale";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-markup'';
|
||||
version = ''20131003-git'';
|
||||
baseName = "cl-markup";
|
||||
version = "20131003-git";
|
||||
|
||||
description = ''System lacks description'';
|
||||
description = "System lacks description";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-markup/2013-10-03/cl-markup-20131003-git.tgz'';
|
||||
sha256 = ''1ik3a5k6axq941zbf6zyig553i5gnypbcxdq9l7bfxp8w18vbj0r'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-markup/2013-10-03/cl-markup-20131003-git.tgz";
|
||||
sha256 = "1ik3a5k6axq941zbf6zyig553i5gnypbcxdq9l7bfxp8w18vbj0r";
|
||||
};
|
||||
|
||||
packageName = "cl-markup";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-mysql'';
|
||||
version = ''20200610-git'';
|
||||
baseName = "cl-mysql";
|
||||
version = "20200610-git";
|
||||
|
||||
description = ''Common Lisp MySQL library bindings'';
|
||||
description = "Common Lisp MySQL library bindings";
|
||||
|
||||
deps = [ args."alexandria" args."babel" args."cffi" args."trivial-features" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-mysql/2020-06-10/cl-mysql-20200610-git.tgz'';
|
||||
sha256 = ''0fzyqzz01zn9fy8v766lib3dghg9yq5wawa0hcmxslms7knzxz7w'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-mysql/2020-06-10/cl-mysql-20200610-git.tgz";
|
||||
sha256 = "0fzyqzz01zn9fy8v766lib3dghg9yq5wawa0hcmxslms7knzxz7w";
|
||||
};
|
||||
|
||||
packageName = "cl-mysql";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-paths-ttf'';
|
||||
version = ''cl-vectors-20180228-git'';
|
||||
baseName = "cl-paths-ttf";
|
||||
version = "cl-vectors-20180228-git";
|
||||
|
||||
description = ''cl-paths-ttf: vectorial paths manipulation'';
|
||||
description = "cl-paths-ttf: vectorial paths manipulation";
|
||||
|
||||
deps = [ args."cl-paths" args."zpb-ttf" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz'';
|
||||
sha256 = ''0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz";
|
||||
sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly";
|
||||
};
|
||||
|
||||
packageName = "cl-paths-ttf";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-paths'';
|
||||
version = ''cl-vectors-20180228-git'';
|
||||
baseName = "cl-paths";
|
||||
version = "cl-vectors-20180228-git";
|
||||
|
||||
description = ''cl-paths: vectorial paths manipulation'';
|
||||
description = "cl-paths: vectorial paths manipulation";
|
||||
|
||||
deps = [ ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz'';
|
||||
sha256 = ''0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz";
|
||||
sha256 = "0fcypjfzqra8ryb4nx1vx1fqy7fwvyz3f443qkjg2z81akhkscly";
|
||||
};
|
||||
|
||||
packageName = "cl-paths";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-pdf'';
|
||||
version = ''20210228-git'';
|
||||
baseName = "cl-pdf";
|
||||
version = "20210228-git";
|
||||
|
||||
description = ''Common Lisp PDF Generation Library'';
|
||||
description = "Common Lisp PDF Generation Library";
|
||||
|
||||
deps = [ args."iterate" args."uiop" args."zpb-ttf" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-pdf/2021-02-28/cl-pdf-20210228-git.tgz'';
|
||||
sha256 = ''1m1nq91p49gfc9iccja2wbhglrv0mgzhqvliss7jr0j6icv66x3y'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-pdf/2021-02-28/cl-pdf-20210228-git.tgz";
|
||||
sha256 = "1m1nq91p49gfc9iccja2wbhglrv0mgzhqvliss7jr0j6icv66x3y";
|
||||
};
|
||||
|
||||
packageName = "cl-pdf";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-postgres'';
|
||||
version = ''postmodern-20210124-git'';
|
||||
baseName = "cl-postgres";
|
||||
version = "postmodern-20210124-git";
|
||||
|
||||
parasites = [ "cl-postgres/simple-date-tests" "cl-postgres/tests" ];
|
||||
|
||||
description = ''Low-level client library for PostgreSQL'';
|
||||
description = "Low-level client library for PostgreSQL";
|
||||
|
||||
deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-ppcre" args."fiveam" args."ironclad" args."md5" args."simple-date" args."simple-date_slash_postgres-glue" args."split-sequence" args."uax-15" args."usocket" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/postmodern/2021-01-24/postmodern-20210124-git.tgz'';
|
||||
sha256 = ''1fl103fga5iq2gf1p15xvbrmmjrcv2bbi3lz1zv32j6smy5aymhc'';
|
||||
url = "http://beta.quicklisp.org/archive/postmodern/2021-01-24/postmodern-20210124-git.tgz";
|
||||
sha256 = "1fl103fga5iq2gf1p15xvbrmmjrcv2bbi3lz1zv32j6smy5aymhc";
|
||||
};
|
||||
|
||||
packageName = "cl-postgres";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-postgres_plus_local-time'';
|
||||
version = ''local-time-20210124-git'';
|
||||
baseName = "cl-postgres_plus_local-time";
|
||||
version = "local-time-20210124-git";
|
||||
|
||||
description = ''Integration between cl-postgres and local-time'';
|
||||
description = "Integration between cl-postgres and local-time";
|
||||
|
||||
deps = [ args."alexandria" args."bordeaux-threads" args."cl-base64" args."cl-postgres" args."cl-ppcre" args."ironclad" args."local-time" args."md5" args."split-sequence" args."uax-15" args."usocket" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/local-time/2021-01-24/local-time-20210124-git.tgz'';
|
||||
sha256 = ''0bz5z0rd8gfd22bpqkalaijxlrk806zc010cvgd4qjapbrxzjg3s'';
|
||||
url = "http://beta.quicklisp.org/archive/local-time/2021-01-24/local-time-20210124-git.tgz";
|
||||
sha256 = "0bz5z0rd8gfd22bpqkalaijxlrk806zc010cvgd4qjapbrxzjg3s";
|
||||
};
|
||||
|
||||
packageName = "cl-postgres+local-time";
|
||||
|
@ -1,19 +1,20 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-ppcre-template'';
|
||||
version = ''cl-unification-20200925-git'';
|
||||
baseName = "cl-ppcre-template";
|
||||
version = "cl-unification-20200925-git";
|
||||
|
||||
description = ''A system used to conditionally load the CL-PPCRE Template.
|
||||
description = "A system used to conditionally load the CL-PPCRE Template.
|
||||
|
||||
This system is not required and it is handled only if CL-PPCRE is
|
||||
available. If it is, then the library provides the
|
||||
REGULAR-EXPRESSION-TEMPLATE.'';
|
||||
REGULAR-EXPRESSION-TEMPLATE.";
|
||||
|
||||
deps = [ args."cl-ppcre" args."cl-unification" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz'';
|
||||
sha256 = ''05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-unification/2020-09-25/cl-unification-20200925-git.tgz";
|
||||
sha256 = "05i1bmbabfgym9v28cbl37yr0r1m4a4k4a844z6wlq6qf45vzais";
|
||||
};
|
||||
|
||||
packageName = "cl-ppcre-template";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-ppcre-unicode'';
|
||||
version = ''cl-ppcre-20190521-git'';
|
||||
baseName = "cl-ppcre-unicode";
|
||||
version = "cl-ppcre-20190521-git";
|
||||
|
||||
parasites = [ "cl-ppcre-unicode-test" ];
|
||||
|
||||
description = ''Perl-compatible regular expression library (Unicode)'';
|
||||
description = "Perl-compatible regular expression library (Unicode)";
|
||||
|
||||
deps = [ args."cl-ppcre" args."cl-ppcre-test" args."cl-unicode" args."flexi-streams" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz'';
|
||||
sha256 = ''0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz";
|
||||
sha256 = "0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx";
|
||||
};
|
||||
|
||||
packageName = "cl-ppcre-unicode";
|
||||
|
@ -1,17 +1,18 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-ppcre'';
|
||||
version = ''20190521-git'';
|
||||
baseName = "cl-ppcre";
|
||||
version = "20190521-git";
|
||||
|
||||
parasites = [ "cl-ppcre-test" ];
|
||||
|
||||
description = ''Perl-compatible regular expression library'';
|
||||
description = "Perl-compatible regular expression library";
|
||||
|
||||
deps = [ args."flexi-streams" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz'';
|
||||
sha256 = ''0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-ppcre/2019-05-21/cl-ppcre-20190521-git.tgz";
|
||||
sha256 = "0p6jcvf9afnsg80a1zqsp7fyz0lf1fxzbin7rs9bl4i6jvm0hjqx";
|
||||
};
|
||||
|
||||
packageName = "cl-ppcre";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-prevalence'';
|
||||
version = ''20210228-git'';
|
||||
baseName = "cl-prevalence";
|
||||
version = "20210228-git";
|
||||
|
||||
description = ''Common Lisp Prevalence Package'';
|
||||
description = "Common Lisp Prevalence Package";
|
||||
|
||||
deps = [ args."alexandria" args."bordeaux-threads" args."s-sysdeps" args."s-xml" args."split-sequence" args."usocket" args."usocket-server" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-prevalence/2021-02-28/cl-prevalence-20210228-git.tgz'';
|
||||
sha256 = ''0irx60xa7ivlnjg1qzhl7x5sgdjqk53nrx0nji29q639h71czfpl'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-prevalence/2021-02-28/cl-prevalence-20210228-git.tgz";
|
||||
sha256 = "0irx60xa7ivlnjg1qzhl7x5sgdjqk53nrx0nji29q639h71czfpl";
|
||||
};
|
||||
|
||||
packageName = "cl-prevalence";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-project'';
|
||||
version = ''20200715-git'';
|
||||
baseName = "cl-project";
|
||||
version = "20200715-git";
|
||||
|
||||
description = ''Generate a skeleton for modern project'';
|
||||
description = "Generate a skeleton for modern project";
|
||||
|
||||
deps = [ args."alexandria" args."anaphora" args."cl-ansi-text" args."cl-colors" args."cl-colors2" args."cl-emb" args."cl-ppcre" args."let-plus" args."local-time" args."prove" args."uiop" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-project/2020-07-15/cl-project-20200715-git.tgz'';
|
||||
sha256 = ''044rx97wc839a8q2wv271s07bnsasl6x5fx4gr5pvy34jbrhp306'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-project/2020-07-15/cl-project-20200715-git.tgz";
|
||||
sha256 = "044rx97wc839a8q2wv271s07bnsasl6x5fx4gr5pvy34jbrhp306";
|
||||
};
|
||||
|
||||
packageName = "cl-project";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-protobufs'';
|
||||
version = ''20200325-git'';
|
||||
baseName = "cl-protobufs";
|
||||
version = "20200325-git";
|
||||
|
||||
description = ''Protobufs for Common Lisp'';
|
||||
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/2020-03-25/cl-protobufs-20200325-git.tgz'';
|
||||
sha256 = ''1sgvp038bvd3mq2f0xh4wawf8h21jmw449yjyahidh1zfqdibpin'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-protobufs/2020-03-25/cl-protobufs-20200325-git.tgz";
|
||||
sha256 = "1sgvp038bvd3mq2f0xh4wawf8h21jmw449yjyahidh1zfqdibpin";
|
||||
};
|
||||
|
||||
packageName = "cl-protobufs";
|
||||
|
@ -1,15 +1,16 @@
|
||||
/* Generated file. */
|
||||
args @ { fetchurl, ... }:
|
||||
rec {
|
||||
baseName = ''cl-qprint'';
|
||||
version = ''20150804-git'';
|
||||
baseName = "cl-qprint";
|
||||
version = "20150804-git";
|
||||
|
||||
description = ''Encode and decode quoted-printable encoded strings.'';
|
||||
description = "Encode and decode quoted-printable encoded strings.";
|
||||
|
||||
deps = [ args."flexi-streams" args."trivial-gray-streams" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = ''http://beta.quicklisp.org/archive/cl-qprint/2015-08-04/cl-qprint-20150804-git.tgz'';
|
||||
sha256 = ''042nq9airkc4yaqzpmly5iszmkbwfn38wsgi9k361ldf1y54lq28'';
|
||||
url = "http://beta.quicklisp.org/archive/cl-qprint/2015-08-04/cl-qprint-20150804-git.tgz";
|
||||
sha256 = "042nq9airkc4yaqzpmly5iszmkbwfn38wsgi9k361ldf1y54lq28";
|
||||
};
|
||||
|
||||
packageName = "cl-qprint";
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user