knightos-mkrom : 1.0.3 -> 1.0.4

This commit is contained in:
Ben Siraphob 2021-05-02 13:28:11 +07:00
parent 9af991a1b1
commit 2fa2d15a7d

View file

@ -1,25 +1,27 @@
{ lib, stdenv, fetchFromGitHub, cmake, libxslt, asciidoc }:
{ lib, stdenv, fetchFromGitHub, libxslt, asciidoc }:
stdenv.mkDerivation rec {
pname = "mkrom";
version = "1.0.3";
version = "1.0.4";
src = fetchFromGitHub {
owner = "KnightOS";
repo = "mkrom";
rev = version;
sha256 = "0xgvanya40mdwy35j94j61hsp80dm5b440iphmr5ng3kjgchvpx2";
sha256 = "sha256-YFrh0tOGiM90uvU9ZWopW1+9buHDQtetuOtPDSYYaXw=";
};
strictDeps = true;
nativeBuildInputs = [ asciidoc cmake libxslt.bin ];
nativeBuildInputs = [ asciidoc libxslt.bin ];
hardeningDisable = [ "format" ];
installFlags = [ "DESTDIR=$(out)" ];
installTargets = [ "install" "install_man" ];
meta = with lib; {
homepage = "https://knightos.org/";
description = "Packages KnightOS distribution files into a ROM";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
platforms = platforms.all;
};
}