forked from mirrors/nixpkgs
Merge pull request #9838 from AndersonTorres/intercal
Intercal: init at 0.30
This commit is contained in:
commit
bb1540cd7e
35
pkgs/development/compilers/intercal/default.nix
Normal file
35
pkgs/development/compilers/intercal/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ stdenv, fetchurl
|
||||
, pkgconfig
|
||||
, bison, flex }:
|
||||
|
||||
with stdenv.lib;
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "intercal-${version}";
|
||||
version = "0.30";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://catb.org/esr/intercal/${name}.tar.gz";
|
||||
sha256 = "058ppvvgz9r5603ia9jkknbrciypgg4hjbczrv9v1d9w3ak652xk";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig bison flex ];
|
||||
|
||||
meta = {
|
||||
description = "The original esoteric programming language";
|
||||
longDescription = ''
|
||||
INTERCAL, an abbreviation for "Compiler Language With No
|
||||
Pronounceable Acronym", is a famously esoterical programming
|
||||
language. It was created in 1972, by Donald R. Woods and James
|
||||
M. Lyon, with the unusual goal of creating a language with no
|
||||
similarities whatsoever to any existing programming
|
||||
languages. The language largely succeeds in this goal, apart
|
||||
from its use of an assignment statement.
|
||||
'';
|
||||
homepage = http://www.catb.org/~esr/intercal/;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -4129,6 +4129,8 @@ let
|
|||
|
||||
ikarus = callPackage ../development/compilers/ikarus { };
|
||||
|
||||
intercal = callPackage ../development/compilers/intercal { };
|
||||
|
||||
hugs = callPackage ../development/interpreters/hugs { };
|
||||
|
||||
path64 = callPackage ../development/compilers/path64 { };
|
||||
|
|
Loading…
Reference in a new issue