summary refs log tree commit diff
path: root/pkgs/desktops/e17/embryo/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/e17/embryo/default.nix')
-rw-r--r--pkgs/desktops/e17/embryo/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/desktops/e17/embryo/default.nix b/pkgs/desktops/e17/embryo/default.nix
new file mode 100644
index 000000000000..e23b3f4b0b15
--- /dev/null
+++ b/pkgs/desktops/e17/embryo/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl }:
+stdenv.mkDerivation rec {
+  name = "embryo-${version}";
+  version = "1.0.0";
+  src = fetchurl {
+    url = "http://download.enlightenment.org/releases/${name}.tar.gz";
+    sha256 = "0ch9vps83s892vda1ss1cf1fbgzff9p51df2fip7fqlj8y1shvvx";
+  };
+  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/;
+    license = with stdenv.lib.licenses; [ bsd2 bsd3 ];  # not sure
+  };
+}