mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #94105 from ddelabru/add-inform6
inform6: init at 6.34-6.12.2
This commit is contained in:
commit
0739f4b84f
3 changed files with 36 additions and 0 deletions
|
@ -1936,6 +1936,12 @@
|
|||
githubId = 14032;
|
||||
name = "Daniel Brockman";
|
||||
};
|
||||
ddelabru = {
|
||||
email = "ddelabru@redhat.com";
|
||||
github = "ddelabru";
|
||||
githubId = 39909293;
|
||||
name = "Dominic Delabruere";
|
||||
};
|
||||
dduan = {
|
||||
email = "daniel@duan.ca";
|
||||
github = "dduan";
|
||||
|
|
28
pkgs/development/compilers/inform6/default.nix
Normal file
28
pkgs/development/compilers/inform6/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchurl, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "inform6";
|
||||
version = "6.34-6.12.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://ifarchive.org/if-archive/infocom/compilers/inform6/source/inform-${version}.tar.gz";
|
||||
sha256 = "c149f143f2c29a4cb071e578afef8097647cc9e823f7fcfab518ac321d9d259f";
|
||||
};
|
||||
|
||||
buildInputs = [ perl ];
|
||||
|
||||
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Interactive fiction compiler and libraries";
|
||||
longDescription = ''
|
||||
Inform 6 is a C-like programming language for writing interactive fiction
|
||||
(text adventure) games.
|
||||
'';
|
||||
homepage = "https://gitlab.com/DavidGriffith/inform6unix";
|
||||
changelog = "https://gitlab.com/DavidGriffith/inform6unix/-/raw/${version}/NEWS";
|
||||
license = licenses.artistic2;
|
||||
maintainers = with stdenv.lib.maintainers; [ ddelabru ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -4380,6 +4380,8 @@ in
|
|||
|
||||
inetutils = callPackage ../tools/networking/inetutils { };
|
||||
|
||||
inform6 = callPackage ../development/compilers/inform6 { };
|
||||
|
||||
inform7 = callPackage ../development/compilers/inform7 { };
|
||||
|
||||
infamousPlugins = callPackage ../applications/audio/infamousPlugins { };
|
||||
|
|
Loading…
Reference in a new issue