1{ stdenv, fetchurl, autoreconfHook, sqlite }:
2
3stdenv.mkDerivation rec {
4 name = "mps-${version}";
5 version = "1.116.0";
6
7 src = fetchurl {
8 url = "https://www.ravenbrook.com/project/mps/release/${version}/mps-kit-${version}.tar.gz";
9 sha256 = "1k7vnanpgawnj84x2xs6md57pfib9p7c3acngqzkl3c2aqw8qay0";
10 };
11
12 nativeBuildInputs = [ autoreconfHook ];
13 buildInputs = [ sqlite ];
14
15 meta = {
16 description = "A flexible memory management and garbage collection library";
17 homepage = "https://www.ravenbrook.com/project/mps";
18 license = stdenv.lib.licenses.sleepycat;
19 platforms = stdenv.lib.platforms.linux;
20 maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
21 };
22}