base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / backup / ugarit / default.nix
blob94dd3219fc24b54e63ec7571adaa3520ca147463
1 { lib, eggDerivation, fetchegg, z3 }:
3 let
4   eggs = import ./eggs.nix { inherit eggDerivation fetchegg; };
5 in
7 eggDerivation rec {
8   pname = "ugarit";
9   version = "2.0";
10   name = "${pname}-${version}";
12   src = fetchegg {
13     inherit version;
14     name = pname;
15     sha256 = "1l5zkr6b8l5dw9p5mimbva0ncqw1sbvp3d4cywm1hqx2m03a0f1n";
16   };
18   buildInputs = with eggs; [
19     aes
20     crypto-tools
21     matchable
22     message-digest
23     miscmacros
24     parley
25     pathname-expand
26     posix-extras
27     regex
28     sha2
29     sql-de-lite
30     srfi-37
31     ssql
32     stty
33     tiger-hash
34     z3
35   ];
37   meta = with lib; {
38     homepage = "https://www.kitten-technologies.co.uk/project/ugarit/";
39     description = "Backup/archival system based around content-addressible storage";
40     license = licenses.bsd3;
41     maintainers = [ maintainers.ebzzry ];
42     platforms = platforms.unix;
43   };