ed0c4a69f0
GitOrigin-RevId: e3652e0735fbec227f342712f180f4f21f0594f2
30 lines
812 B
Nix
30 lines
812 B
Nix
{ lib, stdenv, fetchurl, nimPackages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tkrzw";
|
|
version = "1.0.27";
|
|
# TODO: defeat multi-output reference cycles
|
|
|
|
src = fetchurl {
|
|
url = "https://dbmx.net/tkrzw/pkg/tkrzw-${version}.tar.gz";
|
|
hash = "sha256-DxLtDtscTPR1yzeOENyQPylKo+VxJTswUAE/MieEoXQ=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace configure \
|
|
--replace 'PATH=".:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:$PATH"' ""
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = false; # memory intensive
|
|
|
|
passthru.tests.nim = nimPackages.tkrzw;
|
|
meta = with lib; {
|
|
description = "A set of implementations of DBM";
|
|
homepage = "https://dbmx.net/tkrzw/";
|
|
maintainers = with maintainers; [ ehmry ];
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|