44 lines
763 B
Nix
44 lines
763 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, cmake
|
||
|
, qtbase
|
||
|
, qt6
|
||
|
, wrapQtAppsHook
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "maskromtool";
|
||
|
version = "2023-06-17";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "travisgoodspeed";
|
||
|
repo = "maskromtool";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-NumMO9whM5ZdEtxI3gjp2Ky2b8/rjPSiD9G/95xJk1o=";
|
||
|
};
|
||
|
|
||
|
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
|
||
|
];
|
||
|
};
|
||
|
}
|