Commit bb50a8ec authored by Evan Richter's avatar Evan Richter
Browse files

maskromtool: init at v2023-05-30

parent 08184028
Loading
Loading
Loading
Loading
+43 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, cmake
, qtbase
, qt6
, wrapQtAppsHook
}:

stdenv.mkDerivation rec {
  pname = "maskromtool";
  version = "2023-05-30";

  src = fetchFromGitHub {
    owner = "travisgoodspeed";
    repo = "maskromtool";
    rev = "v${version}";
    hash = "sha256-HiP9igrq9rmW7MxdTdOsJ86j/Ccxb2lFTaIJfyUW7Bo=";
  };

  buildInputs = [
    qtbase
    qt6.qtcharts
    qt6.qttools
  ];

  nativeBuildInputs = [
    cmake
    wrapQtAppsHook
  ];

  meta = {
    description = "A CAD tool for extracting bits from Mask ROM photographs";
    homepage = "https://github.com/travisgoodspeed/maskromtool";
    license = [
      lib.licenses.beerware
      lib.licenses.gpl1Plus
    ];
    maintainers = [
      lib.maintainers.evanrichter
    ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -9398,6 +9398,8 @@ with pkgs;
  mask = callPackage ../development/tools/mask { };
  maskromtool = qt6Packages.callPackage ../tools/graphics/maskromtool { };
  mathpix-snipping-tool = callPackage ../tools/misc/mathpix-snipping-tool { };
  matrix-conduit = callPackage ../servers/matrix-conduit { };