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

39 lines
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";
project="pure-lang";
2014-10-23 12:30:27 +00:00
version="0.63";
2014-10-12 08:37:57 +00:00
name="${baseName}-${version}";
extension="tar.gz";
src = fetchurl {
2013-10-09 19:23:37 +00:00
url="https://bitbucket.org/purelang/${project}/downloads/${name}.${extension}";
2014-10-23 12:30:27 +00:00
sha256="33acb2d560b21813f5e856973b493d9cfafba82bd6f539425ce07aa22f84ee29";
};
2014-10-12 08:37:57 +00:00
buildInputs = [ bison flex makeWrapper ];
propagatedBuildInputs = [ llvm gmp mpfr readline ];
2013-02-17 09:59:43 +00:00
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;
};
2014-10-12 08:37:57 +00:00
}