mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
npiet: init at 1.3f
This commit is contained in:
parent
81a4a694d1
commit
b23cf25c51
45
pkgs/development/interpreters/npiet/default.nix
Normal file
45
pkgs/development/interpreters/npiet/default.nix
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, gd
|
||||||
|
, giflib
|
||||||
|
, groff
|
||||||
|
, libpng
|
||||||
|
, tk
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "npiet";
|
||||||
|
version = "1.3f";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://www.bertnase.de/npiet/npiet-${version}.tar.gz";
|
||||||
|
sha256 = "sha256-Le2FYGKr1zWZ6F4edozmvGC6LbItx9aptidj3KBLhVo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ gd giflib libpng ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ groff ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# malloc.h is not needed because stdlib.h is already included.
|
||||||
|
# On macOS, malloc.h does not even exist, resulting in an error.
|
||||||
|
substituteInPlace npiet-foogol.c \
|
||||||
|
--replace '#include <malloc.h>' ""
|
||||||
|
|
||||||
|
substituteInPlace npietedit \
|
||||||
|
--replace 'exec wish' 'exec ${tk}/bin/wish'
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "An interpreter for piet programs. Also includes npietedit and npiet-foogol";
|
||||||
|
longDescription = ''
|
||||||
|
npiet is an interpreter for the piet programming language.
|
||||||
|
Instead of text, piet programs are pictures. Commands are determined based on changes in color.
|
||||||
|
'';
|
||||||
|
homepage = "https://www.bertnase.de/npiet/";
|
||||||
|
license = licenses.gpl2Only;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ Luflosi ];
|
||||||
|
};
|
||||||
|
}
|
@ -7674,6 +7674,8 @@ with pkgs;
|
|||||||
|
|
||||||
npapi_sdk = callPackage ../development/libraries/npapi-sdk {};
|
npapi_sdk = callPackage ../development/libraries/npapi-sdk {};
|
||||||
|
|
||||||
|
npiet = callPackage ../development/interpreters/npiet { };
|
||||||
|
|
||||||
npth = callPackage ../development/libraries/npth {};
|
npth = callPackage ../development/libraries/npth {};
|
||||||
|
|
||||||
nmap = callPackage ../tools/security/nmap { };
|
nmap = callPackage ../tools/security/nmap { };
|
||||||
|
Loading…
Reference in New Issue
Block a user