Unverified Commit 2b732223 authored by Ben Siraphob's avatar Ben Siraphob Committed by GitHub
Browse files

knightos-{genkfs, kcc, kimg, kpack, mktiupgrade, patchrom, scas, z80e}: fix… (#454262)

parents ed73dfb4 a8c190ad
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -28,6 +28,11 @@ stdenv.mkDerivation rec {

  hardeningDisable = [ "format" ];

  postPatch = ''
    substituteInPlace CMakeLists.txt \
      --replace-fail "cmake_minimum_required(VERSION 2.8.5)" "cmake_minimum_required(VERSION 3.10)"
  '';

  meta = with lib; {
    homepage = "https://knightos.org/";
    description = "Utility to write a KFS filesystem into a ROM file";
+5 −0
Original line number Diff line number Diff line
@@ -30,6 +30,11 @@ stdenv.mkDerivation rec {

  buildInputs = [ boost ];

  postPatch = ''
    substituteInPlace CMakeLists.txt \
      --replace-fail "cmake_minimum_required(VERSION 2.8.5)" "cmake_minimum_required(VERSION 3.10)"
  '';

  meta = with lib; {
    homepage = "https://github.com/KnightOS/kcc";
    description = "KnightOS C compiler";
+5 −0
Original line number Diff line number Diff line
@@ -28,6 +28,11 @@ stdenv.mkDerivation rec {

  hardeningDisable = [ "format" ];

  postPatch = ''
    substituteInPlace CMakeLists.txt \
      --replace-fail "cmake_minimum_required(VERSION 2.8.5)" "cmake_minimum_required(VERSION 3.10)"
  '';

  meta = with lib; {
    homepage = "https://knightos.org/";
    description = "Converts image formats supported by stb_image to the KnightOS image format";
+5 −0
Original line number Diff line number Diff line
@@ -29,6 +29,11 @@ stdenv.mkDerivation rec {

  hardeningDisable = [ "fortify" ];

  postPatch = ''
    substituteInPlace CMakeLists.txt \
      --replace-fail "cmake_minimum_required(VERSION 2.8.5)" "cmake_minimum_required(VERSION 3.10)"
  '';

  meta = with lib; {
    homepage = "https://knightos.org/";
    description = "Tool to create or extract KnightOS packages";
+5 −0
Original line number Diff line number Diff line
@@ -28,6 +28,11 @@ stdenv.mkDerivation rec {

  hardeningDisable = [ "format" ];

  postPatch = ''
    substituteInPlace CMakeLists.txt \
      --replace-fail "cmake_minimum_required(VERSION 2.8.5)" "cmake_minimum_required(VERSION 3.10)"
  '';

  meta = with lib; {
    homepage = "https://knightos.org/";
    description = "Makes TI calculator upgrade files from ROM dumps";
Loading