bwbasic: init at 3.20
This commit is contained in:
parent
726f7c9688
commit
fd5df16c24
2 changed files with 39 additions and 0 deletions
37
pkgs/development/interpreters/bwbasic/default.nix
Normal file
37
pkgs/development/interpreters/bwbasic/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
{ lib, stdenv, dos2unix, fetchurl, unzip }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "bwbasic";
|
||||||
|
version = "3.20";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/project/bwbasic/bwbasic/version%203.20/bwbasic-3.20.zip";
|
||||||
|
sha256 = "1w9r4cl7z1lh52c1jpjragbspi1qn0zb7jhcsldav4gdnzxfw67f";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ dos2unix unzip ];
|
||||||
|
|
||||||
|
unpackPhase = ''
|
||||||
|
unzip $src
|
||||||
|
'';
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
dos2unix configure
|
||||||
|
patchShebangs configure
|
||||||
|
chmod +x configure
|
||||||
|
'';
|
||||||
|
|
||||||
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
|
preInstall = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Bywater BASIC Interpreter";
|
||||||
|
license = licenses.gpl2Only;
|
||||||
|
maintainers = with maintainers; [ irenes ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
homepage = "https://sourceforge.net/projects/bwbasic/";
|
||||||
|
};
|
||||||
|
}
|
|
@ -2296,6 +2296,8 @@ with pkgs;
|
||||||
|
|
||||||
bwm_ng = callPackage ../tools/networking/bwm-ng { };
|
bwm_ng = callPackage ../tools/networking/bwm-ng { };
|
||||||
|
|
||||||
|
bwbasic = callPackage ../development/interpreters/bwbasic { };
|
||||||
|
|
||||||
byobu = callPackage ../tools/misc/byobu {
|
byobu = callPackage ../tools/misc/byobu {
|
||||||
# Choices: [ tmux screen ];
|
# Choices: [ tmux screen ];
|
||||||
textual-window-manager = tmux;
|
textual-window-manager = tmux;
|
||||||
|
|
Loading…
Reference in a new issue