···1+{ stdenv, fetchurl
2+, pkgconfig
3+, bison, flex }:
4+5+with stdenv.lib;
6+stdenv.mkDerivation rec {
7+8+ name = "intercal-${version}";
9+ version = "0.30";
10+11+ src = fetchurl {
12+ url = "http://catb.org/esr/intercal/${name}.tar.gz";
13+ sha256 = "058ppvvgz9r5603ia9jkknbrciypgg4hjbczrv9v1d9w3ak652xk";
14+ };
15+16+ buildInputs =
17+ [ pkgconfig bison flex ];
18+19+ meta = {
20+ description = "The original esoteric programming language";
21+ longDescription = ''
22+ INTERCAL, an abbreviation for "Compiler Language With No
23+ Pronounceable Acronym", is a famously esoterical programming
24+ language. It was created in 1972, by Donald R. Woods and James
25+ M. Lyon, with the unusual goal of creating a language with no
26+ similarities whatsoever to any existing programming
27+ languages. The language largely succeeds in this goal, apart
28+ from its use of an assignment statement.
29+ '';
30+ homepage = http://www.catb.org/~esr/intercal/;
31+ license = licenses.gpl2Plus;
32+ maintainers = [ maintainers.AndersonTorres ];
33+ platforms = platforms.linux;
34+ };
35+}