nixpkgs/pkgs/development/interpreters/pure/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

2014-10-12 08:37:57 +00:00
{ lib, stdenv, fetchurl, makeWrapper,
llvm, gmp, mpfr, readline, bison, flex }:
2014-10-12 08:37:57 +00:00
stdenv.mkDerivation rec {
baseName="pure";
2018-04-14 04:25:45 +00:00
version="0.68";
2014-10-12 08:37:57 +00:00
name="${baseName}-${version}";
src = fetchurl {
2018-04-14 04:25:45 +00:00
url="https://github.com/agraef/pure-lang/releases/download/${name}/${name}.tar.gz";
sha256="0px6x5ivcdbbp2pz5n1r1cwg1syadklhjw8piqhl63n91i4r7iyb";
};
2014-10-12 08:37:57 +00:00
buildInputs = [ bison flex makeWrapper ];
propagatedBuildInputs = [ llvm gmp mpfr readline ];
2019-01-04 19:33:50 +00:00
NIX_LDFLAGS = [ "-lLLVMJIT" ];
2013-02-17 09:59:43 +00:00
postPatch = ''
for f in expr.cc matcher.cc printer.cc symtable.cc parserdefs.hh; do
sed -i '1i\#include <stddef.h>' $f
done
'';
2014-10-23 12:30:27 +00:00
configureFlags = [ "--enable-release" ];
doCheck = true;
checkPhase = ''
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${llvm}/lib make check
'';
2014-10-12 08:37:57 +00:00
postInstall = ''
wrapProgram $out/bin/pure --prefix LD_LIBRARY_PATH : ${llvm}/lib
'';
2013-02-17 09:59:43 +00:00
meta = {
2014-10-12 08:37:57 +00:00
description = "A modern-style functional programming language based on term rewriting";
maintainers = with lib.maintainers;
[
raskin
2014-10-23 12:30:27 +00:00
asppsa
];
2014-10-12 08:37:57 +00:00
platforms = with lib.platforms;
linux;
2014-10-12 08:37:57 +00:00
license = lib.licenses.gpl3Plus;
};
}