2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, asciidoc }:
|
2020-10-02 11:50:52 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "mktiupgrade";
|
|
|
|
version = "1.1.6";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "KnightOS";
|
|
|
|
repo = "mktiupgrade";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "15y3rxvv7ipgc80wrvrpksxzdyqr21ywysc9hg6s7d3w8lqdq8dm";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ asciidoc cmake ];
|
|
|
|
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-02 11:50:52 +01:00
|
|
|
homepage = "https://knightos.org/";
|
|
|
|
description = "Makes TI calculator upgrade files from ROM dumps";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ siraben ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|