summary refs log tree commit diff
path: root/pkgs/development/interpreters/icon-lang
diff options
context:
space:
mode:
authorRahul Gopinath <gopinath@eecs.oregonstate.edu>2016-06-07 00:55:33 -0700
committerChristoph Hrdinka <c.git@hrdinka.at>2016-06-07 19:09:54 +0200
commit367ddbdcd59dc09ce6a2ea3d0c46c07c92b4fa1d (patch)
treeb58cebb4da174d94619925cf0ab14728419d487c /pkgs/development/interpreters/icon-lang
parentca067ff248766e8ed6586850010212a279d0e405 (diff)
downloadnixlib-367ddbdcd59dc09ce6a2ea3d0c46c07c92b4fa1d.tar
nixlib-367ddbdcd59dc09ce6a2ea3d0c46c07c92b4fa1d.tar.gz
nixlib-367ddbdcd59dc09ce6a2ea3d0c46c07c92b4fa1d.tar.bz2
nixlib-367ddbdcd59dc09ce6a2ea3d0c46c07c92b4fa1d.tar.lz
nixlib-367ddbdcd59dc09ce6a2ea3d0c46c07c92b4fa1d.tar.xz
nixlib-367ddbdcd59dc09ce6a2ea3d0c46c07c92b4fa1d.tar.zst
nixlib-367ddbdcd59dc09ce6a2ea3d0c46c07c92b4fa1d.zip
icon: Init at 9.5.1
Icon is a very high level general-purpose programming language with
extensive features for processing strings (text) and data structures.

Closes #16036.
Diffstat (limited to 'pkgs/development/interpreters/icon-lang')
-rw-r--r--pkgs/development/interpreters/icon-lang/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/icon-lang/default.nix b/pkgs/development/interpreters/icon-lang/default.nix
new file mode 100644
index 000000000000..3bec73ea0369
--- /dev/null
+++ b/pkgs/development/interpreters/icon-lang/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchFromGitHub, libX11, libXt }:
+
+stdenv.mkDerivation rec {
+  name = "icon-lang-${version}";
+  version = "9.5.1";
+  src = fetchFromGitHub {
+    rev = "39d7438e8d23ccfe20c0af8bbbf61e34d9c715e9";
+    owner = "gtownsend";
+    repo = "icon";
+    sha256 = "1gkvj678ldlr1m5kjhx6zpmq11nls8kxa7pyy64whgakfzrypynw";
+  };
+  buildInputs = [ libX11 libXt ];
+
+  configurePhase = ''
+    make X-Configure name=linux
+  '';
+
+  installPhase = ''
+    make Install dest=$out
+  '';
+
+  meta = with stdenv.lib; {
+    description = ''A very high level general-purpose programming language'';
+    maintainers = with maintainers; [ vrthra ];
+    platforms = platforms.linux;
+    license = licenses.publicDomain;
+    homepage = https://www.cs.arizona.edu/icon/;
+  };
+}