nixpkgs/pkgs/development/compilers/mkcl/default.nix

36 lines
864 B
Nix
Raw Normal View History

2015-10-14 21:39:12 +00:00
{ stdenv, fetchgit, makeWrapper, gmp, gcc }:
stdenv.mkDerivation rec {
v = "1.1.9";
name = "mkcl-${v}";
src = fetchgit {
url = "https://github.com/jcbeaudoin/mkcl.git";
rev = "86768cc1dfc2cc9caa1fe9696584bb25ea6c1429";
sha256 = "1gsvjp9xlnjccg0idi8x8gzkn6hlrqia95jh3zx7snm894503mf1";
};
2015-10-14 21:39:12 +00:00
buildInputs = [ makeWrapper ];
propagatedBuildInputs = [ gmp ];
hardeningDisable = [ "format" ];
2016-02-12 12:44:15 +00:00
configureFlags = [
2015-10-15 15:43:23 +00:00
"GMP_CFLAGS=-I${gmp.dev}/include"
"GMP_LDFLAGS=-L${gmp.out}/lib"
];
2015-10-14 21:39:12 +00:00
postInstall = ''
wrapProgram $out/bin/mkcl --prefix PATH : "${gcc}/bin"
'';
meta = {
description = "ANSI Common Lisp Implementation";
homepage = https://common-lisp.net/project/mkcl/;
license = stdenv.lib.licenses.lgpl2Plus;
platforms = stdenv.lib.platforms.linux;
2015-11-24 22:26:58 +00:00
maintainers = [stdenv.lib.maintainers.tohl];
};
}