Merge pull request #95842 from siraben/mkrom

mkrom: init at 1.0.1
This commit is contained in:
Daniël de Kok 2020-08-21 16:19:41 +02:00 committed by GitHub
commit acb7c0e811
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub, cmake, asciidoc }:
stdenv.mkDerivation rec {
pname = "mkrom";
version = "unstable-2020-06-11";
src = fetchFromGitHub {
owner = "KnightOS";
repo = "mkrom";
rev = "7a735ecbe09409e74680a9dc1c50dd4db99a409f";
sha256 = "18h7a0fb5zb991iy9ljpknmk9qvl9nz3yh1zh5bm399rpxn4nzx3";
};
nativeBuildInputs = [
asciidoc
cmake
];
hardeningDisable = [ "format" ];
meta = with stdenv.lib; {
homepage = "https://knightos.org/";
description = "Packages KnightOS distribution files into a ROM";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
};
}

View File

@ -11047,6 +11047,10 @@ in
mkcert = callPackage ../development/tools/misc/mkcert { };
mkrom = callPackage ../development/tools/misc/mkrom {
asciidoc = asciidoc-full;
};
mkdocs = callPackage ../development/tools/documentation/mkdocs { };
mockgen = callPackage ../development/tools/mockgen { };