mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
26 lines
622 B
Nix
26 lines
622 B
Nix
|
{ stdenv, fetchFromGitHub, cmake, asciidoc }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "genkfs";
|
||
|
version = "1.3.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "KnightOS";
|
||
|
repo = "genkfs";
|
||
|
rev = version;
|
||
|
sha256 = "0f50idd2bb73b05qjmwlirjnhr1bp43zhrgy6z949ab9a7hgaydp";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ asciidoc cmake ];
|
||
|
|
||
|
hardeningDisable = [ "format" ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "https://knightos.org/";
|
||
|
description = "Utility to write a KFS filesystem into a ROM file";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ siraben ];
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|