2011-12-10 19:11:37 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, eina }:
|
2011-09-27 00:28:35 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "embryo-${version}";
|
2013-02-10 18:23:45 +01:00
|
|
|
version = "1.7.5";
|
2011-09-27 00:28:35 +02:00
|
|
|
src = fetchurl {
|
2012-03-25 15:50:39 +02:00
|
|
|
url = "http://download.enlightenment.org/releases/${name}.tar.bz2";
|
2013-02-10 18:23:45 +01:00
|
|
|
sha256 = "104fsa179w2dfg00sfnap7c3b4ixcps4crxa6yav755awssdcim9";
|
2011-09-27 00:28:35 +02:00
|
|
|
};
|
2011-12-10 19:11:37 +01:00
|
|
|
buildInputs = [ pkgconfig eina ];
|
2011-09-27 00:28:35 +02:00
|
|
|
meta = {
|
|
|
|
description = "Enlightenment's small Pawn based virtual machine and compiler";
|
|
|
|
longDescription = ''
|
|
|
|
Enlightenment's Embryo is a tiny library designed to interpret
|
|
|
|
limited Small programs compiled by the included compiler,
|
|
|
|
embryo_cc. It is mostly a cleaned up and smaller version of the
|
|
|
|
original Small abstract machine. The compiler is mostly
|
|
|
|
untouched.
|
|
|
|
'';
|
|
|
|
homepage = http://enlightenment.org/;
|
2013-02-16 22:38:46 +01:00
|
|
|
license = with stdenv.lib.licenses; [ bsd2.shortName bsd3.shortName ]; # not sure
|
2011-09-27 00:28:35 +02:00
|
|
|
};
|
|
|
|
}
|