Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
876 B
Nix
50 lines
876 B
Nix
{
|
|
lib,
|
|
eggDerivation,
|
|
fetchegg,
|
|
z3,
|
|
}:
|
|
|
|
let
|
|
eggs = import ./eggs.nix { inherit eggDerivation fetchegg; };
|
|
in
|
|
|
|
eggDerivation rec {
|
|
pname = "ugarit";
|
|
version = "2.0";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchegg {
|
|
inherit version;
|
|
name = pname;
|
|
sha256 = "1l5zkr6b8l5dw9p5mimbva0ncqw1sbvp3d4cywm1hqx2m03a0f1n";
|
|
};
|
|
|
|
buildInputs = with eggs; [
|
|
aes
|
|
crypto-tools
|
|
matchable
|
|
message-digest
|
|
miscmacros
|
|
parley
|
|
pathname-expand
|
|
posix-extras
|
|
regex
|
|
sha2
|
|
sql-de-lite
|
|
srfi-37
|
|
ssql
|
|
stty
|
|
tiger-hash
|
|
z3
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.kitten-technologies.co.uk/project/ugarit/";
|
|
description = "Backup/archival system based around content-addressible storage";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.ebzzry ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|