2017-03-30 21:54:56 +01:00
|
|
|
args @ { fetchurl, ... }:
|
2019-10-10 08:38:35 +01:00
|
|
|
rec {
|
2021-01-24 09:19:10 +00:00
|
|
|
baseName = "nibbles";
|
|
|
|
version = "20200925-git";
|
2017-03-30 21:54:56 +01:00
|
|
|
|
2018-02-12 19:38:21 +00:00
|
|
|
parasites = [ "nibbles/tests" ];
|
2017-08-31 01:22:51 +01:00
|
|
|
|
2021-01-24 09:19:10 +00:00
|
|
|
description = "A library for accessing octet-addressed blocks of data in big- and little-endian orders";
|
2017-03-30 21:54:56 +01:00
|
|
|
|
2018-05-30 18:24:57 +01:00
|
|
|
deps = [ args."rt" ];
|
2017-03-30 21:54:56 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-24 09:19:10 +00:00
|
|
|
url = "http://beta.quicklisp.org/archive/nibbles/2020-09-25/nibbles-20200925-git.tgz";
|
|
|
|
sha256 = "14k9hg8kmzwcb9b5aiwqhimc0zmcs3xp8q29sck8zklf8ziqaqb4";
|
2017-03-30 21:54:56 +01:00
|
|
|
};
|
2017-08-31 01:22:51 +01:00
|
|
|
|
2017-06-21 21:15:07 +01:00
|
|
|
packageName = "nibbles";
|
2017-03-30 21:54:56 +01:00
|
|
|
|
2017-08-31 01:22:51 +01:00
|
|
|
asdFilesToKeep = ["nibbles.asd"];
|
|
|
|
overrides = x: x;
|
2017-03-30 21:54:56 +01:00
|
|
|
}
|
2017-08-31 01:22:51 +01:00
|
|
|
/* (SYSTEM nibbles DESCRIPTION
|
|
|
|
A library for accessing octet-addressed blocks of data in big- and little-endian orders
|
2020-10-24 11:53:25 +01:00
|
|
|
SHA256 14k9hg8kmzwcb9b5aiwqhimc0zmcs3xp8q29sck8zklf8ziqaqb4 URL
|
|
|
|
http://beta.quicklisp.org/archive/nibbles/2020-09-25/nibbles-20200925-git.tgz
|
|
|
|
MD5 2e6275cac23e28e24a25201d7d6e4ae2 NAME nibbles FILENAME nibbles DEPS
|
|
|
|
((NAME rt FILENAME rt)) DEPENDENCIES (rt) VERSION 20200925-git SIBLINGS NIL
|
2018-05-30 18:24:57 +01:00
|
|
|
PARASITES (nibbles/tests)) */
|