1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
6 # TODO: defeat multi-output reference cycles
9 url = "https://dbmx.net/tkrzw/pkg/tkrzw-${version}.tar.gz";
10 hash = "sha256-G7SVKgU4b8I5iwAlGHL/w8z0fhI+Awe3V6aqFsOnUrA=";
14 substituteInPlace configure \
15 --replace 'PATH=".:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:$PATH"' ""
18 enableParallelBuilding = true;
20 doCheck = false; # memory intensive
23 description = "A set of implementations of DBM";
24 homepage = "https://dbmx.net/tkrzw/";
25 maintainers = with maintainers; [ ehmry ];
26 license = licenses.asl20;
27 platforms = platforms.all;