1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/knightos/genkfs/default.nix

26 lines
620 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, asciidoc }:
2020-10-01 15:48:08 +01:00
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 lib; {
2020-10-01 15:48:08 +01:00
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;
};
}