nixpkgs/pkgs/development/libraries/mps/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
883 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, sqlite }:
stdenv.mkDerivation rec {
pname = "mps";
2018-10-24 20:18:27 +00:00
version = "1.117.0";
src = fetchurl {
url = "https://www.ravenbrook.com/project/mps/release/${version}/mps-kit-${version}.tar.gz";
2018-10-24 20:18:27 +00:00
sha256 = "04ix4l7lk6nxxk9sawpnxbybvqb82lks5606ym10bc1qbc2kqdcz";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ sqlite ];
2018-03-09 12:36:45 +00:00
# needed for 1.116.0 to build with gcc7
env.NIX_CFLAGS_COMPILE = toString [
2018-03-09 12:36:45 +00:00
"-Wno-implicit-fallthrough"
2018-10-24 20:18:27 +00:00
"-Wno-error=clobbered"
2019-01-15 17:20:58 +00:00
"-Wno-error=cast-function-type"
2018-03-09 12:36:45 +00:00
];
meta = {
2022-05-29 10:23:25 +00:00
broken = true;
description = "A flexible memory management and garbage collection library";
homepage = "https://www.ravenbrook.com/project/mps";
license = lib.licenses.sleepycat;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.thoughtpolice ];
};
}