nixpkgs/pkgs/development/libraries/mps/default.nix
Piotr Bogdan fc391e7ecd mps: 1.115.0 -> 1.116.0
1.115.0 doesn't build with gcc6
2017-09-04 20:14:57 +03:00

22 lines
674 B
Nix

{ stdenv, fetchurl, autoreconfHook, sqlite }:
stdenv.mkDerivation rec {
name = "mps-${version}";
version = "1.116.0";
src = fetchurl {
url = "http://www.ravenbrook.com/project/mps/release/${version}/mps-kit-${version}.tar.gz";
sha256 = "1k7vnanpgawnj84x2xs6md57pfib9p7c3acngqzkl3c2aqw8qay0";
};
buildInputs = [ autoreconfHook sqlite ];
meta = {
description = "A flexible memory management and garbage collection library";
homepage = "http://www.ravenbrook.com/project/mps";
license = stdenv.lib.licenses.sleepycat;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}