Merge pull request #9838 from AndersonTorres/intercal

Intercal: init at 0.30

+37
+35
pkgs/development/compilers/intercal/default.nix
··· 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 + }
+2
pkgs/top-level/all-packages.nix
··· 4129 4129 4130 4130 ikarus = callPackage ../development/compilers/ikarus { }; 4131 4131 4132 + intercal = callPackage ../development/compilers/intercal { }; 4133 + 4132 4134 hugs = callPackage ../development/interpreters/hugs { }; 4133 4135 4134 4136 path64 = callPackage ../development/compilers/path64 { };