mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 22:57:42 +03:00
knightos-z80e: init at 0.5.0
This commit is contained in:
parent
de6f754b6e
commit
bd09a9e386
27
pkgs/development/tools/knightos/z80e/default.nix
Normal file
27
pkgs/development/tools/knightos/z80e/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, knightos-scas, readline, SDL2 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "z80e";
|
||||||
|
version = "0.5.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "KnightOS";
|
||||||
|
repo = "z80e";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "18nnip6nv1pq19bxgd07fv7ci3c5yj8d9cip97a4zsfab7bmbq6k";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake knightos-scas ];
|
||||||
|
|
||||||
|
buildInputs = [ readline SDL2 ];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-Denable-sdl=YES" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://knightos.org/";
|
||||||
|
description = "A Z80 calculator emulator and debugger";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ siraben ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -9338,6 +9338,8 @@ in
|
|||||||
|
|
||||||
knightos-scas = callPackage ../development/tools/knightos/scas { };
|
knightos-scas = callPackage ../development/tools/knightos/scas { };
|
||||||
|
|
||||||
|
knightos-z80e = callPackage ../development/tools/knightos/z80e { };
|
||||||
|
|
||||||
kotlin = callPackage ../development/compilers/kotlin { };
|
kotlin = callPackage ../development/compilers/kotlin { };
|
||||||
|
|
||||||
lazarus = callPackage ../development/compilers/fpc/lazarus.nix {
|
lazarus = callPackage ../development/compilers/fpc/lazarus.nix {
|
||||||
|
Loading…
Reference in New Issue
Block a user