rebol: init at 3-alpha

Rebol is a cross-platform data exchange language and a multi-paradigm dynamic
programming language for network communications and distributed computing.
This commit is contained in:
Rahul Gopinath 2016-06-09 14:45:11 -07:00 committed by Rahul Gopinath
parent 96066935f2
commit 9b01ad3ce8
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,43 @@
{ stdenv, fetchFromGitHub, fetchurl, patchelf, glibc, libX11, libXt, perl }:
stdenv.mkDerivation rec {
name = "rebol-nightly-${version}";
version = "3-alpha";
src = fetchFromGitHub {
rev = "bd45d0de512ff5953e098301c3d610f6024515d6";
owner = "earl";
repo = "r3";
sha256 = "0pirn6936rxi894xxdvj7xdwlwmmxq2wz36jyjnj26667v2n543c";
};
r3 = fetchurl {
url = "http://rebolsource.net/downloads/experimental/r3-linux-x64-gbf237fc";
sha256 = "0cm86kn4lcbvyy6pqg67x53y0wz353y0vg7pfqv65agxj1ynxnrx";
name = "r3";
};
buildInputs = [ glibc libX11 libXt perl ];
configurePhase = ''
cp ${r3} make/r3-make
chmod 777 make/r3-make
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" ./make/r3-make
cd make
perl -pi -e 's#-m32##g' makefile
perl -pi -e 's#sudo .*#echo#g' makefile
make prep
'';
buildPhase = ''
make
mkdir -p $out/bin
cp r3 $out/bin
'';
meta = with stdenv.lib; {
description = ''Relative expression based object language, a language where code is data'';
maintainers = with maintainers; [ vrthra ];
platforms = [ "x86_64-linux" ];
license = licenses.asl20;
homepage = http://www.rebol.com/;
};
}

View File

@ -9746,6 +9746,8 @@ in
rbtools = pythonPackages.rbtools;
rebol = callPackage ../development/interpreters/rebol { };
setuptools = pythonPackages.setuptools;
slowaes = pythonPackages.slowaes;