2021-01-25 18:08:10 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "tkrzw";
|
2022-08-02 05:40:06 +01:00
|
|
|
version = "1.0.24";
|
2021-01-25 18:08:10 +00:00
|
|
|
# TODO: defeat multi-output reference cycles
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://dbmx.net/tkrzw/pkg/tkrzw-${version}.tar.gz";
|
2022-08-02 05:40:06 +01:00
|
|
|
hash = "sha256-G7SVKgU4b8I5iwAlGHL/w8z0fhI+Awe3V6aqFsOnUrA=";
|
2021-01-25 18:08:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = false; # memory intensive
|
|
|
|
|
|
|
|
meta = with lib; {
|
2022-05-28 14:38:40 +01:00
|
|
|
broken = stdenv.isDarwin;
|
2021-01-25 18:08:10 +00:00
|
|
|
description = "A set of implementations of DBM";
|
|
|
|
homepage = "https://dbmx.net/tkrzw/";
|
|
|
|
maintainers = with maintainers; [ ehmry ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|